diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 0667052..3cfcdbd 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -481,7 +481,10 @@ If expressions ================================================================================ fn main() { + if n == 2 { + } if n == 1 { + } else if let Some(k) = z { } else if n == 2 { } else { } @@ -502,41 +505,36 @@ if foo && bar || baz {} body: (block (expression_statement (if_expression - condition: (binary_expression - left: (identifier) - right: (integer_literal)) + condition: (binary_expression left: (identifier) right: (integer_literal)) + consequence: (block))) + (expression_statement + (if_expression + condition: (binary_expression left: (identifier) right: (integer_literal)) consequence: (block) - alternative: (else_clause - (if_expression - condition: (binary_expression - left: (identifier) - right: (integer_literal)) - consequence: (block) - alternative: (else_clause - (block)))))))) + (else_clause + condition: (let_condition + pattern: (tuple_struct_pattern type: (identifier) (identifier)) + value: (identifier)) + consequence: (block)) + (else_clause + condition: (binary_expression left: (identifier) right: (integer_literal)) + consequence: (block)) + (else_clause + (block)))))) (let_declaration pattern: (identifier) value: (if_expression - condition: (binary_expression - left: (identifier) - right: (integer_literal)) - consequence: (block - (integer_literal)) - alternative: (else_clause - (block - (integer_literal))))) + condition: (binary_expression left: (identifier) right: (integer_literal)) + consequence: (block (integer_literal)) + (else_clause (block (integer_literal))))) (expression_statement (if_expression - condition: (binary_expression - left: (identifier) - right: (identifier)) + condition: (binary_expression left: (identifier) right: (identifier)) consequence: (block))) (expression_statement (if_expression condition: (binary_expression - left: (binary_expression - left: (identifier) - right: (identifier)) + left: (binary_expression left: (identifier) right: (identifier)) right: (identifier)) consequence: (block)))) @@ -558,16 +556,12 @@ if let Some(a) = b (if_expression condition: (let_chain (let_condition - pattern: (tuple_struct_pattern - type: (identifier) - (identifier)) + pattern: (tuple_struct_pattern type: (identifier) (identifier)) value: (identifier)) (identifier) (identifier) (let_condition - pattern: (tuple_struct_pattern - type: (identifier) - (identifier)) + pattern: (tuple_struct_pattern type: (identifier) (identifier)) value: (identifier))) consequence: (block)))) @@ -575,6 +569,39 @@ if let Some(a) = b If let expressions ================================================================================ +let x = if let Some(a) = dish { + a +} else if let None = dish { + 99 +} else if n == 8 { + 9 +} else { + 7 +}; + +-------------------------------------------------------------------------------- + +(source_file + (let_declaration + pattern: (identifier) + value: (if_expression + condition: (let_condition + pattern: (tuple_struct_pattern type: (identifier) (identifier)) + value: (identifier)) + consequence: (block (identifier)) + (else_clause + condition: (let_condition pattern: (identifier) value: (identifier)) + consequence: (block (integer_literal))) + (else_clause + condition: (binary_expression left: (identifier) right: (integer_literal)) + consequence: (block (integer_literal))) + (else_clause + (block (integer_literal)))))) + +================================================================================ +If let chains +================================================================================ + if let ("Bacon", b) = dish { } @@ -1270,10 +1297,7 @@ let three_ranges = [const { (0..=5).into_inner() }; 3]; (empty_statement) (expression_statement (if_expression - condition: (binary_expression - left: (unary_expression - (identifier)) - right: (integer_literal)) + condition: (binary_expression left: (unary_expression (identifier)) right: (integer_literal)) consequence: (block (expression_statement (const_block @@ -1285,9 +1309,7 @@ let three_ranges = [const { (0..=5).into_inner() }; 3]; field: (field_identifier)) arguments: (arguments (integer_literal)))))))) - alternative: (else_clause - (block - (identifier))))) + (else_clause (block (identifier))))) (let_declaration pattern: (identifier) value: (array_expression diff --git a/grammar.js b/grammar.js index c5720f6..6fe7b02 100644 --- a/grammar.js +++ b/grammar.js @@ -1096,9 +1096,29 @@ module.exports = grammar({ 'if', field('condition', $._condition), field('consequence', $.block), - optional(field("alternative", $.else_clause)) + repeat($.else_clause), )), + _else_if: $ => prec.right(seq( + 'if', + field('condition', $._condition), + field('consequence', $.block), + )), + + else_clause: $ => seq( + 'else', + choice( + $.block, + $._else_if + ) + ), + + _condition: $ => choice( + $._expression, + $.let_condition, + alias($._let_chain, $.let_chain), + ), + let_condition: $ => seq( 'let', field('pattern', $._pattern), @@ -1114,20 +1134,6 @@ module.exports = grammar({ seq($._expression, '&&', $.let_condition), )), - _condition: $ => choice( - $._expression, - $.let_condition, - alias($._let_chain, $.let_chain), - ), - - else_clause: $ => seq( - 'else', - choice( - $.block, - $.if_expression - ) - ), - match_expression: $ => seq( 'match', field('value', $._expression), diff --git a/src/grammar.json b/src/grammar.json index 867f268..5a67c45 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6337,24 +6337,88 @@ } }, { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "SYMBOL", - "name": "else_clause" - } - }, - { - "type": "BLANK" - } - ] + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } } ] } }, + "_else_if": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_condition" + } + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + } + }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block" + }, + { + "type": "SYMBOL", + "name": "_else_if" + } + ] + } + ] + }, + "_condition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "let_condition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_let_chain" + }, + "named": true, + "value": "let_chain" + } + ] + }, "let_condition": { "type": "SEQ", "members": [ @@ -6482,50 +6546,6 @@ ] } }, - "_condition": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "let_condition" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_let_chain" - }, - "named": true, - "value": "let_chain" - } - ] - }, - "else_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "SYMBOL", - "name": "if_expression" - } - ] - } - ] - }, "match_expression": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 46a2578..e61614d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1416,18 +1416,43 @@ { "type": "else_clause", "named": true, - "fields": {}, + "fields": { + "condition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "let_chain", + "named": true + }, + { + "type": "let_condition", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": false, + "types": [ + { + "type": "block", + "named": true + } + ] + } + }, "children": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "block", "named": true - }, - { - "type": "if_expression", - "named": true } ] } @@ -2254,16 +2279,6 @@ "type": "if_expression", "named": true, "fields": { - "alternative": { - "multiple": false, - "required": false, - "types": [ - { - "type": "else_clause", - "named": true - } - ] - }, "condition": { "multiple": false, "required": true, @@ -2292,6 +2307,16 @@ } ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "else_clause", + "named": true + } + ] } }, { diff --git a/src/parser.c b/src/parser.c index ede5d57..a470baa 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2565 -#define LARGE_STATE_COUNT 639 -#define SYMBOL_COUNT 319 +#define STATE_COUNT 2580 +#define LARGE_STATE_COUNT 648 +#define SYMBOL_COUNT 321 #define ALIAS_COUNT 4 #define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 @@ -265,80 +265,82 @@ enum { sym_field_initializer = 246, sym_base_field_initializer = 247, sym_if_expression = 248, - sym_let_condition = 249, - sym__let_chain = 250, + sym__else_if = 249, + sym_else_clause = 250, sym__condition = 251, - sym_else_clause = 252, - sym_match_expression = 253, - sym_match_block = 254, - sym_match_arm = 255, - sym_last_match_arm = 256, - sym_match_pattern = 257, - sym_while_expression = 258, - sym_loop_expression = 259, - sym_for_expression = 260, - sym_const_block = 261, - sym_closure_expression = 262, - sym_closure_parameters = 263, - sym_loop_label = 264, - sym_break_expression = 265, - sym_continue_expression = 266, - sym_index_expression = 267, - sym_await_expression = 268, - sym_field_expression = 269, - sym_unsafe_block = 270, - sym_async_block = 271, - sym_block = 272, - sym__pattern = 273, - sym_tuple_pattern = 274, - sym_slice_pattern = 275, - sym_tuple_struct_pattern = 276, - sym_struct_pattern = 277, - sym_field_pattern = 278, - sym_remaining_field_pattern = 279, - sym_mut_pattern = 280, - sym_range_pattern = 281, - sym_ref_pattern = 282, - sym_captured_pattern = 283, - sym_reference_pattern = 284, - sym_or_pattern = 285, - sym__literal = 286, - sym__literal_pattern = 287, - sym_negative_literal = 288, - sym_string_literal = 289, - sym_boolean_literal = 290, - aux_sym_source_file_repeat1 = 291, - aux_sym_macro_definition_repeat1 = 292, - aux_sym_token_tree_pattern_repeat1 = 293, - aux_sym_token_tree_repeat1 = 294, - aux_sym_declaration_list_repeat1 = 295, - aux_sym_enum_variant_list_repeat1 = 296, - aux_sym_enum_variant_list_repeat2 = 297, - aux_sym_field_declaration_list_repeat1 = 298, - aux_sym_ordered_field_declaration_list_repeat1 = 299, - aux_sym_function_modifiers_repeat1 = 300, - aux_sym_where_clause_repeat1 = 301, - aux_sym_trait_bounds_repeat1 = 302, - aux_sym_type_parameters_repeat1 = 303, - aux_sym_use_list_repeat1 = 304, - aux_sym_parameters_repeat1 = 305, - aux_sym_for_lifetimes_repeat1 = 306, - aux_sym_tuple_type_repeat1 = 307, - aux_sym_type_arguments_repeat1 = 308, - aux_sym_delim_token_tree_repeat1 = 309, - aux_sym_arguments_repeat1 = 310, - aux_sym_array_expression_repeat1 = 311, - aux_sym_tuple_expression_repeat1 = 312, - aux_sym_field_initializer_list_repeat1 = 313, - 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, + sym_let_condition = 252, + sym__let_chain = 253, + sym_match_expression = 254, + sym_match_block = 255, + sym_match_arm = 256, + sym_last_match_arm = 257, + sym_match_pattern = 258, + sym_while_expression = 259, + sym_loop_expression = 260, + sym_for_expression = 261, + sym_const_block = 262, + sym_closure_expression = 263, + sym_closure_parameters = 264, + sym_loop_label = 265, + sym_break_expression = 266, + sym_continue_expression = 267, + sym_index_expression = 268, + sym_await_expression = 269, + sym_field_expression = 270, + sym_unsafe_block = 271, + sym_async_block = 272, + sym_block = 273, + sym__pattern = 274, + sym_tuple_pattern = 275, + sym_slice_pattern = 276, + sym_tuple_struct_pattern = 277, + sym_struct_pattern = 278, + sym_field_pattern = 279, + sym_remaining_field_pattern = 280, + sym_mut_pattern = 281, + sym_range_pattern = 282, + sym_ref_pattern = 283, + sym_captured_pattern = 284, + sym_reference_pattern = 285, + sym_or_pattern = 286, + sym__literal = 287, + sym__literal_pattern = 288, + sym_negative_literal = 289, + sym_string_literal = 290, + sym_boolean_literal = 291, + aux_sym_source_file_repeat1 = 292, + aux_sym_macro_definition_repeat1 = 293, + aux_sym_token_tree_pattern_repeat1 = 294, + aux_sym_token_tree_repeat1 = 295, + aux_sym_declaration_list_repeat1 = 296, + aux_sym_enum_variant_list_repeat1 = 297, + aux_sym_enum_variant_list_repeat2 = 298, + aux_sym_field_declaration_list_repeat1 = 299, + aux_sym_ordered_field_declaration_list_repeat1 = 300, + aux_sym_function_modifiers_repeat1 = 301, + aux_sym_where_clause_repeat1 = 302, + aux_sym_trait_bounds_repeat1 = 303, + aux_sym_type_parameters_repeat1 = 304, + aux_sym_use_list_repeat1 = 305, + aux_sym_parameters_repeat1 = 306, + aux_sym_for_lifetimes_repeat1 = 307, + aux_sym_tuple_type_repeat1 = 308, + aux_sym_type_arguments_repeat1 = 309, + aux_sym_delim_token_tree_repeat1 = 310, + aux_sym_arguments_repeat1 = 311, + aux_sym_array_expression_repeat1 = 312, + aux_sym_tuple_expression_repeat1 = 313, + aux_sym_field_initializer_list_repeat1 = 314, + aux_sym_if_expression_repeat1 = 315, + aux_sym_match_block_repeat1 = 316, + aux_sym_closure_parameters_repeat1 = 317, + aux_sym_tuple_pattern_repeat1 = 318, + aux_sym_struct_pattern_repeat1 = 319, + aux_sym_string_literal_repeat1 = 320, + alias_sym_field_identifier = 321, + alias_sym_let_chain = 322, + alias_sym_shorthand_field_identifier = 323, + alias_sym_type_identifier = 324, }; static const char * const ts_symbol_names[] = { @@ -591,10 +593,11 @@ static const char * const ts_symbol_names[] = { [sym_field_initializer] = "field_initializer", [sym_base_field_initializer] = "base_field_initializer", [sym_if_expression] = "if_expression", + [sym__else_if] = "_else_if", + [sym_else_clause] = "else_clause", + [sym__condition] = "_condition", [sym_let_condition] = "let_condition", [sym__let_chain] = "_let_chain", - [sym__condition] = "_condition", - [sym_else_clause] = "else_clause", [sym_match_expression] = "match_expression", [sym_match_block] = "match_block", [sym_match_arm] = "match_arm", @@ -656,6 +659,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_if_expression_repeat1] = "if_expression_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", @@ -917,10 +921,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_field_initializer] = sym_field_initializer, [sym_base_field_initializer] = sym_base_field_initializer, [sym_if_expression] = sym_if_expression, + [sym__else_if] = sym__else_if, + [sym_else_clause] = sym_else_clause, + [sym__condition] = sym__condition, [sym_let_condition] = sym_let_condition, [sym__let_chain] = sym__let_chain, - [sym__condition] = sym__condition, - [sym_else_clause] = sym_else_clause, [sym_match_expression] = sym_match_expression, [sym_match_block] = sym_match_block, [sym_match_arm] = sym_match_arm, @@ -982,6 +987,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_if_expression_repeat1] = aux_sym_if_expression_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, @@ -1992,22 +1998,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_let_condition] = { - .visible = true, + [sym__else_if] = { + .visible = false, .named = true, }, - [sym__let_chain] = { - .visible = false, + [sym_else_clause] = { + .visible = true, .named = true, }, [sym__condition] = { .visible = false, .named = true, }, - [sym_else_clause] = { + [sym_let_condition] = { .visible = true, .named = true, }, + [sym__let_chain] = { + .visible = false, + .named = true, + }, [sym_match_expression] = { .visible = true, .named = true, @@ -2255,6 +2265,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_if_expression_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_match_block_repeat1] = { .visible = false, .named = false, @@ -2410,191 +2424,191 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [55] = {.index = 60, .length = 1}, [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 = 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 = 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 = 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}, + [59] = {.index = 61, .length = 1}, + [60] = {.index = 62, .length = 1}, + [62] = {.index = 63, .length = 2}, + [63] = {.index = 63, .length = 2}, + [64] = {.index = 65, .length = 1}, + [65] = {.index = 66, .length = 2}, + [66] = {.index = 68, .length = 3}, + [67] = {.index = 71, .length = 2}, + [68] = {.index = 73, .length = 2}, + [69] = {.index = 73, .length = 2}, + [70] = {.index = 75, .length = 1}, + [71] = {.index = 76, .length = 2}, + [72] = {.index = 78, .length = 3}, + [73] = {.index = 81, .length = 2}, + [74] = {.index = 83, .length = 2}, + [75] = {.index = 85, .length = 2}, + [76] = {.index = 87, .length = 2}, + [77] = {.index = 89, .length = 2}, + [78] = {.index = 87, .length = 2}, + [79] = {.index = 89, .length = 2}, + [80] = {.index = 91, .length = 1}, + [81] = {.index = 91, .length = 1}, + [82] = {.index = 92, .length = 1}, + [83] = {.index = 93, .length = 2}, + [84] = {.index = 95, .length = 2}, + [85] = {.index = 85, .length = 2}, + [86] = {.index = 92, .length = 1}, + [87] = {.index = 97, .length = 1}, + [88] = {.index = 98, .length = 3}, + [89] = {.index = 101, .length = 1}, + [90] = {.index = 102, .length = 1}, + [91] = {.index = 103, .length = 2}, + [92] = {.index = 105, .length = 3}, [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}, - [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}, + [94] = {.index = 111, .length = 4}, + [95] = {.index = 115, .length = 3}, + [96] = {.index = 1, .length = 1}, + [97] = {.index = 118, .length = 3}, + [98] = {.index = 121, .length = 2}, + [99] = {.index = 123, .length = 2}, + [100] = {.index = 125, .length = 2}, + [101] = {.index = 127, .length = 2}, + [102] = {.index = 127, .length = 2}, + [103] = {.index = 129, .length = 1}, + [104] = {.index = 130, .length = 2}, + [105] = {.index = 132, .length = 3}, + [106] = {.index = 135, .length = 3}, + [107] = {.index = 138, .length = 3}, + [108] = {.index = 141, .length = 1}, + [109] = {.index = 130, .length = 2}, + [110] = {.index = 132, .length = 3}, + [111] = {.index = 135, .length = 3}, + [112] = {.index = 142, .length = 2}, + [113] = {.index = 144, .length = 2}, + [115] = {.index = 146, .length = 3}, + [116] = {.index = 149, .length = 4}, + [117] = {.index = 103, .length = 2}, + [118] = {.index = 153, .length = 3}, + [119] = {.index = 156, .length = 2}, + [120] = {.index = 158, .length = 3}, + [121] = {.index = 161, .length = 2}, + [122] = {.index = 163, .length = 2}, + [123] = {.index = 165, .length = 3}, + [124] = {.index = 168, .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 = 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 = 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 = 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}, + [126] = {.index = 171, .length = 3}, + [127] = {.index = 174, .length = 2}, + [128] = {.index = 176, .length = 2}, + [129] = {.index = 178, .length = 3}, + [130] = {.index = 181, .length = 2}, + [131] = {.index = 183, .length = 2}, + [132] = {.index = 185, .length = 1}, + [133] = {.index = 186, .length = 2}, + [134] = {.index = 188, .length = 1}, + [135] = {.index = 174, .length = 2}, + [136] = {.index = 189, .length = 4}, + [137] = {.index = 193, .length = 3}, + [138] = {.index = 196, .length = 4}, + [139] = {.index = 92, .length = 1}, + [140] = {.index = 200, .length = 2}, + [141] = {.index = 202, .length = 2}, + [142] = {.index = 204, .length = 2}, + [143] = {.index = 206, .length = 3}, + [144] = {.index = 209, .length = 2}, + [145] = {.index = 211, .length = 3}, + [146] = {.index = 214, .length = 4}, + [147] = {.index = 211, .length = 3}, + [148] = {.index = 214, .length = 4}, + [149] = {.index = 218, .length = 3}, + [150] = {.index = 218, .length = 3}, + [151] = {.index = 206, .length = 3}, + [152] = {.index = 221, .length = 2}, + [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 = 202, .length = 2}, + [161] = {.index = 236, .length = 4}, + [162] = {.index = 240, .length = 3}, + [163] = {.index = 243, .length = 2}, + [164] = {.index = 245, .length = 3}, + [165] = {.index = 248, .length = 3}, + [166] = {.index = 243, .length = 2}, + [167] = {.index = 245, .length = 3}, + [168] = {.index = 251, .length = 3}, + [169] = {.index = 254, .length = 3}, + [170] = {.index = 257, .length = 4}, + [171] = {.index = 261, .length = 2}, + [172] = {.index = 263, .length = 2}, + [173] = {.index = 265, .length = 3}, + [174] = {.index = 268, .length = 4}, + [175] = {.index = 272, .length = 3}, + [176] = {.index = 230, .length = 2}, + [177] = {.index = 275, .length = 2}, + [178] = {.index = 277, .length = 3}, + [179] = {.index = 280, .length = 3}, + [180] = {.index = 283, .length = 2}, + [181] = {.index = 285, .length = 3}, + [182] = {.index = 202, .length = 2}, + [183] = {.index = 288, .length = 3}, + [184] = {.index = 291, .length = 3}, + [185] = {.index = 263, .length = 2}, + [186] = {.index = 294, .length = 4}, + [187] = {.index = 298, .length = 5}, + [188] = {.index = 303, .length = 4}, + [189] = {.index = 307, .length = 2}, + [190] = {.index = 309, .length = 3}, + [191] = {.index = 312, .length = 4}, + [192] = {.index = 312, .length = 4}, + [193] = {.index = 316, .length = 2}, + [194] = {.index = 318, .length = 3}, + [195] = {.index = 321, .length = 3}, + [196] = {.index = 324, .length = 3}, + [197] = {.index = 327, .length = 2}, + [198] = {.index = 329, .length = 2}, + [199] = {.index = 103, .length = 2}, + [200] = {.index = 331, .length = 3}, + [201] = {.index = 334, .length = 3}, + [202] = {.index = 337, .length = 4}, + [203] = {.index = 334, .length = 3}, + [204] = {.index = 337, .length = 4}, + [205] = {.index = 331, .length = 3}, + [206] = {.index = 341, .length = 4}, + [207] = {.index = 345, .length = 4}, + [208] = {.index = 349, .length = 3}, + [209] = {.index = 352, .length = 4}, + [210] = {.index = 356, .length = 3}, + [211] = {.index = 359, .length = 3}, + [212] = {.index = 362, .length = 3}, + [213] = {.index = 365, .length = 4}, + [214] = {.index = 369, .length = 2}, + [215] = {.index = 371, .length = 3}, + [216] = {.index = 374, .length = 4}, + [217] = {.index = 378, .length = 3}, + [218] = {.index = 381, .length = 3}, + [219] = {.index = 384, .length = 3}, + [220] = {.index = 387, .length = 5}, + [221] = {.index = 392, .length = 2}, + [222] = {.index = 394, .length = 3}, + [223] = {.index = 397, .length = 3}, + [224] = {.index = 400, .length = 3}, + [225] = {.index = 403, .length = 3}, + [226] = {.index = 406, .length = 2}, + [227] = {.index = 408, .length = 4}, + [228] = {.index = 408, .length = 4}, + [229] = {.index = 412, .length = 4}, + [230] = {.index = 416, .length = 5}, + [231] = {.index = 421, .length = 4}, + [232] = {.index = 425, .length = 2}, + [233] = {.index = 427, .length = 4}, + [234] = {.index = 431, .length = 4}, + [235] = {.index = 435, .length = 3}, + [236] = {.index = 438, .length = 4}, + [237] = {.index = 442, .length = 4}, + [238] = {.index = 446, .length = 3}, + [239] = {.index = 449, .length = 5}, + [240] = {.index = 454, .length = 4}, + [241] = {.index = 458, .length = 5}, + [242] = {.index = 463, .length = 4}, + [243] = {.index = 467, .length = 4}, + [244] = {.index = 471, .length = 3}, + [245] = {.index = 474, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2696,572 +2710,571 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [60] = {field_type, 0}, [61] = - {field_alternative, 3}, - {field_condition, 1}, - {field_consequence, 2}, - [64] = {field_element, 1}, - [65] = + [62] = {field_type, 2}, - [66] = + [63] = {field_bounds, 1}, {field_left, 0}, - [68] = + [65] = {field_parameters, 2}, - [69] = + [66] = {field_type, 2}, {field_type_parameters, 1}, - [71] = + [68] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [74] = + [71] = {field_body, 3}, {field_type, 1}, - [76] = + [73] = {field_parameters, 2}, {field_trait, 1}, - [78] = + [75] = {field_pattern, 2}, - [79] = + [76] = {field_name, 1}, {field_type_parameters, 2}, - [81] = + [78] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [84] = + [81] = {field_bounds, 2}, {field_name, 1}, - [86] = + [83] = {field_body, 3}, {field_type, 2}, - [88] = + [85] = {field_body, 3}, {field_name, 2}, - [90] = + [87] = {field_alias, 2}, {field_path, 0}, - [92] = + [89] = {field_list, 2}, {field_path, 0}, - [94] = + [91] = {field_arguments, 1}, - [95] = + [92] = {field_name, 2}, - [96] = + [93] = {field_alias, 2}, {field_type, 0}, - [98] = + [95] = {field_pattern, 0}, {field_type, 2}, - [100] = + [97] = {field_argument, 2}, - [101] = + [98] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [104] = + [101] = {field_body, 3}, - [105] = + [102] = {field_length, 3}, - [106] = + [103] = {field_name, 1}, {field_type, 3}, - [108] = + [105] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [111] = + [108] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [114] = + [111] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [118] = + [115] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [121] = + [118] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [124] = + [121] = {field_pattern, 1}, {field_value, 3}, - [126] = + [123] = + {field_condition, 1, .inherited = true}, + {field_consequence, 1, .inherited = true}, + [125] = {field_parameters, 1}, {field_return_type, 3}, - [128] = + [127] = {field_default_type, 2}, {field_name, 0}, - [130] = + [129] = {field_type, 3}, - [131] = + [130] = {field_trait, 1}, {field_type, 3}, - [133] = + [132] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [136] = + [135] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [139] = + [138] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [142] = + [141] = {field_parameters, 3}, - [143] = + [142] = {field_pattern, 1}, {field_type, 3}, - [145] = + [144] = {field_alternative, 3}, {field_pattern, 1}, - [147] = + [146] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [150] = + [149] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [154] = + [153] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [157] = + [156] = {field_type, 3}, {field_type_parameters, 2}, - [159] = + [158] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [162] = + [161] = {field_body, 4}, {field_type, 2}, - [164] = + [163] = {field_body, 4}, {field_name, 2}, - [166] = + [165] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [169] = + [168] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [172] = + [171] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [175] = + [174] = {field_name, 0}, {field_value, 2}, - [177] = + [176] = {field_name, 2}, {field_parameters, 3}, - [179] = + [178] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [182] = + [181] = {field_name, 2}, {field_type_parameters, 3}, - [184] = + [183] = {field_body, 4}, {field_name, 3}, - [186] = + [185] = {field_name, 3}, - [187] = + [186] = {field_body, 4}, {field_condition, 3}, - [189] = + [188] = {field_length, 4}, - [190] = + [189] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [194] = + [193] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [197] = + [196] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [201] = + [200] = {field_name, 0}, {field_pattern, 2}, - [203] = + [202] = {field_name, 0}, {field_type, 2}, - [205] = + [204] = {field_element, 1}, {field_length, 3}, - [207] = + [206] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [210] = + [209] = {field_parameters, 2}, {field_return_type, 4}, - [212] = + [211] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [215] = + [214] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [219] = + [218] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [222] = + [221] = {field_pattern, 2}, {field_type, 4}, - [224] = + [223] = {field_pattern, 2}, {field_value, 4}, - [226] = + [225] = {field_alternative, 4}, {field_pattern, 2}, - [228] = + [227] = {field_pattern, 0}, {field_value, 2}, - [230] = + [229] = {field_condition, 2}, - [231] = + [230] = {field_name, 2}, {field_type, 4}, - [233] = + [232] = {field_type, 1}, {field_type, 2, .inherited = true}, - [235] = + [234] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [237] = + [236] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [241] = + [240] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [244] = + [243] = {field_trait, 2}, {field_type, 4}, - [246] = + [245] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [249] = + [248] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [252] = + [251] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [255] = + [254] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [258] = + [257] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [262] = + [261] = {field_alias, 4}, {field_name, 2}, - [264] = + [263] = {field_name, 1}, {field_value, 3}, - [266] = + [265] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [269] = + [268] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [273] = + [272] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [276] = + [275] = {field_body, 5}, {field_name, 3}, - [278] = + [277] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [281] = + [280] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [284] = + [283] = {field_name, 3}, {field_parameters, 4}, - [286] = + [285] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [289] = + [288] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [292] = + [291] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [295] = + [294] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [299] = + [298] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [304] = + [303] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [308] = + [307] = {field_name, 1}, {field_pattern, 3}, - [310] = + [309] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [313] = + [312] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [317] = + [316] = {field_parameters, 3}, {field_return_type, 5}, - [319] = + [318] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [322] = + [321] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [325] = + [324] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [328] = + [327] = {field_name, 3}, {field_type, 5}, - [330] = + [329] = {field_type, 2}, {field_type, 3, .inherited = true}, - [332] = + [331] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [335] = + [334] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [338] = + [337] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [342] = + [341] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [346] = + [345] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [350] = + [349] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [353] = + [352] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [357] = + [356] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [360] = + [359] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [363] = + [362] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [366] = + [365] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [370] = + [369] = {field_alias, 5}, {field_name, 3}, - [372] = + [371] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [375] = + [374] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [379] = + [378] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [382] = + [381] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [385] = + [384] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [388] = + [387] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [393] = + [392] = {field_name, 2}, {field_pattern, 4}, - [395] = + [394] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [398] = + [397] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [401] = + [400] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [404] = + [403] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [407] = + [406] = {field_type, 3}, {field_type, 4, .inherited = true}, - [409] = + [408] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [413] = + [412] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [417] = + [416] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [422] = + [421] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [426] = + [425] = {field_name, 4}, {field_type, 6}, - [428] = + [427] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [432] = + [431] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [436] = + [435] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [439] = + [438] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [443] = + [442] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [447] = + [446] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [450] = + [449] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [455] = + [454] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [459] = + [458] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [464] = + [463] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [468] = + [467] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [472] = + [471] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [475] = + [474] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3346,43 +3359,43 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [58] = { [2] = sym_identifier, }, - [62] = { + [61] = { [1] = alias_sym_type_identifier, }, - [63] = { + [62] = { [0] = alias_sym_type_identifier, }, - [69] = { + [68] = { [1] = alias_sym_type_identifier, }, - [72] = { + [71] = { [1] = alias_sym_type_identifier, }, - [73] = { + [72] = { [1] = alias_sym_type_identifier, }, - [74] = { + [73] = { [1] = alias_sym_type_identifier, }, - [76] = { + [75] = { [2] = alias_sym_type_identifier, }, - [77] = { + [76] = { [0] = sym_identifier, }, - [78] = { + [77] = { [0] = sym_identifier, }, - [81] = { + [80] = { [0] = sym_identifier, }, - [87] = { + [86] = { [2] = alias_sym_type_identifier, }, - [93] = { + [92] = { [1] = alias_sym_type_identifier, }, - [97] = { + [96] = { [1] = alias_sym_shorthand_field_identifier, }, [101] = { @@ -3555,35 +3568,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 2, - [6] = 2, + [4] = 2, + [5] = 3, + [6] = 3, [7] = 2, [8] = 8, - [9] = 9, + [9] = 2, [10] = 2, - [11] = 3, - [12] = 8, + [11] = 11, + [12] = 2, [13] = 3, - [14] = 3, + [14] = 11, [15] = 3, - [16] = 2, + [16] = 3, [17] = 17, [18] = 18, [19] = 19, - [20] = 19, - [21] = 18, + [20] = 20, + [21] = 19, [22] = 22, [23] = 23, - [24] = 24, + [24] = 22, [25] = 17, - [26] = 18, - [27] = 23, + [26] = 22, + [27] = 18, [28] = 19, - [29] = 24, - [30] = 22, - [31] = 18, - [32] = 19, + [29] = 22, + [30] = 19, + [31] = 23, + [32] = 20, [33] = 33, [34] = 34, [35] = 35, @@ -3592,25 +3605,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [38] = 38, [39] = 39, [40] = 40, - [41] = 37, + [41] = 41, [42] = 42, - [43] = 39, + [43] = 43, [44] = 40, - [45] = 45, - [46] = 40, + [45] = 41, + [46] = 39, [47] = 47, - [48] = 48, - [49] = 39, - [50] = 37, - [51] = 51, + [48] = 41, + [49] = 49, + [50] = 39, + [51] = 43, [52] = 52, - [53] = 53, - [54] = 54, + [53] = 43, + [54] = 40, [55] = 55, [56] = 56, [57] = 57, [58] = 58, - [59] = 58, + [59] = 59, [60] = 60, [61] = 61, [62] = 62, @@ -3633,10 +3646,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [79] = 79, [80] = 80, [81] = 81, - [82] = 80, + [82] = 82, [83] = 83, - [84] = 84, - [85] = 85, + [84] = 73, + [85] = 77, [86] = 86, [87] = 87, [88] = 88, @@ -3646,15 +3659,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [92] = 92, [93] = 93, [94] = 94, - [95] = 91, - [96] = 68, - [97] = 94, - [98] = 90, - [99] = 99, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 95, [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, + [101] = 82, + [102] = 98, + [103] = 100, [104] = 104, [105] = 105, [106] = 106, @@ -3667,143 +3680,143 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [113] = 113, [114] = 114, [115] = 115, - [116] = 111, + [116] = 116, [117] = 117, [118] = 118, - [119] = 112, + [119] = 119, [120] = 120, [121] = 121, - [122] = 117, + [122] = 122, [123] = 123, [124] = 124, - [125] = 111, - [126] = 126, + [125] = 125, + [126] = 106, [127] = 127, [128] = 128, - [129] = 105, - [130] = 113, + [129] = 129, + [130] = 130, [131] = 131, - [132] = 106, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, + [132] = 130, + [133] = 131, + [134] = 127, + [135] = 124, + [136] = 122, + [137] = 121, [138] = 138, - [139] = 109, - [140] = 124, - [141] = 110, - [142] = 120, - [143] = 128, - [144] = 103, - [145] = 145, - [146] = 136, - [147] = 147, + [139] = 108, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 109, + [145] = 111, + [146] = 146, + [147] = 112, [148] = 148, - [149] = 149, - [150] = 149, - [151] = 103, + [149] = 115, + [150] = 116, + [151] = 128, [152] = 152, - [153] = 153, + [153] = 108, [154] = 154, - [155] = 120, + [155] = 155, [156] = 156, - [157] = 108, - [158] = 100, - [159] = 126, - [160] = 160, - [161] = 148, - [162] = 100, - [163] = 100, - [164] = 133, + [157] = 114, + [158] = 158, + [159] = 159, + [160] = 107, + [161] = 146, + [162] = 162, + [163] = 148, + [164] = 106, [165] = 165, [166] = 166, - [167] = 165, - [168] = 121, - [169] = 169, - [170] = 115, - [171] = 169, - [172] = 166, - [173] = 127, - [174] = 107, - [175] = 153, - [176] = 135, - [177] = 152, - [178] = 178, - [179] = 179, - [180] = 179, - [181] = 179, - [182] = 182, - [183] = 182, - [184] = 184, + [167] = 167, + [168] = 110, + [169] = 148, + [170] = 155, + [171] = 171, + [172] = 123, + [173] = 146, + [174] = 138, + [175] = 162, + [176] = 176, + [177] = 177, + [178] = 125, + [179] = 154, + [180] = 108, + [181] = 152, + [182] = 119, + [183] = 142, + [184] = 166, [185] = 185, [186] = 186, [187] = 185, [188] = 186, - [189] = 184, + [189] = 186, [190] = 190, [191] = 191, - [192] = 192, - [193] = 192, + [192] = 190, + [193] = 191, [194] = 194, - [195] = 195, - [196] = 195, - [197] = 195, - [198] = 198, + [195] = 194, + [196] = 196, + [197] = 197, + [198] = 197, [199] = 199, [200] = 200, - [201] = 200, + [201] = 201, [202] = 202, - [203] = 202, - [204] = 204, - [205] = 202, - [206] = 199, - [207] = 200, - [208] = 204, + [203] = 201, + [204] = 201, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 207, [209] = 209, - [210] = 48, - [211] = 53, - [212] = 56, - [213] = 54, - [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, + [210] = 205, + [211] = 205, + [212] = 206, + [213] = 209, + [214] = 206, + [215] = 215, + [216] = 33, + [217] = 38, + [218] = 34, + [219] = 58, + [220] = 63, + [221] = 62, + [222] = 65, + [223] = 64, + [224] = 60, + [225] = 70, + [226] = 226, + [227] = 227, + [228] = 92, + [229] = 67, + [230] = 72, + [231] = 89, + [232] = 83, + [233] = 80, + [234] = 234, + [235] = 91, [236] = 236, - [237] = 237, - [238] = 237, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 242, - [244] = 241, - [245] = 56, - [246] = 246, + [237] = 71, + [238] = 66, + [239] = 236, + [240] = 93, + [241] = 69, + [242] = 81, + [243] = 79, + [244] = 227, + [245] = 245, + [246] = 245, [247] = 247, [248] = 248, [249] = 249, [250] = 250, - [251] = 251, - [252] = 252, + [251] = 249, + [252] = 248, [253] = 253, [254] = 254, [255] = 255, @@ -3881,14 +3894,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [327] = 327, [328] = 328, [329] = 329, - [330] = 53, + [330] = 330, [331] = 331, [332] = 332, [333] = 333, [334] = 334, [335] = 335, [336] = 336, - [337] = 54, + [337] = 337, [338] = 338, [339] = 339, [340] = 340, @@ -3914,9 +3927,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [360] = 360, [361] = 361, [362] = 362, - [363] = 363, + [363] = 317, [364] = 364, - [365] = 365, + [365] = 317, [366] = 366, [367] = 367, [368] = 368, @@ -3930,21 +3943,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [376] = 376, [377] = 377, [378] = 378, - [379] = 379, + [379] = 60, [380] = 380, [381] = 381, [382] = 382, [383] = 383, [384] = 384, - [385] = 385, + [385] = 58, [386] = 386, [387] = 387, [388] = 388, [389] = 389, [390] = 390, - [391] = 365, + [391] = 391, [392] = 392, - [393] = 393, + [393] = 62, [394] = 394, [395] = 395, [396] = 396, @@ -4020,7 +4033,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [466] = 466, [467] = 467, [468] = 468, - [469] = 365, + [469] = 469, [470] = 470, [471] = 471, [472] = 472, @@ -4037,74 +4050,74 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [483] = 483, [484] = 484, [485] = 485, - [486] = 484, + [486] = 486, [487] = 487, [488] = 488, [489] = 489, - [490] = 484, + [490] = 490, [491] = 491, [492] = 492, - [493] = 489, + [493] = 493, [494] = 494, - [495] = 487, - [496] = 492, - [497] = 488, - [498] = 481, - [499] = 494, + [495] = 491, + [496] = 496, + [497] = 493, + [498] = 498, + [499] = 499, [500] = 500, [501] = 501, - [502] = 502, + [502] = 501, [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 505, - [508] = 508, + [504] = 499, + [505] = 498, + [506] = 496, + [507] = 500, + [508] = 500, [509] = 509, - [510] = 504, - [511] = 505, - [512] = 501, - [513] = 502, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, [514] = 514, [515] = 515, [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] = 504, - [541] = 503, - [542] = 501, - [543] = 501, - [544] = 515, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, + [517] = 517, + [518] = 518, + [519] = 518, + [520] = 511, + [521] = 512, + [522] = 514, + [523] = 523, + [524] = 514, + [525] = 512, + [526] = 511, + [527] = 527, + [528] = 510, + [529] = 517, + [530] = 516, + [531] = 531, + [532] = 532, + [533] = 515, + [534] = 513, + [535] = 535, + [536] = 516, + [537] = 516, + [538] = 516, + [539] = 517, + [540] = 510, + [541] = 535, + [542] = 512, + [543] = 514, + [544] = 514, + [545] = 517, + [546] = 512, + [547] = 511, + [548] = 510, + [549] = 531, + [550] = 523, + [551] = 517, + [552] = 510, + [553] = 511, [554] = 554, [555] = 555, [556] = 556, @@ -4140,10 +4153,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [586] = 586, [587] = 587, [588] = 588, - [589] = 584, + [589] = 589, [590] = 590, - [591] = 587, - [592] = 585, + [591] = 591, + [592] = 592, [593] = 593, [594] = 594, [595] = 595, @@ -4151,57 +4164,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [597] = 597, [598] = 598, [599] = 599, - [600] = 600, - [601] = 567, + [600] = 94, + [601] = 601, [602] = 602, - [603] = 603, - [604] = 604, - [605] = 64, + [603] = 75, + [604] = 587, + [605] = 589, [606] = 606, [607] = 607, [608] = 608, - [609] = 609, + [609] = 592, [610] = 610, - [611] = 611, - [612] = 597, - [613] = 600, - [614] = 575, - [615] = 88, - [616] = 598, - [617] = 597, - [618] = 587, - [619] = 611, - [620] = 620, + [611] = 602, + [612] = 606, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 610, + [618] = 618, + [619] = 608, + [620] = 602, [621] = 621, - [622] = 622, - [623] = 622, - [624] = 622, - [625] = 625, + [622] = 607, + [623] = 623, + [624] = 624, + [625] = 607, [626] = 626, - [627] = 626, - [628] = 625, + [627] = 627, + [628] = 593, [629] = 629, [630] = 630, - [631] = 631, - [632] = 629, + [631] = 630, + [632] = 630, [633] = 633, [634] = 634, - [635] = 630, - [636] = 626, - [637] = 633, - [638] = 631, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 637, [639] = 639, - [640] = 640, + [640] = 634, [641] = 641, [642] = 642, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, + [643] = 636, + [644] = 642, + [645] = 641, + [646] = 642, + [647] = 639, [648] = 648, - [649] = 640, - [650] = 650, + [649] = 649, + [650] = 398, [651] = 651, [652] = 652, [653] = 653, @@ -4211,133 +4224,133 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [657] = 657, [658] = 658, [659] = 659, - [660] = 650, - [661] = 661, - [662] = 643, + [660] = 649, + [661] = 658, + [662] = 662, [663] = 663, [664] = 664, [665] = 665, - [666] = 666, + [666] = 648, [667] = 667, [668] = 668, [669] = 669, [670] = 670, [671] = 671, - [672] = 639, - [673] = 673, - [674] = 644, + [672] = 672, + [673] = 655, + [674] = 674, [675] = 675, [676] = 676, [677] = 677, [678] = 678, - [679] = 648, - [680] = 652, - [681] = 681, - [682] = 663, - [683] = 681, + [679] = 679, + [680] = 680, + [681] = 662, + [682] = 682, + [683] = 653, [684] = 684, - [685] = 654, + [685] = 685, [686] = 686, - [687] = 676, - [688] = 642, - [689] = 689, + [687] = 675, + [688] = 688, + [689] = 659, [690] = 690, [691] = 691, - [692] = 651, + [692] = 654, [693] = 693, [694] = 694, [695] = 695, - [696] = 696, + [696] = 658, [697] = 697, [698] = 698, - [699] = 665, - [700] = 700, - [701] = 701, + [699] = 699, + [700] = 685, + [701] = 671, [702] = 702, - [703] = 703, + [703] = 657, [704] = 704, - [705] = 705, - [706] = 655, - [707] = 698, + [705] = 674, + [706] = 678, + [707] = 707, [708] = 708, - [709] = 709, + [709] = 655, [710] = 710, - [711] = 711, - [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, + [711] = 690, + [712] = 677, + [713] = 684, + [714] = 663, + [715] = 697, + [716] = 698, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 682, + [724] = 724, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 721, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 688, [733] = 733, - [734] = 710, - [735] = 735, - [736] = 703, - [737] = 705, - [738] = 738, - [739] = 709, - [740] = 640, + [734] = 725, + [735] = 717, + [736] = 679, + [737] = 671, + [738] = 651, + [739] = 680, + [740] = 718, [741] = 741, - [742] = 742, - [743] = 690, - [744] = 678, - [745] = 653, - [746] = 746, - [747] = 747, - [748] = 748, - [749] = 749, - [750] = 750, - [751] = 318, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 755, + [742] = 668, + [743] = 743, + [744] = 719, + [745] = 720, + [746] = 665, + [747] = 664, + [748] = 652, + [749] = 724, + [750] = 729, + [751] = 751, + [752] = 656, + [753] = 669, + [754] = 694, + [755] = 672, [756] = 756, [757] = 757, [758] = 758, [759] = 759, - [760] = 760, + [760] = 398, [761] = 761, [762] = 762, - [763] = 461, + [763] = 763, [764] = 764, [765] = 765, [766] = 766, - [767] = 464, - [768] = 320, + [767] = 767, + [768] = 768, [769] = 769, [770] = 770, [771] = 771, - [772] = 772, - [773] = 256, - [774] = 326, + [772] = 460, + [773] = 286, + [774] = 774, [775] = 775, - [776] = 776, + [776] = 478, [777] = 777, - [778] = 778, + [778] = 38, [779] = 779, - [780] = 780, - [781] = 781, + [780] = 34, + [781] = 33, [782] = 782, [783] = 783, - [784] = 198, - [785] = 785, - [786] = 786, + [784] = 784, + [785] = 415, + [786] = 332, [787] = 787, [788] = 788, [789] = 789, @@ -4352,346 +4365,346 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [798] = 798, [799] = 799, [800] = 800, - [801] = 48, + [801] = 202, [802] = 802, [803] = 803, [804] = 804, [805] = 805, [806] = 806, [807] = 807, - [808] = 290, - [809] = 306, - [810] = 369, - [811] = 384, - [812] = 387, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 812, [813] = 813, - [814] = 392, - [815] = 585, + [814] = 814, + [815] = 815, [816] = 816, [817] = 817, - [818] = 62, - [819] = 401, - [820] = 402, - [821] = 403, - [822] = 404, - [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] = 434, - [840] = 435, - [841] = 436, - [842] = 842, + [818] = 818, + [819] = 819, + [820] = 304, + [821] = 269, + [822] = 257, + [823] = 287, + [824] = 93, + [825] = 319, + [826] = 320, + [827] = 336, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 592, + [833] = 420, + [834] = 302, + [835] = 318, + [836] = 836, + [837] = 337, + [838] = 338, + [839] = 341, + [840] = 354, + [841] = 360, + [842] = 394, [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, + [844] = 844, + [845] = 845, + [846] = 426, + [847] = 847, + [848] = 428, + [849] = 334, + [850] = 430, + [851] = 343, + [852] = 438, + [853] = 351, + [854] = 439, + [855] = 362, + [856] = 442, + [857] = 80, + [858] = 443, + [859] = 447, + [860] = 455, + [861] = 468, + [862] = 480, + [863] = 863, + [864] = 64, + [865] = 481, + [866] = 63, + [867] = 489, [868] = 868, - [869] = 66, - [870] = 69, + [869] = 869, + [870] = 482, [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] = 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, + [872] = 271, + [873] = 873, + [874] = 81, + [875] = 421, + [876] = 366, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 431, + [881] = 326, + [882] = 434, + [883] = 324, + [884] = 884, + [885] = 436, + [886] = 886, + [887] = 440, + [888] = 310, + [889] = 308, + [890] = 890, + [891] = 444, + [892] = 446, + [893] = 448, + [894] = 593, + [895] = 70, + [896] = 896, + [897] = 897, + [898] = 589, + [899] = 899, + [900] = 473, + [901] = 409, + [902] = 902, + [903] = 903, + [904] = 904, [905] = 905, - [906] = 417, - [907] = 418, - [908] = 273, - [909] = 272, - [910] = 271, - [911] = 270, - [912] = 257, - [913] = 362, - [914] = 422, - [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] = 457, - [944] = 458, - [945] = 345, - [946] = 946, - [947] = 344, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 74, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 407, + [910] = 910, + [911] = 403, + [912] = 912, + [913] = 395, + [914] = 914, + [915] = 915, + [916] = 289, + [917] = 917, + [918] = 291, + [919] = 60, + [920] = 391, + [921] = 388, + [922] = 381, + [923] = 313, + [924] = 321, + [925] = 375, + [926] = 389, + [927] = 373, + [928] = 372, + [929] = 75, + [930] = 347, + [931] = 60, + [932] = 330, + [933] = 328, + [934] = 323, + [935] = 422, + [936] = 437, + [937] = 58, + [938] = 94, + [939] = 75, + [940] = 312, + [941] = 307, + [942] = 398, + [943] = 297, + [944] = 74, + [945] = 296, + [946] = 295, + [947] = 294, + [948] = 425, + [949] = 90, + [950] = 62, + [951] = 258, + [952] = 587, [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] = 286, - [1011] = 1011, + [954] = 262, + [955] = 457, + [956] = 263, + [957] = 270, + [958] = 458, + [959] = 488, + [960] = 485, + [961] = 486, + [962] = 467, + [963] = 272, + [964] = 273, + [965] = 274, + [966] = 466, + [967] = 445, + [968] = 479, + [969] = 477, + [970] = 66, + [971] = 283, + [972] = 74, + [973] = 474, + [974] = 471, + [975] = 465, + [976] = 285, + [977] = 69, + [978] = 288, + [979] = 303, + [980] = 339, + [981] = 305, + [982] = 306, + [983] = 254, + [984] = 984, + [985] = 390, + [986] = 405, + [987] = 410, + [988] = 386, + [989] = 463, + [990] = 990, + [991] = 414, + [992] = 382, + [993] = 427, + [994] = 429, + [995] = 433, + [996] = 377, + [997] = 997, + [998] = 998, + [999] = 374, + [1000] = 462, + [1001] = 368, + [1002] = 367, + [1003] = 79, + [1004] = 361, + [1005] = 461, + [1006] = 464, + [1007] = 459, + [1008] = 456, + [1009] = 472, + [1010] = 487, + [1011] = 352, [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] = 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, + [1013] = 453, + [1014] = 1014, + [1015] = 350, + [1016] = 449, + [1017] = 83, + [1018] = 451, + [1019] = 476, + [1020] = 452, + [1021] = 1021, + [1022] = 1022, + [1023] = 419, + [1024] = 411, + [1025] = 404, + [1026] = 384, + [1027] = 369, + [1028] = 1028, + [1029] = 364, + [1030] = 357, + [1031] = 450, + [1032] = 356, + [1033] = 348, + [1034] = 346, + [1035] = 1035, + [1036] = 1036, + [1037] = 345, + [1038] = 340, + [1039] = 335, + [1040] = 333, + [1041] = 1041, + [1042] = 331, + [1043] = 1043, + [1044] = 329, + [1045] = 327, [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, + [1047] = 316, + [1048] = 300, + [1049] = 1049, + [1050] = 1050, + [1051] = 298, + [1052] = 292, + [1053] = 290, + [1054] = 279, + [1055] = 275, + [1056] = 268, + [1057] = 265, + [1058] = 435, + [1059] = 432, + [1060] = 259, + [1061] = 261, + [1062] = 314, + [1063] = 315, + [1064] = 322, + [1065] = 277, + [1066] = 90, [1067] = 1067, - [1068] = 376, - [1069] = 1069, + [1068] = 370, + [1069] = 91, [1070] = 1070, - [1071] = 1071, - [1072] = 358, + [1071] = 255, + [1072] = 423, [1073] = 1073, - [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] = 378, - [1113] = 379, - [1114] = 88, - [1115] = 380, - [1116] = 385, - [1117] = 421, - [1118] = 575, - [1119] = 1119, - [1120] = 393, - [1121] = 1121, - [1122] = 396, - [1123] = 397, - [1124] = 64, - [1125] = 399, - [1126] = 410, - [1127] = 65, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1135, - [1136] = 1136, + [1074] = 1074, + [1075] = 380, + [1076] = 376, + [1077] = 401, + [1078] = 412, + [1079] = 359, + [1080] = 58, + [1081] = 94, + [1082] = 355, + [1083] = 413, + [1084] = 424, + [1085] = 65, + [1086] = 441, + [1087] = 344, + [1088] = 342, + [1089] = 454, + [1090] = 475, + [1091] = 1091, + [1092] = 483, + [1093] = 470, + [1094] = 402, + [1095] = 392, + [1096] = 371, + [1097] = 282, + [1098] = 280, + [1099] = 278, + [1100] = 276, + [1101] = 349, + [1102] = 353, + [1103] = 266, + [1104] = 378, + [1105] = 293, + [1106] = 469, + [1107] = 418, + [1108] = 417, + [1109] = 416, + [1110] = 408, + [1111] = 396, + [1112] = 387, + [1113] = 358, + [1114] = 67, + [1115] = 311, + [1116] = 72, + [1117] = 1117, + [1118] = 309, + [1119] = 267, + [1120] = 1120, + [1121] = 484, + [1122] = 383, + [1123] = 92, + [1124] = 406, + [1125] = 89, + [1126] = 400, + [1127] = 399, + [1128] = 62, + [1129] = 71, + [1130] = 325, + [1131] = 301, + [1132] = 299, + [1133] = 264, + [1134] = 397, + [1135] = 260, + [1136] = 256, [1137] = 1137, [1138] = 1138, - [1139] = 1139, - [1140] = 1140, + [1139] = 281, + [1140] = 629, [1141] = 1141, [1142] = 1142, [1143] = 1143, @@ -4704,7 +4717,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1150] = 1150, [1151] = 1151, [1152] = 1152, - [1153] = 621, + [1153] = 1153, [1154] = 1154, [1155] = 1155, [1156] = 1156, @@ -4712,473 +4725,473 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1158] = 1158, [1159] = 1159, [1160] = 1160, - [1161] = 758, + [1161] = 1161, [1162] = 1162, - [1163] = 318, + [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1165, + [1167] = 1167, [1168] = 1168, - [1169] = 1164, - [1170] = 1015, - [1171] = 758, - [1172] = 792, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 792, - [1177] = 780, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 764, + [1174] = 1043, + [1175] = 398, + [1176] = 1176, + [1177] = 1177, [1178] = 1178, [1179] = 1179, [1180] = 1180, - [1181] = 769, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, + [1181] = 1178, + [1182] = 1180, + [1183] = 793, + [1184] = 764, [1185] = 1185, - [1186] = 766, - [1187] = 764, - [1188] = 1188, - [1189] = 772, - [1190] = 793, - [1191] = 796, - [1192] = 1031, + [1186] = 1186, + [1187] = 779, + [1188] = 777, + [1189] = 1189, + [1190] = 814, + [1191] = 1191, + [1192] = 793, [1193] = 1193, - [1194] = 1119, + [1194] = 1194, [1195] = 1195, - [1196] = 1195, + [1196] = 1196, [1197] = 1197, - [1198] = 1136, - [1199] = 1199, - [1200] = 1155, - [1201] = 1201, - [1202] = 1199, - [1203] = 1157, + [1198] = 1198, + [1199] = 774, + [1200] = 1200, + [1201] = 775, + [1202] = 787, + [1203] = 795, [1204] = 1204, - [1205] = 1154, - [1206] = 1206, - [1207] = 1207, - [1208] = 1130, + [1205] = 1205, + [1206] = 844, + [1207] = 829, + [1208] = 1205, [1209] = 1209, [1210] = 1210, [1211] = 1211, - [1212] = 1212, + [1212] = 1165, [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, + [1214] = 1214, + [1215] = 1163, + [1216] = 1164, + [1217] = 1170, + [1218] = 1168, + [1219] = 1167, + [1220] = 1141, + [1221] = 1221, + [1222] = 1222, + [1223] = 1213, + [1224] = 1162, + [1225] = 1149, [1226] = 1226, - [1227] = 1227, - [1228] = 1213, + [1227] = 1210, + [1228] = 1228, [1229] = 1229, - [1230] = 1213, - [1231] = 1209, - [1232] = 1143, - [1233] = 1204, - [1234] = 1234, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1154, + [1234] = 1142, [1235] = 1144, - [1236] = 1146, - [1237] = 1211, - [1238] = 1138, - [1239] = 1206, - [1240] = 1147, - [1241] = 1129, - [1242] = 1206, - [1243] = 1243, - [1244] = 1128, + [1236] = 1147, + [1237] = 1221, + [1238] = 1221, + [1239] = 1155, + [1240] = 1159, + [1241] = 1241, + [1242] = 1231, + [1243] = 1156, + [1244] = 1244, [1245] = 1245, - [1246] = 1246, - [1247] = 1152, - [1248] = 1210, - [1249] = 1158, + [1246] = 1213, + [1247] = 1157, + [1248] = 1245, + [1249] = 1161, [1250] = 1250, - [1251] = 1246, + [1251] = 1151, [1252] = 1252, - [1253] = 1142, + [1253] = 1244, [1254] = 1254, - [1255] = 1255, - [1256] = 1145, - [1257] = 1206, - [1258] = 1258, - [1259] = 1201, - [1260] = 1213, - [1261] = 1213, - [1262] = 1156, - [1263] = 1132, + [1255] = 1254, + [1256] = 1169, + [1257] = 1211, + [1258] = 1226, + [1259] = 1213, + [1260] = 1260, + [1261] = 1210, + [1262] = 1221, + [1263] = 1263, [1264] = 1264, - [1265] = 1265, + [1265] = 1231, [1266] = 1266, [1267] = 1267, - [1268] = 1268, + [1268] = 1254, [1269] = 1269, [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, + [1271] = 1213, + [1272] = 1221, + [1273] = 1213, + [1274] = 1221, [1275] = 1275, [1276] = 1276, [1277] = 1277, - [1278] = 1269, - [1279] = 1265, - [1280] = 1270, - [1281] = 1275, + [1278] = 1278, + [1279] = 1277, + [1280] = 1280, + [1281] = 1281, [1282] = 1282, - [1283] = 1268, - [1284] = 1271, - [1285] = 1274, + [1283] = 1283, + [1284] = 1284, + [1285] = 1283, [1286] = 1286, - [1287] = 1272, - [1288] = 1277, + [1287] = 1287, + [1288] = 1288, [1289] = 1289, [1290] = 1290, [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1267, + [1292] = 1291, + [1293] = 1278, + [1294] = 1290, [1295] = 1295, [1296] = 1296, [1297] = 1297, - [1298] = 1297, + [1298] = 1282, [1299] = 1299, - [1300] = 1299, - [1301] = 1301, - [1302] = 1302, + [1300] = 1300, + [1301] = 1280, + [1302] = 1296, [1303] = 1303, [1304] = 1304, - [1305] = 1305, - [1306] = 1305, - [1307] = 1304, - [1308] = 1305, - [1309] = 1305, - [1310] = 1305, - [1311] = 1311, - [1312] = 1311, - [1313] = 567, - [1314] = 575, + [1305] = 1288, + [1306] = 1306, + [1307] = 1287, + [1308] = 1308, + [1309] = 1309, + [1310] = 1310, + [1311] = 1310, + [1312] = 1309, + [1313] = 1313, + [1314] = 1314, [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] = 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, + [1316] = 1316, + [1317] = 1317, + [1318] = 1317, + [1319] = 1317, + [1320] = 1316, + [1321] = 1317, + [1322] = 1317, + [1323] = 1323, + [1324] = 1323, + [1325] = 587, + [1326] = 589, + [1327] = 1327, + [1328] = 761, + [1329] = 765, + [1330] = 768, + [1331] = 769, + [1332] = 766, + [1333] = 768, + [1334] = 766, + [1335] = 769, + [1336] = 763, + [1337] = 765, + [1338] = 762, + [1339] = 767, + [1340] = 771, + [1341] = 1341, + [1342] = 1342, + [1343] = 1343, + [1344] = 770, + [1345] = 75, + [1346] = 90, + [1347] = 94, [1348] = 1348, - [1349] = 803, - [1350] = 791, + [1349] = 74, + [1350] = 813, [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, + [1352] = 1348, + [1353] = 1196, + [1354] = 1354, + [1355] = 789, + [1356] = 815, + [1357] = 1043, + [1358] = 802, + [1359] = 812, + [1360] = 818, + [1361] = 806, + [1362] = 794, + [1363] = 791, [1364] = 1364, - [1365] = 795, - [1366] = 1366, - [1367] = 806, - [1368] = 788, - [1369] = 1369, - [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] = 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, + [1365] = 788, + [1366] = 803, + [1367] = 1194, + [1368] = 1193, + [1369] = 1197, + [1370] = 808, + [1371] = 810, + [1372] = 797, + [1373] = 1364, + [1374] = 804, + [1375] = 792, + [1376] = 1364, + [1377] = 1377, + [1378] = 1378, + [1379] = 592, + [1380] = 817, + [1381] = 816, + [1382] = 811, + [1383] = 1383, + [1384] = 807, + [1385] = 809, + [1386] = 790, + [1387] = 796, + [1388] = 871, + [1389] = 1036, + [1390] = 877, + [1391] = 784, + [1392] = 1392, + [1393] = 984, + [1394] = 998, + [1395] = 904, + [1396] = 869, + [1397] = 1120, + [1398] = 819, + [1399] = 886, + [1400] = 1400, + [1401] = 1046, + [1402] = 868, + [1403] = 1091, + [1404] = 899, + [1405] = 990, + [1406] = 1028, + [1407] = 1022, + [1408] = 902, + [1409] = 884, + [1410] = 997, [1411] = 1411, - [1412] = 1412, + [1412] = 1117, [1413] = 1413, - [1414] = 54, - [1415] = 53, + [1414] = 905, + [1415] = 1415, [1416] = 1416, - [1417] = 1417, + [1417] = 890, [1418] = 1418, - [1419] = 762, + [1419] = 1419, [1420] = 1420, [1421] = 1421, [1422] = 1422, - [1423] = 756, - [1424] = 761, - [1425] = 1425, + [1423] = 1423, + [1424] = 1424, + [1425] = 1416, [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 756, - [1431] = 762, + [1427] = 58, + [1428] = 60, + [1429] = 62, + [1430] = 769, + [1431] = 1431, [1432] = 1432, - [1433] = 755, - [1434] = 1434, - [1435] = 755, - [1436] = 1436, + [1433] = 768, + [1434] = 769, + [1435] = 766, + [1436] = 765, [1437] = 1437, - [1438] = 1438, - [1439] = 1395, + [1438] = 768, + [1439] = 1439, [1440] = 1440, [1441] = 1441, - [1442] = 1442, - [1443] = 1443, + [1442] = 766, + [1443] = 765, [1444] = 1444, - [1445] = 761, - [1446] = 1446, + [1445] = 1445, + [1446] = 768, [1447] = 1447, [1448] = 1448, - [1449] = 761, + [1449] = 1449, [1450] = 1450, [1451] = 1451, [1452] = 1452, - [1453] = 1453, - [1454] = 1454, - [1455] = 67, - [1456] = 1456, - [1457] = 755, + [1453] = 1416, + [1454] = 766, + [1455] = 769, + [1456] = 765, + [1457] = 1457, [1458] = 1458, - [1459] = 756, + [1459] = 1459, [1460] = 1460, - [1461] = 762, + [1461] = 1461, [1462] = 1462, - [1463] = 1462, + [1463] = 92, [1464] = 1464, [1465] = 1465, - [1466] = 1465, - [1467] = 1464, + [1466] = 1466, + [1467] = 1467, [1468] = 1468, [1469] = 1469, - [1470] = 1469, + [1470] = 1470, [1471] = 1471, - [1472] = 1471, - [1473] = 1468, + [1472] = 1472, + [1473] = 1473, [1474] = 1474, [1475] = 1475, [1476] = 1476, [1477] = 1477, [1478] = 1478, - [1479] = 1478, + [1479] = 1476, [1480] = 1480, - [1481] = 1480, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, + [1481] = 1475, + [1482] = 1474, + [1483] = 1478, + [1484] = 1477, + [1485] = 1480, [1486] = 1486, [1487] = 1487, [1488] = 1488, - [1489] = 1487, - [1490] = 1490, - [1491] = 1483, - [1492] = 1492, + [1489] = 1489, + [1490] = 1487, + [1491] = 1491, + [1492] = 1489, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 1486, + [1496] = 1496, [1497] = 1497, - [1498] = 1495, - [1499] = 1493, + [1498] = 1498, + [1499] = 1494, [1500] = 1500, - [1501] = 1484, - [1502] = 1490, - [1503] = 1494, - [1504] = 1504, - [1505] = 1337, - [1506] = 1482, - [1507] = 1497, + [1501] = 1501, + [1502] = 1502, + [1503] = 1495, + [1504] = 1351, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, [1508] = 1508, - [1509] = 1509, - [1510] = 1510, + [1509] = 1507, + [1510] = 1496, [1511] = 1511, [1512] = 1512, - [1513] = 1512, - [1514] = 1485, - [1515] = 1500, - [1516] = 1516, - [1517] = 1511, - [1518] = 1508, - [1519] = 1509, - [1520] = 1492, - [1521] = 1516, + [1513] = 1497, + [1514] = 1514, + [1515] = 1515, + [1516] = 1515, + [1517] = 1517, + [1518] = 1518, + [1519] = 1505, + [1520] = 1506, + [1521] = 1514, [1522] = 1522, - [1523] = 1523, + [1523] = 1502, [1524] = 1524, [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1337, - [1529] = 1529, - [1530] = 1530, + [1526] = 1498, + [1527] = 1522, + [1528] = 1512, + [1529] = 1525, + [1530] = 1500, [1531] = 1531, - [1532] = 1532, - [1533] = 1531, - [1534] = 1534, + [1532] = 1501, + [1533] = 1511, + [1534] = 1517, [1535] = 1535, [1536] = 1536, [1537] = 1537, [1538] = 1538, [1539] = 1539, - [1540] = 1540, + [1540] = 1354, [1541] = 1541, [1542] = 1542, - [1543] = 1542, + [1543] = 1543, [1544] = 1544, [1545] = 1545, - [1546] = 1545, + [1546] = 1546, [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1545, + [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1534, + [1555] = 1555, [1556] = 1556, - [1557] = 1348, - [1558] = 1558, + [1557] = 1557, + [1558] = 1552, [1559] = 1559, - [1560] = 1559, - [1561] = 1561, - [1562] = 1527, - [1563] = 1532, - [1564] = 1538, - [1565] = 1337, + [1560] = 1560, + [1561] = 1537, + [1562] = 1562, + [1563] = 1548, + [1564] = 1541, + [1565] = 1565, [1566] = 1566, [1567] = 1567, - [1568] = 1568, + [1568] = 1548, [1569] = 1569, - [1570] = 1570, - [1571] = 1571, + [1570] = 1351, + [1571] = 1543, [1572] = 1572, [1573] = 1573, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, + [1574] = 1546, + [1575] = 1547, + [1576] = 1559, [1577] = 1577, [1578] = 1578, [1579] = 1579, [1580] = 1580, - [1581] = 1579, - [1582] = 1576, - [1583] = 1569, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, [1584] = 1584, - [1585] = 1573, + [1585] = 1354, [1586] = 1586, [1587] = 1587, [1588] = 1588, [1589] = 1589, [1590] = 1590, [1591] = 1591, - [1592] = 1580, + [1592] = 1592, [1593] = 1593, - [1594] = 1594, + [1594] = 1351, [1595] = 1595, - [1596] = 1348, + [1596] = 1596, [1597] = 1597, - [1598] = 1594, + [1598] = 1598, [1599] = 1599, - [1600] = 1586, - [1601] = 1584, - [1602] = 1597, - [1603] = 1603, + [1600] = 1600, + [1601] = 1601, + [1602] = 1580, + [1603] = 1586, [1604] = 1604, - [1605] = 1587, + [1605] = 1605, [1606] = 1606, [1607] = 1607, - [1608] = 1608, - [1609] = 1571, - [1610] = 1590, - [1611] = 1588, + [1608] = 1583, + [1609] = 1609, + [1610] = 1579, + [1611] = 1578, [1612] = 1612, [1613] = 1613, - [1614] = 1614, - [1615] = 1615, - [1616] = 1616, + [1614] = 1604, + [1615] = 1607, + [1616] = 1613, [1617] = 1617, - [1618] = 1618, - [1619] = 1619, + [1618] = 1612, + [1619] = 1595, [1620] = 1620, - [1621] = 1621, - [1622] = 1622, - [1623] = 1623, + [1621] = 1584, + [1622] = 1593, + [1623] = 1596, [1624] = 1624, - [1625] = 1613, + [1625] = 1625, [1626] = 1626, - [1627] = 1612, + [1627] = 1627, [1628] = 1628, [1629] = 1629, [1630] = 1630, @@ -5187,139 +5200,139 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1624, + [1636] = 1636, [1637] = 1637, [1638] = 1638, [1639] = 1639, [1640] = 1640, - [1641] = 1635, - [1642] = 1640, - [1643] = 1637, - [1644] = 1620, + [1641] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1631, [1645] = 1645, [1646] = 1646, [1647] = 1647, - [1648] = 1626, - [1649] = 1646, + [1648] = 1648, + [1649] = 1636, [1650] = 1650, - [1651] = 1639, - [1652] = 1623, - [1653] = 1348, + [1651] = 1651, + [1652] = 1652, + [1653] = 1653, [1654] = 1654, - [1655] = 1619, + [1655] = 1632, [1656] = 1656, [1657] = 1657, - [1658] = 1658, - [1659] = 1650, - [1660] = 1647, + [1658] = 1657, + [1659] = 1659, + [1660] = 1629, [1661] = 1661, - [1662] = 1645, - [1663] = 1663, - [1664] = 1616, - [1665] = 1665, - [1666] = 1615, - [1667] = 1667, - [1668] = 1656, + [1662] = 1662, + [1663] = 1635, + [1664] = 1650, + [1665] = 1652, + [1666] = 1666, + [1667] = 1646, + [1668] = 1643, [1669] = 1669, - [1670] = 1614, - [1671] = 1671, - [1672] = 1672, + [1670] = 1670, + [1671] = 1354, + [1672] = 1637, [1673] = 1673, - [1674] = 1674, - [1675] = 1638, - [1676] = 1632, - [1677] = 1677, - [1678] = 1631, - [1679] = 1679, - [1680] = 1661, - [1681] = 1615, - [1682] = 1673, - [1683] = 1683, - [1684] = 1663, - [1685] = 1657, - [1686] = 1679, - [1687] = 1677, - [1688] = 1669, - [1689] = 1683, - [1690] = 1690, - [1691] = 1628, - [1692] = 1622, - [1693] = 1667, - [1694] = 1633, + [1674] = 1630, + [1675] = 1675, + [1676] = 1659, + [1677] = 1627, + [1678] = 1661, + [1679] = 1666, + [1680] = 1680, + [1681] = 1681, + [1682] = 1624, + [1683] = 1670, + [1684] = 1648, + [1685] = 1685, + [1686] = 1681, + [1687] = 1639, + [1688] = 1656, + [1689] = 1680, + [1690] = 1685, + [1691] = 1653, + [1692] = 1692, + [1693] = 1634, + [1694] = 1632, [1695] = 1695, - [1696] = 1673, - [1697] = 1618, - [1698] = 1672, - [1699] = 1658, - [1700] = 1628, - [1701] = 1617, - [1702] = 1674, - [1703] = 1621, - [1704] = 1671, - [1705] = 1705, + [1696] = 1696, + [1697] = 1696, + [1698] = 1638, + [1699] = 1699, + [1700] = 1700, + [1701] = 1673, + [1702] = 1645, + [1703] = 1675, + [1704] = 1640, + [1705] = 1650, [1706] = 1706, - [1707] = 1707, - [1708] = 1707, - [1709] = 1139, - [1710] = 1710, - [1711] = 1711, - [1712] = 1712, - [1713] = 1713, - [1714] = 1714, - [1715] = 1711, - [1716] = 1716, - [1717] = 1707, - [1718] = 1718, + [1707] = 1651, + [1708] = 1636, + [1709] = 1633, + [1710] = 1625, + [1711] = 1654, + [1712] = 1647, + [1713] = 1669, + [1714] = 1699, + [1715] = 1706, + [1716] = 1695, + [1717] = 1717, + [1718] = 1148, [1719] = 1719, [1720] = 1720, [1721] = 1721, [1722] = 1722, [1723] = 1723, [1724] = 1724, - [1725] = 1135, - [1726] = 1134, + [1725] = 1724, + [1726] = 1726, [1727] = 1727, - [1728] = 1710, - [1729] = 1729, - [1730] = 1710, - [1731] = 1723, + [1728] = 1728, + [1729] = 1723, + [1730] = 1730, + [1731] = 1731, [1732] = 1732, [1733] = 1733, [1734] = 1734, [1735] = 1735, [1736] = 1736, [1737] = 1737, - [1738] = 1716, - [1739] = 1739, - [1740] = 1740, - [1741] = 1150, - [1742] = 1141, - [1743] = 1718, - [1744] = 1740, - [1745] = 1745, - [1746] = 1735, + [1738] = 1738, + [1739] = 1143, + [1740] = 1145, + [1741] = 1723, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1726, + [1746] = 1730, [1747] = 1747, [1748] = 1748, [1749] = 1749, - [1750] = 1720, - [1751] = 1736, - [1752] = 1752, - [1753] = 1151, - [1754] = 1716, - [1755] = 1755, - [1756] = 1756, - [1757] = 1757, + [1750] = 1750, + [1751] = 1751, + [1752] = 1724, + [1753] = 1753, + [1754] = 1160, + [1755] = 1720, + [1756] = 1158, + [1757] = 1749, [1758] = 1758, [1759] = 1759, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1763, + [1760] = 1753, + [1761] = 1726, + [1762] = 1719, + [1763] = 1742, [1764] = 1764, - [1765] = 1765, + [1765] = 1764, [1766] = 1766, [1767] = 1767, - [1768] = 1764, + [1768] = 1146, [1769] = 1769, [1770] = 1770, [1771] = 1771, @@ -5327,10 +5340,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1773] = 1773, [1774] = 1774, [1775] = 1775, - [1776] = 1761, + [1776] = 1776, [1777] = 1777, - [1778] = 1765, - [1779] = 1769, + [1778] = 1778, + [1779] = 1779, [1780] = 1780, [1781] = 1781, [1782] = 1782, @@ -5338,91 +5351,91 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1784] = 1784, [1785] = 1785, [1786] = 1786, - [1787] = 1781, - [1788] = 1788, + [1787] = 1785, + [1788] = 1786, [1789] = 1789, [1790] = 1790, [1791] = 1791, [1792] = 1792, - [1793] = 1774, + [1793] = 1772, [1794] = 1794, - [1795] = 1786, - [1796] = 1780, - [1797] = 1771, + [1795] = 1779, + [1796] = 1796, + [1797] = 1797, [1798] = 1798, - [1799] = 1785, + [1799] = 1775, [1800] = 1800, - [1801] = 1762, - [1802] = 1767, - [1803] = 1760, - [1804] = 1804, - [1805] = 1774, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, + [1804] = 1779, + [1805] = 1805, [1806] = 1806, - [1807] = 1807, - [1808] = 1769, - [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] = 1758, - [1823] = 1823, + [1807] = 1796, + [1808] = 1808, + [1809] = 1770, + [1810] = 1810, + [1811] = 1800, + [1812] = 1802, + [1813] = 1783, + [1814] = 1782, + [1815] = 1815, + [1816] = 1816, + [1817] = 1791, + [1818] = 1777, + [1819] = 1806, + [1820] = 1786, + [1821] = 1772, + [1822] = 1816, + [1823] = 1798, [1824] = 1824, - [1825] = 1825, - [1826] = 1780, + [1825] = 1791, + [1826] = 1773, [1827] = 1827, - [1828] = 1783, - [1829] = 1762, - [1830] = 1814, - [1831] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1816, [1832] = 1832, [1833] = 1833, - [1834] = 1760, - [1835] = 1775, + [1834] = 1834, + [1835] = 1816, [1836] = 1836, - [1837] = 1837, + [1837] = 1791, [1838] = 1838, - [1839] = 1839, - [1840] = 1811, - [1841] = 1772, + [1839] = 1779, + [1840] = 1840, + [1841] = 1824, [1842] = 1842, [1843] = 1843, - [1844] = 1800, - [1845] = 1760, - [1846] = 1846, + [1844] = 1786, + [1845] = 1845, + [1846] = 1834, [1847] = 1847, - [1848] = 1769, - [1849] = 1774, - [1850] = 1813, - [1851] = 1851, + [1848] = 1848, + [1849] = 1849, + [1850] = 1794, + [1851] = 1789, [1852] = 1833, - [1853] = 1762, - [1854] = 1854, + [1853] = 1853, + [1854] = 1792, [1855] = 1855, [1856] = 1856, - [1857] = 1857, + [1857] = 1801, [1858] = 1858, - [1859] = 1859, + [1859] = 1848, [1860] = 1860, - [1861] = 1861, + [1861] = 1781, [1862] = 1862, [1863] = 1863, - [1864] = 1864, - [1865] = 1865, - [1866] = 1866, + [1864] = 1829, + [1865] = 1774, + [1866] = 1810, [1867] = 1867, [1868] = 1868, [1869] = 1869, [1870] = 1870, - [1871] = 574, + [1871] = 1871, [1872] = 1872, [1873] = 1873, [1874] = 1874, @@ -5436,31 +5449,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1882] = 1882, [1883] = 1883, [1884] = 1884, - [1885] = 1863, + [1885] = 1884, [1886] = 1886, [1887] = 1887, - [1888] = 1862, + [1888] = 1888, [1889] = 1889, [1890] = 1890, [1891] = 1891, [1892] = 1892, [1893] = 1893, - [1894] = 1862, + [1894] = 1894, [1895] = 1895, - [1896] = 1863, + [1896] = 1896, [1897] = 1897, [1898] = 1898, - [1899] = 571, + [1899] = 1899, [1900] = 1900, [1901] = 1901, [1902] = 1902, [1903] = 1903, [1904] = 1904, - [1905] = 1905, - [1906] = 1863, + [1905] = 1871, + [1906] = 1906, [1907] = 1907, [1908] = 1908, - [1909] = 1862, + [1909] = 1909, [1910] = 1910, [1911] = 1911, [1912] = 1912, @@ -5472,10 +5485,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1918] = 1918, [1919] = 1919, [1920] = 1920, - [1921] = 1898, + [1921] = 1921, [1922] = 1922, - [1923] = 1881, - [1924] = 1861, + [1923] = 1923, + [1924] = 1924, [1925] = 1925, [1926] = 1926, [1927] = 1927, @@ -5484,210 +5497,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1930] = 1930, [1931] = 1931, [1932] = 1932, - [1933] = 1933, + [1933] = 1909, [1934] = 1934, - [1935] = 1935, + [1935] = 1927, [1936] = 1936, [1937] = 1937, - [1938] = 1865, + [1938] = 1938, [1939] = 1939, [1940] = 1940, [1941] = 1941, - [1942] = 1942, + [1942] = 1898, [1943] = 1943, - [1944] = 1858, + [1944] = 1896, [1945] = 1945, [1946] = 1946, [1947] = 1947, [1948] = 1948, - [1949] = 1873, - [1950] = 1875, - [1951] = 1951, - [1952] = 1876, - [1953] = 1953, + [1949] = 1874, + [1950] = 1950, + [1951] = 1919, + [1952] = 1952, + [1953] = 1906, [1954] = 1954, - [1955] = 1856, - [1956] = 1877, - [1957] = 1878, + [1955] = 1955, + [1956] = 1956, + [1957] = 1915, [1958] = 1958, [1959] = 1959, [1960] = 1960, - [1961] = 1942, + [1961] = 1929, [1962] = 1962, [1963] = 1963, [1964] = 1964, - [1965] = 1965, - [1966] = 1966, - [1967] = 1891, + [1965] = 1903, + [1966] = 1956, + [1967] = 1907, [1968] = 1968, [1969] = 1969, [1970] = 1970, [1971] = 1971, [1972] = 1972, - [1973] = 1900, - [1974] = 1974, + [1973] = 1973, + [1974] = 1904, [1975] = 1975, [1976] = 1976, - [1977] = 1977, - [1978] = 1907, - [1979] = 1910, - [1980] = 1980, + [1977] = 1922, + [1978] = 1958, + [1979] = 1970, + [1980] = 1971, [1981] = 1981, [1982] = 1982, - [1983] = 1911, - [1984] = 1912, - [1985] = 1919, - [1986] = 1986, + [1983] = 1983, + [1984] = 1984, + [1985] = 1983, + [1986] = 1871, [1987] = 1987, - [1988] = 1965, - [1989] = 1926, - [1990] = 1927, - [1991] = 1941, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, [1992] = 1992, [1993] = 1993, [1994] = 1994, - [1995] = 1943, + [1995] = 1869, [1996] = 1996, [1997] = 1997, [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 1965, + [1999] = 1991, + [2000] = 1997, + [2001] = 2001, [2002] = 2002, - [2003] = 1998, - [2004] = 2004, - [2005] = 1958, - [2006] = 2006, + [2003] = 2003, + [2004] = 1960, + [2005] = 1937, + [2006] = 1924, [2007] = 2007, - [2008] = 2008, + [2008] = 1928, [2009] = 2009, [2010] = 2010, - [2011] = 1965, - [2012] = 2012, + [2011] = 1867, + [2012] = 1894, [2013] = 2013, - [2014] = 1863, - [2015] = 1925, - [2016] = 1862, - [2017] = 1992, - [2018] = 1862, - [2019] = 1993, - [2020] = 2020, - [2021] = 2009, - [2022] = 2022, - [2023] = 2006, + [2014] = 2014, + [2015] = 2015, + [2016] = 580, + [2017] = 2017, + [2018] = 1889, + [2019] = 585, + [2020] = 1924, + [2021] = 2021, + [2022] = 1928, + [2023] = 2015, [2024] = 2024, - [2025] = 2025, - [2026] = 2007, - [2027] = 1863, - [2028] = 2012, - [2029] = 1997, - [2030] = 2022, - [2031] = 2025, + [2025] = 1924, + [2026] = 2026, + [2027] = 2027, + [2028] = 2024, + [2029] = 1928, + [2030] = 2030, + [2031] = 1924, [2032] = 2032, [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 1987, - [2037] = 2033, + [2034] = 2001, + [2035] = 1928, + [2036] = 2036, + [2037] = 1993, [2038] = 2038, [2039] = 2039, - [2040] = 2040, + [2040] = 1959, [2041] = 2041, [2042] = 2042, - [2043] = 2035, - [2044] = 2044, + [2043] = 2043, + [2044] = 2032, [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 1975, + [2046] = 1873, + [2047] = 1939, + [2048] = 2048, [2049] = 2049, - [2050] = 2050, + [2050] = 1994, [2051] = 2051, [2052] = 2052, - [2053] = 1892, + [2053] = 2053, [2054] = 2054, [2055] = 2055, [2056] = 2056, [2057] = 2057, - [2058] = 2047, + [2058] = 1899, [2059] = 2059, - [2060] = 2060, + [2060] = 1954, [2061] = 2061, [2062] = 2062, - [2063] = 2062, - [2064] = 2064, - [2065] = 2032, + [2063] = 2063, + [2064] = 1870, + [2065] = 2065, [2066] = 2066, - [2067] = 1982, - [2068] = 1869, - [2069] = 2064, - [2070] = 2066, - [2071] = 2071, - [2072] = 1998, - [2073] = 1880, - [2074] = 2074, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 1928, + [2071] = 1897, + [2072] = 1871, + [2073] = 1914, + [2074] = 1916, [2075] = 2075, - [2076] = 1857, + [2076] = 2076, [2077] = 2077, [2078] = 2078, - [2079] = 2079, - [2080] = 1901, - [2081] = 2000, - [2082] = 2075, - [2083] = 1903, - [2084] = 2077, - [2085] = 2085, - [2086] = 1948, - [2087] = 1884, - [2088] = 2088, - [2089] = 2089, - [2090] = 1963, - [2091] = 2091, - [2092] = 1969, - [2093] = 2093, - [2094] = 1855, + [2079] = 1996, + [2080] = 2080, + [2081] = 2081, + [2082] = 1950, + [2083] = 2083, + [2084] = 2084, + [2085] = 1973, + [2086] = 1924, + [2087] = 2033, + [2088] = 1891, + [2089] = 1984, + [2090] = 2009, + [2091] = 1990, + [2092] = 1901, + [2093] = 1868, + [2094] = 2094, [2095] = 2095, - [2096] = 2096, - [2097] = 2020, + [2096] = 1998, + [2097] = 1884, [2098] = 2098, - [2099] = 2099, - [2100] = 2034, - [2101] = 2098, - [2102] = 1994, + [2099] = 2045, + [2100] = 2013, + [2101] = 2021, + [2102] = 2026, [2103] = 2103, - [2104] = 1999, - [2105] = 2010, - [2106] = 2008, + [2104] = 2104, + [2105] = 2041, + [2106] = 2106, [2107] = 2107, [2108] = 2108, [2109] = 2109, - [2110] = 2110, + [2110] = 2075, [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2107, + [2112] = 2057, + [2113] = 2055, + [2114] = 1890, + [2115] = 2059, + [2116] = 1923, + [2117] = 2106, + [2118] = 2108, [2119] = 2119, [2120] = 2120, [2121] = 2121, [2122] = 2122, [2123] = 2123, - [2124] = 2115, + [2124] = 2124, [2125] = 2125, - [2126] = 2112, + [2126] = 2126, [2127] = 2127, - [2128] = 2128, + [2128] = 2120, [2129] = 2129, - [2130] = 2116, + [2130] = 2130, [2131] = 2131, - [2132] = 2128, + [2132] = 2132, [2133] = 2133, [2134] = 2134, - [2135] = 2129, - [2136] = 2134, + [2135] = 2132, + [2136] = 2136, [2137] = 2137, [2138] = 2138, [2139] = 2139, @@ -5695,11 +5708,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2141] = 2141, [2142] = 2142, [2143] = 2143, - [2144] = 2120, - [2145] = 2141, + [2144] = 2144, + [2145] = 2145, [2146] = 2146, - [2147] = 2121, - [2148] = 2143, + [2147] = 2119, + [2148] = 2148, [2149] = 2149, [2150] = 2150, [2151] = 2151, @@ -5712,31 +5725,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2158] = 2158, [2159] = 2159, [2160] = 2160, - [2161] = 2127, + [2161] = 2161, [2162] = 2162, [2163] = 2163, - [2164] = 2164, + [2164] = 2134, [2165] = 2165, [2166] = 2166, - [2167] = 2122, + [2167] = 2167, [2168] = 2168, [2169] = 2169, [2170] = 2170, [2171] = 2171, - [2172] = 2119, - [2173] = 2140, - [2174] = 2146, + [2172] = 2168, + [2173] = 2173, + [2174] = 2174, [2175] = 2175, [2176] = 2176, [2177] = 2177, [2178] = 2178, [2179] = 2179, - [2180] = 2117, + [2180] = 2180, [2181] = 2181, [2182] = 2182, - [2183] = 2183, - [2184] = 2184, - [2185] = 2114, + [2183] = 1581, + [2184] = 2167, + [2185] = 2185, [2186] = 2186, [2187] = 2187, [2188] = 2188, @@ -5745,183 +5758,183 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2191] = 2191, [2192] = 2192, [2193] = 2193, - [2194] = 2194, - [2195] = 2195, - [2196] = 2113, + [2194] = 2148, + [2195] = 2122, + [2196] = 2121, [2197] = 2197, - [2198] = 2187, - [2199] = 2176, - [2200] = 2170, + [2198] = 2198, + [2199] = 2199, + [2200] = 2174, [2201] = 2201, - [2202] = 2175, - [2203] = 2177, - [2204] = 2179, - [2205] = 2181, - [2206] = 2182, - [2207] = 2207, + [2202] = 2202, + [2203] = 2203, + [2204] = 2204, + [2205] = 2205, + [2206] = 2169, + [2207] = 2175, [2208] = 2208, [2209] = 2209, - [2210] = 2184, + [2210] = 2177, [2211] = 2211, - [2212] = 2111, - [2213] = 2188, + [2212] = 2209, + [2213] = 2213, [2214] = 2214, - [2215] = 2110, - [2216] = 2157, - [2217] = 2137, + [2215] = 2189, + [2216] = 2205, + [2217] = 2217, [2218] = 2218, - [2219] = 2109, - [2220] = 2108, - [2221] = 2191, - [2222] = 2192, - [2223] = 2193, - [2224] = 2142, - [2225] = 2194, - [2226] = 2226, - [2227] = 2227, - [2228] = 2168, - [2229] = 2171, - [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [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] = 2211, - [2250] = 2186, - [2251] = 2218, - [2252] = 1595, + [2219] = 2204, + [2220] = 2173, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 2178, + [2225] = 2214, + [2226] = 2211, + [2227] = 2203, + [2228] = 2228, + [2229] = 2229, + [2230] = 2171, + [2231] = 2166, + [2232] = 2165, + [2233] = 2163, + [2234] = 2202, + [2235] = 2208, + [2236] = 871, + [2237] = 2237, + [2238] = 2159, + [2239] = 2199, + [2240] = 2240, + [2241] = 2241, + [2242] = 2153, + [2243] = 2151, + [2244] = 2150, + [2245] = 899, + [2246] = 2246, + [2247] = 902, + [2248] = 2193, + [2249] = 2161, + [2250] = 2192, + [2251] = 2251, + [2252] = 1028, [2253] = 2253, - [2254] = 2123, - [2255] = 2255, + [2254] = 2187, + [2255] = 593, [2256] = 2256, - [2257] = 2227, - [2258] = 2245, - [2259] = 2253, + [2257] = 2257, + [2258] = 2221, + [2259] = 2222, [2260] = 2260, - [2261] = 2244, + [2261] = 2261, [2262] = 2262, [2263] = 2263, - [2264] = 2264, - [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] = 2133, - [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 941, - [2290] = 2290, - [2291] = 946, - [2292] = 2159, - [2293] = 2149, - [2294] = 2158, - [2295] = 2295, - [2296] = 2296, - [2297] = 2297, - [2298] = 2150, - [2299] = 2256, - [2300] = 2134, + [2264] = 2138, + [2265] = 2188, + [2266] = 2266, + [2267] = 2136, + [2268] = 2145, + [2269] = 2134, + [2270] = 2223, + [2271] = 2123, + [2272] = 2201, + [2273] = 2263, + [2274] = 2198, + [2275] = 2197, + [2276] = 2154, + [2277] = 2137, + [2278] = 2190, + [2279] = 2173, + [2280] = 2261, + [2281] = 2214, + [2282] = 2158, + [2283] = 2228, + [2284] = 2208, + [2285] = 2179, + [2286] = 2152, + [2287] = 2201, + [2288] = 2229, + [2289] = 2191, + [2290] = 2185, + [2291] = 2291, + [2292] = 2132, + [2293] = 2146, + [2294] = 2294, + [2295] = 2143, + [2296] = 2190, + [2297] = 2141, + [2298] = 2298, + [2299] = 2237, + [2300] = 2300, [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, + [2302] = 2218, + [2303] = 2217, + [2304] = 2123, + [2305] = 2160, + [2306] = 2306, + [2307] = 2144, + [2308] = 2125, + [2309] = 2309, + [2310] = 2310, + [2311] = 2157, + [2312] = 2119, + [2313] = 2291, + [2314] = 2130, + [2315] = 2124, + [2316] = 2178, [2317] = 2317, [2318] = 2318, - [2319] = 2319, - [2320] = 2320, - [2321] = 2321, - [2322] = 2322, - [2323] = 2323, - [2324] = 2324, - [2325] = 2325, - [2326] = 2326, - [2327] = 2327, - [2328] = 2328, - [2329] = 2324, + [2319] = 2126, + [2320] = 2185, + [2321] = 2149, + [2322] = 2129, + [2323] = 2133, + [2324] = 2156, + [2325] = 2139, + [2326] = 2294, + [2327] = 2241, + [2328] = 2155, + [2329] = 2329, [2330] = 2330, [2331] = 2331, [2332] = 2332, [2333] = 2333, - [2334] = 2317, + [2334] = 2334, [2335] = 2335, - [2336] = 2319, - [2337] = 2320, + [2336] = 2336, + [2337] = 2337, [2338] = 2338, - [2339] = 2322, + [2339] = 2339, [2340] = 2340, [2341] = 2341, - [2342] = 2322, + [2342] = 2342, [2343] = 2343, - [2344] = 2320, + [2344] = 2331, [2345] = 2345, - [2346] = 2324, - [2347] = 2319, - [2348] = 2317, - [2349] = 2317, - [2350] = 2319, - [2351] = 2320, - [2352] = 2352, - [2353] = 2324, + [2346] = 2346, + [2347] = 2347, + [2348] = 2330, + [2349] = 2349, + [2350] = 2350, + [2351] = 2351, + [2352] = 2340, + [2353] = 2353, [2354] = 2354, [2355] = 2355, - [2356] = 2356, + [2356] = 2343, [2357] = 2357, - [2358] = 2358, - [2359] = 2359, + [2358] = 2345, + [2359] = 2346, [2360] = 2360, - [2361] = 2361, + [2361] = 2330, [2362] = 2362, - [2363] = 2322, + [2363] = 2363, [2364] = 2364, [2365] = 2365, - [2366] = 2366, + [2366] = 2340, [2367] = 2367, - [2368] = 2368, - [2369] = 2369, - [2370] = 2370, + [2368] = 2343, + [2369] = 2345, + [2370] = 2346, [2371] = 2371, [2372] = 2372, [2373] = 2373, @@ -5936,186 +5949,201 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2382] = 2382, [2383] = 2383, [2384] = 2384, - [2385] = 2338, - [2386] = 2386, + [2385] = 2385, + [2386] = 2330, [2387] = 2387, [2388] = 2388, - [2389] = 2389, + [2389] = 2346, [2390] = 2390, [2391] = 2391, [2392] = 2392, [2393] = 2393, - [2394] = 2394, + [2394] = 2345, [2395] = 2395, - [2396] = 2396, + [2396] = 2343, [2397] = 2397, [2398] = 2398, - [2399] = 2399, + [2399] = 2387, [2400] = 2400, - [2401] = 2332, + [2401] = 2401, [2402] = 2402, - [2403] = 2403, - [2404] = 2404, + [2403] = 2340, + [2404] = 591, [2405] = 2405, - [2406] = 2406, + [2406] = 2362, [2407] = 2407, - [2408] = 2408, - [2409] = 2405, - [2410] = 2410, - [2411] = 2404, + [2408] = 2342, + [2409] = 2397, + [2410] = 2398, + [2411] = 2401, [2412] = 2412, - [2413] = 2394, - [2414] = 2320, + [2413] = 2413, + [2414] = 2414, [2415] = 2415, - [2416] = 2319, - [2417] = 2417, + [2416] = 2416, + [2417] = 2416, [2418] = 2418, - [2419] = 2317, + [2419] = 2340, [2420] = 2420, - [2421] = 2421, + [2421] = 2412, [2422] = 2422, [2423] = 2423, - [2424] = 2331, - [2425] = 2328, + [2424] = 2424, + [2425] = 2425, [2426] = 2426, - [2427] = 2333, - [2428] = 2399, - [2429] = 2314, + [2427] = 2427, + [2428] = 2428, + [2429] = 2429, [2430] = 2430, [2431] = 2431, [2432] = 2432, [2433] = 2433, - [2434] = 2434, + [2434] = 2392, [2435] = 2435, [2436] = 2436, - [2437] = 2422, - [2438] = 2438, - [2439] = 2398, + [2437] = 2437, + [2438] = 2433, + [2439] = 2391, [2440] = 2440, - [2441] = 2397, + [2441] = 2437, [2442] = 2442, - [2443] = 2396, - [2444] = 2433, + [2443] = 2443, + [2444] = 2444, [2445] = 2445, [2446] = 2446, - [2447] = 2447, + [2447] = 2333, [2448] = 2448, - [2449] = 2377, - [2450] = 2412, - [2451] = 2403, - [2452] = 2395, + [2449] = 2449, + [2450] = 2450, + [2451] = 2451, + [2452] = 2452, [2453] = 2453, - [2454] = 2338, - [2455] = 2383, + [2454] = 2453, + [2455] = 2455, [2456] = 2456, [2457] = 2457, [2458] = 2458, - [2459] = 564, + [2459] = 2459, [2460] = 2460, - [2461] = 2442, - [2462] = 2440, - [2463] = 2393, + [2461] = 2461, + [2462] = 2383, + [2463] = 2463, [2464] = 2464, [2465] = 2465, - [2466] = 2343, - [2467] = 2316, + [2466] = 2466, + [2467] = 2357, [2468] = 2468, [2469] = 2469, - [2470] = 2321, + [2470] = 2470, [2471] = 2471, - [2472] = 2386, - [2473] = 2323, + [2472] = 2472, + [2473] = 2473, [2474] = 2474, - [2475] = 2330, + [2475] = 2426, [2476] = 2476, - [2477] = 2322, - [2478] = 2352, - [2479] = 2318, - [2480] = 2391, + [2477] = 2334, + [2478] = 2478, + [2479] = 2479, + [2480] = 2480, [2481] = 2481, - [2482] = 2333, + [2482] = 2482, [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] = 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, + [2484] = 2482, + [2485] = 2485, + [2486] = 2382, + [2487] = 2465, + [2488] = 2340, + [2489] = 572, + [2490] = 2485, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2460, + [2495] = 2380, + [2496] = 2483, + [2497] = 2456, + [2498] = 2416, + [2499] = 2481, + [2500] = 2351, + [2501] = 2459, + [2502] = 2385, + [2503] = 2436, + [2504] = 2334, + [2505] = 2391, + [2506] = 2392, + [2507] = 2445, + [2508] = 2376, + [2509] = 2509, + [2510] = 2375, + [2511] = 2374, + [2512] = 2333, + [2513] = 2443, + [2514] = 2424, + [2515] = 2515, + [2516] = 2373, + [2517] = 2422, + [2518] = 2343, + [2519] = 2391, + [2520] = 2392, + [2521] = 2470, + [2522] = 2345, + [2523] = 2391, + [2524] = 2392, + [2525] = 2525, + [2526] = 2391, + [2527] = 2392, + [2528] = 2468, + [2529] = 2346, + [2530] = 2530, [2531] = 2531, - [2532] = 2388, - [2533] = 2531, - [2534] = 2534, - [2535] = 2362, - [2536] = 2341, - [2537] = 2332, - [2538] = 2392, - [2539] = 2400, - [2540] = 2361, - [2541] = 2360, - [2542] = 2389, - [2543] = 2456, + [2532] = 2480, + [2533] = 2471, + [2534] = 2461, + [2535] = 2474, + [2536] = 2536, + [2537] = 2420, + [2538] = 2427, + [2539] = 2365, + [2540] = 2349, + [2541] = 2330, + [2542] = 2379, + [2543] = 2457, [2544] = 2544, - [2545] = 2447, - [2546] = 2517, - [2547] = 2501, - [2548] = 2548, - [2549] = 2384, - [2550] = 2359, - [2551] = 2382, - [2552] = 2528, - [2553] = 2553, - [2554] = 2465, - [2555] = 2380, - [2556] = 2325, - [2557] = 2438, - [2558] = 2436, + [2545] = 2418, + [2546] = 2414, + [2547] = 2472, + [2548] = 2455, + [2549] = 2431, + [2550] = 2343, + [2551] = 2444, + [2552] = 2552, + [2553] = 2331, + [2554] = 2354, + [2555] = 2341, + [2556] = 2423, + [2557] = 2430, + [2558] = 2395, [2559] = 2390, - [2560] = 2560, - [2561] = 2373, - [2562] = 2446, - [2563] = 2354, - [2564] = 2534, + [2560] = 2515, + [2561] = 2480, + [2562] = 2471, + [2563] = 2407, + [2564] = 2345, + [2565] = 2371, + [2566] = 2525, + [2567] = 2491, + [2568] = 2346, + [2569] = 2367, + [2570] = 2372, + [2571] = 2440, + [2572] = 2415, + [2573] = 2425, + [2574] = 2473, + [2575] = 2364, + [2576] = 2384, + [2577] = 2393, + [2578] = 2450, + [2579] = 2476, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -14672,12 +14700,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [30] = {.lex_state = 1, .external_lex_state = 2}, [31] = {.lex_state = 1, .external_lex_state = 2}, [32] = {.lex_state = 1, .external_lex_state = 2}, - [33] = {.lex_state = 5, .external_lex_state = 2}, - [34] = {.lex_state = 5, .external_lex_state = 2}, + [33] = {.lex_state = 57, .external_lex_state = 2}, + [34] = {.lex_state = 57, .external_lex_state = 2}, [35] = {.lex_state = 5, .external_lex_state = 2}, [36] = {.lex_state = 5, .external_lex_state = 2}, [37] = {.lex_state = 5, .external_lex_state = 2}, - [38] = {.lex_state = 5, .external_lex_state = 2}, + [38] = {.lex_state = 57, .external_lex_state = 2}, [39] = {.lex_state = 5, .external_lex_state = 2}, [40] = {.lex_state = 5, .external_lex_state = 2}, [41] = {.lex_state = 5, .external_lex_state = 2}, @@ -14687,60 +14715,60 @@ 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 = 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 = 5, .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}, + [53] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 5, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, - [56] = {.lex_state = 57, .external_lex_state = 2}, + [56] = {.lex_state = 5, .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 = 57, .external_lex_state = 2}, - [61] = {.lex_state = 57, .external_lex_state = 2}, + [61] = {.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 = 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 = 5, .external_lex_state = 2}, + [71] = {.lex_state = 57, .external_lex_state = 2}, [72] = {.lex_state = 57, .external_lex_state = 2}, - [73] = {.lex_state = 57, .external_lex_state = 2}, + [73] = {.lex_state = 5, .external_lex_state = 2}, [74] = {.lex_state = 57, .external_lex_state = 2}, [75] = {.lex_state = 57, .external_lex_state = 2}, [76] = {.lex_state = 57, .external_lex_state = 2}, - [77] = {.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 = 5, .external_lex_state = 2}, - [80] = {.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}, - [82] = {.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}, - [85] = {.lex_state = 57, .external_lex_state = 2}, + [84] = {.lex_state = 5, .external_lex_state = 2}, + [85] = {.lex_state = 5, .external_lex_state = 2}, [86] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, - [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 5, .external_lex_state = 2}, + [88] = {.lex_state = 5, .external_lex_state = 2}, + [89] = {.lex_state = 57, .external_lex_state = 2}, + [90] = {.lex_state = 57, .external_lex_state = 2}, + [91] = {.lex_state = 57, .external_lex_state = 2}, + [92] = {.lex_state = 57, .external_lex_state = 2}, + [93] = {.lex_state = 57, .external_lex_state = 2}, + [94] = {.lex_state = 57, .external_lex_state = 2}, [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.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}, [99] = {.lex_state = 5, .external_lex_state = 2}, [100] = {.lex_state = 5, .external_lex_state = 2}, - [101] = {.lex_state = 5, .external_lex_state = 2}, + [101] = {.lex_state = 57, .external_lex_state = 2}, [102] = {.lex_state = 5, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, [104] = {.lex_state = 5, .external_lex_state = 2}, @@ -14818,12 +14846,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 6, .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}, + [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 = 5, .external_lex_state = 2}, + [184] = {.lex_state = 5, .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}, @@ -14833,15 +14861,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5, .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 = 1, .external_lex_state = 2}, - [199] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, [201] = {.lex_state = 5, .external_lex_state = 2}, - [202] = {.lex_state = 5, .external_lex_state = 2}, + [202] = {.lex_state = 1, .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}, @@ -14849,12 +14877,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 5, .external_lex_state = 2}, [208] = {.lex_state = 5, .external_lex_state = 2}, [209] = {.lex_state = 5, .external_lex_state = 2}, - [210] = {.lex_state = 1, .external_lex_state = 2}, - [211] = {.lex_state = 1, .external_lex_state = 2}, - [212] = {.lex_state = 1, .external_lex_state = 2}, - [213] = {.lex_state = 1, .external_lex_state = 2}, - [214] = {.lex_state = 1, .external_lex_state = 2}, - [215] = {.lex_state = 1, .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 = 1, .external_lex_state = 2}, [217] = {.lex_state = 1, .external_lex_state = 2}, [218] = {.lex_state = 1, .external_lex_state = 2}, @@ -14866,33 +14894,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1, .external_lex_state = 2}, + [227] = {.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 = 5, .external_lex_state = 2}, - [231] = {.lex_state = 5, .external_lex_state = 2}, - [232] = {.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 = 1, .external_lex_state = 2}, [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, - [235] = {.lex_state = 5, .external_lex_state = 2}, + [235] = {.lex_state = 1, .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}, - [239] = {.lex_state = 12, .external_lex_state = 2}, - [240] = {.lex_state = 4, .external_lex_state = 3}, - [241] = {.lex_state = 4, .external_lex_state = 3}, - [242] = {.lex_state = 4, .external_lex_state = 3}, - [243] = {.lex_state = 4, .external_lex_state = 3}, - [244] = {.lex_state = 4, .external_lex_state = 3}, - [245] = {.lex_state = 58, .external_lex_state = 2}, - [246] = {.lex_state = 58, .external_lex_state = 2}, - [247] = {.lex_state = 58, .external_lex_state = 2}, - [248] = {.lex_state = 58, .external_lex_state = 2}, - [249] = {.lex_state = 58, .external_lex_state = 2}, - [250] = {.lex_state = 58, .external_lex_state = 2}, - [251] = {.lex_state = 58, .external_lex_state = 2}, - [252] = {.lex_state = 58, .external_lex_state = 2}, - [253] = {.lex_state = 58, .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}, + [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 = 5, .external_lex_state = 2}, + [245] = {.lex_state = 5, .external_lex_state = 2}, + [246] = {.lex_state = 5, .external_lex_state = 2}, + [247] = {.lex_state = 5, .external_lex_state = 2}, + [248] = {.lex_state = 4, .external_lex_state = 3}, + [249] = {.lex_state = 4, .external_lex_state = 3}, + [250] = {.lex_state = 4, .external_lex_state = 3}, + [251] = {.lex_state = 4, .external_lex_state = 3}, + [252] = {.lex_state = 4, .external_lex_state = 3}, + [253] = {.lex_state = 12, .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}, @@ -14956,7 +14984,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [314] = {.lex_state = 58, .external_lex_state = 2}, [315] = {.lex_state = 58, .external_lex_state = 2}, [316] = {.lex_state = 58, .external_lex_state = 2}, - [317] = {.lex_state = 58, .external_lex_state = 2}, + [317] = {.lex_state = 5, .external_lex_state = 2}, [318] = {.lex_state = 58, .external_lex_state = 2}, [319] = {.lex_state = 58, .external_lex_state = 2}, [320] = {.lex_state = 58, .external_lex_state = 2}, @@ -15002,7 +15030,7 @@ 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 = 58, .external_lex_state = 2}, + [363] = {.lex_state = 5, .external_lex_state = 2}, [364] = {.lex_state = 58, .external_lex_state = 2}, [365] = {.lex_state = 5, .external_lex_state = 2}, [366] = {.lex_state = 58, .external_lex_state = 2}, @@ -15030,7 +15058,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 = 5, .external_lex_state = 2}, + [391] = {.lex_state = 58, .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}, @@ -15108,7 +15136,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 = 5, .external_lex_state = 2}, + [469] = {.lex_state = 58, .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 +15148,16 @@ 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 = 12, .external_lex_state = 2}, - [482] = {.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 = 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 = 5, .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 = 12, .external_lex_state = 2}, [491] = {.lex_state = 12, .external_lex_state = 2}, [492] = {.lex_state = 12, .external_lex_state = 2}, [493] = {.lex_state = 12, .external_lex_state = 2}, @@ -15140,135 +15168,135 @@ 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 = 13, .external_lex_state = 2}, - [502] = {.lex_state = 13, .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}, + [501] = {.lex_state = 12, .external_lex_state = 2}, + [502] = {.lex_state = 12, .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 = 12, .external_lex_state = 2}, - [507] = {.lex_state = 13, .external_lex_state = 2}, - [508] = {.lex_state = 13, .external_lex_state = 2}, - [509] = {.lex_state = 13, .external_lex_state = 2}, + [507] = {.lex_state = 5, .external_lex_state = 2}, + [508] = {.lex_state = 5, .external_lex_state = 2}, + [509] = {.lex_state = 5, .external_lex_state = 2}, [510] = {.lex_state = 13, .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}, + [513] = {.lex_state = 12, .external_lex_state = 2}, + [514] = {.lex_state = 13, .external_lex_state = 2}, [515] = {.lex_state = 12, .external_lex_state = 2}, - [516] = {.lex_state = 12, .external_lex_state = 2}, + [516] = {.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}, + [519] = {.lex_state = 12, .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}, + [523] = {.lex_state = 12, .external_lex_state = 2}, [524] = {.lex_state = 13, .external_lex_state = 2}, - [525] = {.lex_state = 12, .external_lex_state = 2}, + [525] = {.lex_state = 13, .external_lex_state = 2}, [526] = {.lex_state = 13, .external_lex_state = 2}, - [527] = {.lex_state = 13, .external_lex_state = 2}, + [527] = {.lex_state = 12, .external_lex_state = 2}, [528] = {.lex_state = 13, .external_lex_state = 2}, [529] = {.lex_state = 13, .external_lex_state = 2}, [530] = {.lex_state = 13, .external_lex_state = 2}, - [531] = {.lex_state = 13, .external_lex_state = 2}, - [532] = {.lex_state = 13, .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 = 13, .external_lex_state = 2}, + [534] = {.lex_state = 12, .external_lex_state = 2}, [535] = {.lex_state = 12, .external_lex_state = 2}, [536] = {.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}, + [537] = {.lex_state = 13, .external_lex_state = 2}, + [538] = {.lex_state = 13, .external_lex_state = 2}, + [539] = {.lex_state = 13, .external_lex_state = 2}, [540] = {.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 = 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}, - [550] = {.lex_state = 7, .external_lex_state = 3}, - [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 = 7, .external_lex_state = 3}, + [544] = {.lex_state = 13, .external_lex_state = 2}, + [545] = {.lex_state = 13, .external_lex_state = 2}, + [546] = {.lex_state = 13, .external_lex_state = 2}, + [547] = {.lex_state = 13, .external_lex_state = 2}, + [548] = {.lex_state = 13, .external_lex_state = 2}, + [549] = {.lex_state = 12, .external_lex_state = 2}, + [550] = {.lex_state = 12, .external_lex_state = 2}, + [551] = {.lex_state = 13, .external_lex_state = 2}, + [552] = {.lex_state = 13, .external_lex_state = 2}, + [553] = {.lex_state = 13, .external_lex_state = 2}, + [554] = {.lex_state = 5, .external_lex_state = 2}, [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 = 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}, + [558] = {.lex_state = 7, .external_lex_state = 3}, + [559] = {.lex_state = 7, .external_lex_state = 3}, + [560] = {.lex_state = 7, .external_lex_state = 3}, + [561] = {.lex_state = 7, .external_lex_state = 3}, + [562] = {.lex_state = 7, .external_lex_state = 3}, + [563] = {.lex_state = 7, .external_lex_state = 3}, + [564] = {.lex_state = 5, .external_lex_state = 2}, + [565] = {.lex_state = 11, .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}, + [567] = {.lex_state = 5, .external_lex_state = 2}, + [568] = {.lex_state = 7, .external_lex_state = 3}, [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}, + [573] = {.lex_state = 12, .external_lex_state = 2}, [574] = {.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 = 5, .external_lex_state = 2}, + [578] = {.lex_state = 5, .external_lex_state = 2}, + [579] = {.lex_state = 7, .external_lex_state = 3}, + [580] = {.lex_state = 12, .external_lex_state = 2}, + [581] = {.lex_state = 12, .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}, + [583] = {.lex_state = 5, .external_lex_state = 2}, + [584] = {.lex_state = 5, .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}, + [587] = {.lex_state = 12, .external_lex_state = 2}, [588] = {.lex_state = 5, .external_lex_state = 2}, - [589] = {.lex_state = 13, .external_lex_state = 2}, + [589] = {.lex_state = 12, .external_lex_state = 2}, [590] = {.lex_state = 5, .external_lex_state = 2}, - [591] = {.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 = 7, .external_lex_state = 3}, + [591] = {.lex_state = 12, .external_lex_state = 2}, + [592] = {.lex_state = 12, .external_lex_state = 2}, + [593] = {.lex_state = 12, .external_lex_state = 2}, + [594] = {.lex_state = 12, .external_lex_state = 2}, [595] = {.lex_state = 7, .external_lex_state = 3}, - [596] = {.lex_state = 7, .external_lex_state = 3}, - [597] = {.lex_state = 5, .external_lex_state = 2}, + [596] = {.lex_state = 5, .external_lex_state = 2}, + [597] = {.lex_state = 7, .external_lex_state = 3}, [598] = {.lex_state = 5, .external_lex_state = 2}, [599] = {.lex_state = 5, .external_lex_state = 2}, - [600] = {.lex_state = 5, .external_lex_state = 2}, - [601] = {.lex_state = 13, .external_lex_state = 2}, + [600] = {.lex_state = 13, .external_lex_state = 2}, + [601] = {.lex_state = 5, .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 = 13, .external_lex_state = 2}, + [604] = {.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 = 7, .external_lex_state = 3}, + [609] = {.lex_state = 13, .external_lex_state = 2}, + [610] = {.lex_state = 5, .external_lex_state = 2}, [611] = {.lex_state = 5, .external_lex_state = 2}, [612] = {.lex_state = 5, .external_lex_state = 2}, - [613] = {.lex_state = 5, .external_lex_state = 2}, - [614] = {.lex_state = 13, .external_lex_state = 2}, - [615] = {.lex_state = 13, .external_lex_state = 2}, + [613] = {.lex_state = 7, .external_lex_state = 3}, + [614] = {.lex_state = 7, .external_lex_state = 3}, + [615] = {.lex_state = 5, .external_lex_state = 2}, [616] = {.lex_state = 5, .external_lex_state = 2}, [617] = {.lex_state = 5, .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}, + [620] = {.lex_state = 5, .external_lex_state = 2}, [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 = 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}, - [628] = {.lex_state = 7, .external_lex_state = 3}, - [629] = {.lex_state = 7, .external_lex_state = 3}, + [622] = {.lex_state = 5, .external_lex_state = 2}, + [623] = {.lex_state = 5, .external_lex_state = 2}, + [624] = {.lex_state = 5, .external_lex_state = 2}, + [625] = {.lex_state = 5, .external_lex_state = 2}, + [626] = {.lex_state = 5, .external_lex_state = 2}, + [627] = {.lex_state = 5, .external_lex_state = 2}, + [628] = {.lex_state = 13, .external_lex_state = 2}, + [629] = {.lex_state = 5, .external_lex_state = 2}, [630] = {.lex_state = 7, .external_lex_state = 3}, [631] = {.lex_state = 7, .external_lex_state = 3}, [632] = {.lex_state = 7, .external_lex_state = 3}, @@ -15289,7 +15317,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [647] = {.lex_state = 7, .external_lex_state = 3}, [648] = {.lex_state = 7, .external_lex_state = 3}, [649] = {.lex_state = 7, .external_lex_state = 3}, - [650] = {.lex_state = 7, .external_lex_state = 3}, + [650] = {.lex_state = 5, .external_lex_state = 2}, [651] = {.lex_state = 7, .external_lex_state = 3}, [652] = {.lex_state = 7, .external_lex_state = 3}, [653] = {.lex_state = 7, .external_lex_state = 3}, @@ -15371,7 +15399,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 = 5, .external_lex_state = 2}, + [732] = {.lex_state = 7, .external_lex_state = 3}, [733] = {.lex_state = 7, .external_lex_state = 3}, [734] = {.lex_state = 7, .external_lex_state = 3}, [735] = {.lex_state = 7, .external_lex_state = 3}, @@ -15386,36 +15414,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [744] = {.lex_state = 7, .external_lex_state = 3}, [745] = {.lex_state = 7, .external_lex_state = 3}, [746] = {.lex_state = 7, .external_lex_state = 3}, - [747] = {.lex_state = 5, .external_lex_state = 2}, - [748] = {.lex_state = 5, .external_lex_state = 2}, - [749] = {.lex_state = 5, .external_lex_state = 2}, - [750] = {.lex_state = 5, .external_lex_state = 2}, - [751] = {.lex_state = 6, .external_lex_state = 2}, - [752] = {.lex_state = 3, .external_lex_state = 3}, - [753] = {.lex_state = 3, .external_lex_state = 3}, - [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 = 3, .external_lex_state = 3}, - [758] = {.lex_state = 2, .external_lex_state = 3}, - [759] = {.lex_state = 3, .external_lex_state = 3}, - [760] = {.lex_state = 3, .external_lex_state = 3}, + [747] = {.lex_state = 7, .external_lex_state = 3}, + [748] = {.lex_state = 7, .external_lex_state = 3}, + [749] = {.lex_state = 7, .external_lex_state = 3}, + [750] = {.lex_state = 7, .external_lex_state = 3}, + [751] = {.lex_state = 7, .external_lex_state = 3}, + [752] = {.lex_state = 7, .external_lex_state = 3}, + [753] = {.lex_state = 7, .external_lex_state = 3}, + [754] = {.lex_state = 7, .external_lex_state = 3}, + [755] = {.lex_state = 7, .external_lex_state = 3}, + [756] = {.lex_state = 5, .external_lex_state = 2}, + [757] = {.lex_state = 5, .external_lex_state = 2}, + [758] = {.lex_state = 5, .external_lex_state = 2}, + [759] = {.lex_state = 5, .external_lex_state = 2}, + [760] = {.lex_state = 6, .external_lex_state = 2}, [761] = {.lex_state = 3, .external_lex_state = 3}, [762] = {.lex_state = 3, .external_lex_state = 3}, - [763] = {.lex_state = 4, .external_lex_state = 3}, + [763] = {.lex_state = 3, .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 = 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 = 2, .external_lex_state = 3}, - [772] = {.lex_state = 2, .external_lex_state = 3}, + [765] = {.lex_state = 3, .external_lex_state = 3}, + [766] = {.lex_state = 3, .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 = 3, .external_lex_state = 3}, + [771] = {.lex_state = 3, .external_lex_state = 3}, + [772] = {.lex_state = 4, .external_lex_state = 3}, [773] = {.lex_state = 4, .external_lex_state = 3}, - [774] = {.lex_state = 4, .external_lex_state = 3}, + [774] = {.lex_state = 2, .external_lex_state = 3}, [775] = {.lex_state = 2, .external_lex_state = 3}, - [776] = {.lex_state = 2, .external_lex_state = 3}, + [776] = {.lex_state = 4, .external_lex_state = 3}, [777] = {.lex_state = 2, .external_lex_state = 3}, [778] = {.lex_state = 2, .external_lex_state = 3}, [779] = {.lex_state = 2, .external_lex_state = 3}, @@ -15423,12 +15451,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [781] = {.lex_state = 2, .external_lex_state = 3}, [782] = {.lex_state = 2, .external_lex_state = 3}, [783] = {.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}, + [784] = {.lex_state = 2, .external_lex_state = 3}, + [785] = {.lex_state = 4, .external_lex_state = 3}, + [786] = {.lex_state = 4, .external_lex_state = 3}, [787] = {.lex_state = 2, .external_lex_state = 3}, [788] = {.lex_state = 2, .external_lex_state = 3}, - [789] = {.lex_state = 3, .external_lex_state = 3}, + [789] = {.lex_state = 2, .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,157 +15468,157 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [798] = {.lex_state = 2, .external_lex_state = 3}, [799] = {.lex_state = 2, .external_lex_state = 3}, [800] = {.lex_state = 2, .external_lex_state = 3}, - [801] = {.lex_state = 2, .external_lex_state = 3}, + [801] = {.lex_state = 10, .external_lex_state = 3}, [802] = {.lex_state = 2, .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 = 4, .external_lex_state = 3}, - [809] = {.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}, + [808] = {.lex_state = 2, .external_lex_state = 3}, + [809] = {.lex_state = 2, .external_lex_state = 3}, + [810] = {.lex_state = 2, .external_lex_state = 3}, + [811] = {.lex_state = 2, .external_lex_state = 3}, + [812] = {.lex_state = 2, .external_lex_state = 3}, + [813] = {.lex_state = 3, .external_lex_state = 3}, + [814] = {.lex_state = 2, .external_lex_state = 3}, [815] = {.lex_state = 2, .external_lex_state = 3}, [816] = {.lex_state = 2, .external_lex_state = 3}, [817] = {.lex_state = 2, .external_lex_state = 3}, [818] = {.lex_state = 2, .external_lex_state = 3}, - [819] = {.lex_state = 4, .external_lex_state = 3}, + [819] = {.lex_state = 2, .external_lex_state = 3}, [820] = {.lex_state = 4, .external_lex_state = 3}, [821] = {.lex_state = 4, .external_lex_state = 3}, [822] = {.lex_state = 4, .external_lex_state = 3}, [823] = {.lex_state = 4, .external_lex_state = 3}, - [824] = {.lex_state = 4, .external_lex_state = 3}, + [824] = {.lex_state = 2, .external_lex_state = 3}, [825] = {.lex_state = 4, .external_lex_state = 3}, [826] = {.lex_state = 4, .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}, + [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 = 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}, + [836] = {.lex_state = 2, .external_lex_state = 3}, [837] = {.lex_state = 4, .external_lex_state = 3}, - [838] = {.lex_state = 2, .external_lex_state = 3}, + [838] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, + [842] = {.lex_state = 4, .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}, + [844] = {.lex_state = 2, .external_lex_state = 3}, + [845] = {.lex_state = 2, .external_lex_state = 3}, [846] = {.lex_state = 4, .external_lex_state = 3}, - [847] = {.lex_state = 4, .external_lex_state = 3}, + [847] = {.lex_state = 2, .external_lex_state = 3}, [848] = {.lex_state = 4, .external_lex_state = 3}, [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 = 2, .external_lex_state = 3}, + [852] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, - [857] = {.lex_state = 4, .external_lex_state = 3}, + [856] = {.lex_state = 4, .external_lex_state = 3}, + [857] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [863] = {.lex_state = 4, .external_lex_state = 3}, - [864] = {.lex_state = 4, .external_lex_state = 3}, - [865] = {.lex_state = 2, .external_lex_state = 3}, + [862] = {.lex_state = 4, .external_lex_state = 3}, + [863] = {.lex_state = 2, .external_lex_state = 3}, + [864] = {.lex_state = 2, .external_lex_state = 3}, + [865] = {.lex_state = 4, .external_lex_state = 3}, [866] = {.lex_state = 2, .external_lex_state = 3}, - [867] = {.lex_state = 2, .external_lex_state = 3}, + [867] = {.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}, + [870] = {.lex_state = 4, .external_lex_state = 3}, [871] = {.lex_state = 2, .external_lex_state = 3}, - [872] = {.lex_state = 2, .external_lex_state = 3}, - [873] = {.lex_state = 4, .external_lex_state = 3}, - [874] = {.lex_state = 4, .external_lex_state = 3}, + [872] = {.lex_state = 4, .external_lex_state = 3}, + [873] = {.lex_state = 2, .external_lex_state = 3}, + [874] = {.lex_state = 2, .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}, + [877] = {.lex_state = 2, .external_lex_state = 3}, + [878] = {.lex_state = 2, .external_lex_state = 3}, [879] = {.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}, + [883] = {.lex_state = 4, .external_lex_state = 3}, + [884] = {.lex_state = 2, .external_lex_state = 3}, [885] = {.lex_state = 4, .external_lex_state = 3}, - [886] = {.lex_state = 4, .external_lex_state = 3}, + [886] = {.lex_state = 2, .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}, - [890] = {.lex_state = 4, .external_lex_state = 3}, - [891] = {.lex_state = 2, .external_lex_state = 3}, + [890] = {.lex_state = 2, .external_lex_state = 3}, + [891] = {.lex_state = 4, .external_lex_state = 3}, [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 = 4, .external_lex_state = 3}, - [896] = {.lex_state = 4, .external_lex_state = 3}, - [897] = {.lex_state = 4, .external_lex_state = 3}, + [894] = {.lex_state = 2, .external_lex_state = 3}, + [895] = {.lex_state = 2, .external_lex_state = 3}, + [896] = {.lex_state = 2, .external_lex_state = 3}, + [897] = {.lex_state = 2, .external_lex_state = 3}, [898] = {.lex_state = 2, .external_lex_state = 3}, - [899] = {.lex_state = 4, .external_lex_state = 3}, + [899] = {.lex_state = 2, .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}, + [902] = {.lex_state = 2, .external_lex_state = 3}, + [903] = {.lex_state = 2, .external_lex_state = 3}, + [904] = {.lex_state = 2, .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}, + [906] = {.lex_state = 2, .external_lex_state = 3}, + [907] = {.lex_state = 2, .external_lex_state = 3}, + [908] = {.lex_state = 2, .external_lex_state = 3}, [909] = {.lex_state = 4, .external_lex_state = 3}, - [910] = {.lex_state = 4, .external_lex_state = 3}, + [910] = {.lex_state = 2, .external_lex_state = 3}, [911] = {.lex_state = 4, .external_lex_state = 3}, - [912] = {.lex_state = 4, .external_lex_state = 3}, + [912] = {.lex_state = 2, .external_lex_state = 3}, [913] = {.lex_state = 4, .external_lex_state = 3}, - [914] = {.lex_state = 4, .external_lex_state = 3}, + [914] = {.lex_state = 2, .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}, + [917] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, + [922] = {.lex_state = 4, .external_lex_state = 3}, [923] = {.lex_state = 4, .external_lex_state = 3}, - [924] = {.lex_state = 2, .external_lex_state = 3}, + [924] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, - [929] = {.lex_state = 4, .external_lex_state = 3}, + [929] = {.lex_state = 2, .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}, + [932] = {.lex_state = 4, .external_lex_state = 3}, [933] = {.lex_state = 4, .external_lex_state = 3}, [934] = {.lex_state = 4, .external_lex_state = 3}, - [935] = {.lex_state = 2, .external_lex_state = 3}, + [935] = {.lex_state = 4, .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 = 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}, + [941] = {.lex_state = 4, .external_lex_state = 3}, + [942] = {.lex_state = 4, .external_lex_state = 3}, [943] = {.lex_state = 4, .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}, + [946] = {.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 = 2, .external_lex_state = 3}, - [951] = {.lex_state = 2, .external_lex_state = 3}, + [948] = {.lex_state = 4, .external_lex_state = 3}, + [949] = {.lex_state = 4, .external_lex_state = 3}, + [950] = {.lex_state = 4, .external_lex_state = 3}, + [951] = {.lex_state = 4, .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}, @@ -15600,137 +15628,137 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 3}, + [961] = {.lex_state = 4, .external_lex_state = 3}, [962] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, + [966] = {.lex_state = 4, .external_lex_state = 3}, + [967] = {.lex_state = 4, .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}, + [970] = {.lex_state = 2, .external_lex_state = 3}, [971] = {.lex_state = 4, .external_lex_state = 3}, - [972] = {.lex_state = 4, .external_lex_state = 3}, - [973] = {.lex_state = 2, .external_lex_state = 3}, - [974] = {.lex_state = 2, .external_lex_state = 3}, + [972] = {.lex_state = 2, .external_lex_state = 3}, + [973] = {.lex_state = 4, .external_lex_state = 3}, + [974] = {.lex_state = 4, .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}, + [977] = {.lex_state = 2, .external_lex_state = 3}, [978] = {.lex_state = 4, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, + [979] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, + [984] = {.lex_state = 2, .external_lex_state = 3}, + [985] = {.lex_state = 4, .external_lex_state = 3}, [986] = {.lex_state = 4, .external_lex_state = 3}, - [987] = {.lex_state = 2, .external_lex_state = 3}, + [987] = {.lex_state = 4, .external_lex_state = 3}, [988] = {.lex_state = 4, .external_lex_state = 3}, - [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 4, .external_lex_state = 3}, + [989] = {.lex_state = 4, .external_lex_state = 3}, + [990] = {.lex_state = 2, .external_lex_state = 3}, [991] = {.lex_state = 4, .external_lex_state = 3}, [992] = {.lex_state = 4, .external_lex_state = 3}, [993] = {.lex_state = 4, .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}, - [998] = {.lex_state = 4, .external_lex_state = 3}, + [997] = {.lex_state = 2, .external_lex_state = 3}, + [998] = {.lex_state = 2, .external_lex_state = 3}, [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 = 2, .external_lex_state = 3}, - [1003] = {.lex_state = 4, .external_lex_state = 3}, + [1002] = {.lex_state = 4, .external_lex_state = 3}, + [1003] = {.lex_state = 2, .external_lex_state = 3}, [1004] = {.lex_state = 4, .external_lex_state = 3}, - [1005] = {.lex_state = 2, .external_lex_state = 3}, + [1005] = {.lex_state = 4, .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}, + [1009] = {.lex_state = 4, .external_lex_state = 3}, [1010] = {.lex_state = 4, .external_lex_state = 3}, - [1011] = {.lex_state = 2, .external_lex_state = 3}, + [1011] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, + [1014] = {.lex_state = 2, .external_lex_state = 3}, + [1015] = {.lex_state = 4, .external_lex_state = 3}, [1016] = {.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 = 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 = 2, .external_lex_state = 3}, - [1024] = {.lex_state = 2, .external_lex_state = 3}, - [1025] = {.lex_state = 2, .external_lex_state = 3}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, + [1022] = {.lex_state = 2, .external_lex_state = 3}, + [1023] = {.lex_state = 4, .external_lex_state = 3}, + [1024] = {.lex_state = 4, .external_lex_state = 3}, + [1025] = {.lex_state = 4, .external_lex_state = 3}, [1026] = {.lex_state = 4, .external_lex_state = 3}, [1027] = {.lex_state = 4, .external_lex_state = 3}, [1028] = {.lex_state = 2, .external_lex_state = 3}, - [1029] = {.lex_state = 2, .external_lex_state = 3}, + [1029] = {.lex_state = 4, .external_lex_state = 3}, [1030] = {.lex_state = 4, .external_lex_state = 3}, - [1031] = {.lex_state = 2, .external_lex_state = 3}, + [1031] = {.lex_state = 4, .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}, + [1035] = {.lex_state = 2, .external_lex_state = 3}, + [1036] = {.lex_state = 2, .external_lex_state = 3}, [1037] = {.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 = 2, .external_lex_state = 3}, - [1043] = {.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}, + [1041] = {.lex_state = 2, .external_lex_state = 3}, + [1042] = {.lex_state = 4, .external_lex_state = 3}, + [1043] = {.lex_state = 2, .external_lex_state = 3}, [1044] = {.lex_state = 4, .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}, + [1047] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, + [1050] = {.lex_state = 2, .external_lex_state = 3}, + [1051] = {.lex_state = 4, .external_lex_state = 3}, + [1052] = {.lex_state = 4, .external_lex_state = 3}, [1053] = {.lex_state = 4, .external_lex_state = 3}, - [1054] = {.lex_state = 2, .external_lex_state = 3}, + [1054] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, - [1061] = {.lex_state = 2, .external_lex_state = 3}, + [1060] = {.lex_state = 4, .external_lex_state = 3}, + [1061] = {.lex_state = 4, .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}, + [1066] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [1071] = {.lex_state = 2, .external_lex_state = 3}, + [1071] = {.lex_state = 4, .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}, + [1074] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [1080] = {.lex_state = 4, .external_lex_state = 3}, + [1079] = {.lex_state = 4, .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}, + [1082] = {.lex_state = 4, .external_lex_state = 3}, + [1083] = {.lex_state = 4, .external_lex_state = 3}, [1084] = {.lex_state = 4, .external_lex_state = 3}, - [1085] = {.lex_state = 4, .external_lex_state = 3}, + [1085] = {.lex_state = 2, .external_lex_state = 3}, [1086] = {.lex_state = 4, .external_lex_state = 3}, - [1087] = {.lex_state = 2, .external_lex_state = 3}, + [1087] = {.lex_state = 4, .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}, + [1091] = {.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}, @@ -15750,104 +15778,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1108] = {.lex_state = 4, .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}, + [1111] = {.lex_state = 4, .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}, + [1114] = {.lex_state = 2, .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 = 4, .external_lex_state = 3}, - [1121] = {.lex_state = 2, .external_lex_state = 3}, + [1116] = {.lex_state = 2, .external_lex_state = 3}, + [1117] = {.lex_state = 2, .external_lex_state = 3}, + [1118] = {.lex_state = 4, .external_lex_state = 3}, + [1119] = {.lex_state = 4, .external_lex_state = 3}, + [1120] = {.lex_state = 2, .external_lex_state = 3}, + [1121] = {.lex_state = 4, .external_lex_state = 3}, [1122] = {.lex_state = 4, .external_lex_state = 3}, - [1123] = {.lex_state = 4, .external_lex_state = 3}, + [1123] = {.lex_state = 2, .external_lex_state = 3}, [1124] = {.lex_state = 4, .external_lex_state = 3}, - [1125] = {.lex_state = 4, .external_lex_state = 3}, + [1125] = {.lex_state = 2, .external_lex_state = 3}, [1126] = {.lex_state = 4, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .external_lex_state = 3}, + [1127] = {.lex_state = 4, .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 = 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}, + [1130] = {.lex_state = 4, .external_lex_state = 3}, + [1131] = {.lex_state = 4, .external_lex_state = 3}, + [1132] = {.lex_state = 4, .external_lex_state = 3}, + [1133] = {.lex_state = 4, .external_lex_state = 3}, + [1134] = {.lex_state = 4, .external_lex_state = 3}, + [1135] = {.lex_state = 4, .external_lex_state = 3}, + [1136] = {.lex_state = 4, .external_lex_state = 3}, + [1137] = {.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}, + [1139] = {.lex_state = 4, .external_lex_state = 3}, + [1140] = {.lex_state = 7, .external_lex_state = 3}, + [1141] = {.lex_state = 2, .external_lex_state = 3}, [1142] = {.lex_state = 2, .external_lex_state = 3}, - [1143] = {.lex_state = 2, .external_lex_state = 3}, + [1143] = {.lex_state = 7, .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}, + [1145] = {.lex_state = 7, .external_lex_state = 3}, + [1146] = {.lex_state = 7, .external_lex_state = 3}, [1147] = {.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 = 7, .external_lex_state = 3}, - [1152] = {.lex_state = 2, .external_lex_state = 3}, + [1148] = {.lex_state = 7, .external_lex_state = 3}, + [1149] = {.lex_state = 2, .external_lex_state = 3}, + [1150] = {.lex_state = 5, .external_lex_state = 2}, + [1151] = {.lex_state = 2, .external_lex_state = 3}, + [1152] = {.lex_state = 7, .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 = 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}, - [1160] = {.lex_state = 5, .external_lex_state = 2}, + [1158] = {.lex_state = 7, .external_lex_state = 3}, + [1159] = {.lex_state = 2, .external_lex_state = 3}, + [1160] = {.lex_state = 7, .external_lex_state = 3}, [1161] = {.lex_state = 2, .external_lex_state = 3}, - [1162] = {.lex_state = 7, .external_lex_state = 3}, - [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 = 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 = 2, .external_lex_state = 3}, - [1172] = {.lex_state = 2, .external_lex_state = 3}, - [1173] = {.lex_state = 5, .external_lex_state = 2}, - [1174] = {.lex_state = 5, .external_lex_state = 2}, - [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1162] = {.lex_state = 2, .external_lex_state = 3}, + [1163] = {.lex_state = 2, .external_lex_state = 3}, + [1164] = {.lex_state = 2, .external_lex_state = 3}, + [1165] = {.lex_state = 2, .external_lex_state = 3}, + [1166] = {.lex_state = 5, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 3}, + [1171] = {.lex_state = 5, .external_lex_state = 2}, + [1172] = {.lex_state = 5, .external_lex_state = 2}, + [1173] = {.lex_state = 2, .external_lex_state = 3}, + [1174] = {.lex_state = 7, .external_lex_state = 3}, + [1175] = {.lex_state = 7, .external_lex_state = 3}, + [1176] = {.lex_state = 7, .external_lex_state = 3}, [1177] = {.lex_state = 2, .external_lex_state = 3}, [1178] = {.lex_state = 7, .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 = 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 = 2, .external_lex_state = 3}, + [1181] = {.lex_state = 7, .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}, + [1185] = {.lex_state = 5, .external_lex_state = 2}, + [1186] = {.lex_state = 5, .external_lex_state = 2}, [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 7, .external_lex_state = 3}, + [1188] = {.lex_state = 2, .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}, + [1191] = {.lex_state = 7, .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}, + [1193] = {.lex_state = 7, .external_lex_state = 3}, + [1194] = {.lex_state = 7, .external_lex_state = 3}, [1195] = {.lex_state = 7, .external_lex_state = 3}, [1196] = {.lex_state = 7, .external_lex_state = 3}, - [1197] = {.lex_state = 2, .external_lex_state = 3}, + [1197] = {.lex_state = 7, .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}, + [1200] = {.lex_state = 7, .external_lex_state = 3}, [1201] = {.lex_state = 2, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 2, .external_lex_state = 3}, + [1205] = {.lex_state = 7, .external_lex_state = 3}, [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 7, .external_lex_state = 3}, - [1208] = {.lex_state = 2, .external_lex_state = 3}, + [1207] = {.lex_state = 2, .external_lex_state = 3}, + [1208] = {.lex_state = 7, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, [1211] = {.lex_state = 2, .external_lex_state = 3}, @@ -15914,7 +15942,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1272] = {.lex_state = 2, .external_lex_state = 3}, [1273] = {.lex_state = 2, .external_lex_state = 3}, [1274] = {.lex_state = 2, .external_lex_state = 3}, - [1275] = {.lex_state = 2, .external_lex_state = 3}, + [1275] = {.lex_state = 7, .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}, @@ -15928,1282 +15956,1297 @@ 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 = 7, .external_lex_state = 3}, + [1289] = {.lex_state = 2, .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 = 7, .external_lex_state = 3}, - [1296] = {.lex_state = 7, .external_lex_state = 3}, + [1295] = {.lex_state = 2, .external_lex_state = 3}, + [1296] = {.lex_state = 2, .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}, - [1301] = {.lex_state = 7, .external_lex_state = 3}, - [1302] = {.lex_state = 7, .external_lex_state = 3}, - [1303] = {.lex_state = 7, .external_lex_state = 3}, - [1304] = {.lex_state = 7, .external_lex_state = 3}, - [1305] = {.lex_state = 7, .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 = 2, .external_lex_state = 3}, + [1302] = {.lex_state = 2, .external_lex_state = 3}, + [1303] = {.lex_state = 2, .external_lex_state = 3}, + [1304] = {.lex_state = 2, .external_lex_state = 3}, + [1305] = {.lex_state = 2, .external_lex_state = 3}, [1306] = {.lex_state = 7, .external_lex_state = 3}, - [1307] = {.lex_state = 7, .external_lex_state = 3}, + [1307] = {.lex_state = 2, .external_lex_state = 3}, [1308] = {.lex_state = 7, .external_lex_state = 3}, [1309] = {.lex_state = 7, .external_lex_state = 3}, [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 = 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}, - [1320] = {.lex_state = 9, .external_lex_state = 3}, - [1321] = {.lex_state = 9, .external_lex_state = 3}, - [1322] = {.lex_state = 9, .external_lex_state = 3}, - [1323] = {.lex_state = 9, .external_lex_state = 3}, - [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 = 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 = 18, .external_lex_state = 3}, - [1332] = {.lex_state = 7, .external_lex_state = 3}, - [1333] = {.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 = 7, .external_lex_state = 3}, - [1338] = {.lex_state = 18, .external_lex_state = 3}, - [1339] = {.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 = 7, .external_lex_state = 3}, + [1316] = {.lex_state = 7, .external_lex_state = 3}, + [1317] = {.lex_state = 7, .external_lex_state = 3}, + [1318] = {.lex_state = 7, .external_lex_state = 3}, + [1319] = {.lex_state = 7, .external_lex_state = 3}, + [1320] = {.lex_state = 7, .external_lex_state = 3}, + [1321] = {.lex_state = 7, .external_lex_state = 3}, + [1322] = {.lex_state = 7, .external_lex_state = 3}, + [1323] = {.lex_state = 7, .external_lex_state = 3}, + [1324] = {.lex_state = 7, .external_lex_state = 3}, + [1325] = {.lex_state = 18, .external_lex_state = 3}, + [1326] = {.lex_state = 18, .external_lex_state = 3}, + [1327] = {.lex_state = 9, .external_lex_state = 3}, + [1328] = {.lex_state = 9, .external_lex_state = 3}, + [1329] = {.lex_state = 9, .external_lex_state = 3}, + [1330] = {.lex_state = 9, .external_lex_state = 3}, + [1331] = {.lex_state = 9, .external_lex_state = 3}, + [1332] = {.lex_state = 9, .external_lex_state = 3}, + [1333] = {.lex_state = 9, .external_lex_state = 3}, + [1334] = {.lex_state = 9, .external_lex_state = 3}, + [1335] = {.lex_state = 9, .external_lex_state = 3}, + [1336] = {.lex_state = 9, .external_lex_state = 3}, + [1337] = {.lex_state = 9, .external_lex_state = 3}, + [1338] = {.lex_state = 9, .external_lex_state = 3}, + [1339] = {.lex_state = 18, .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 = 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}, + [1343] = {.lex_state = 7, .external_lex_state = 3}, + [1344] = {.lex_state = 18, .external_lex_state = 3}, + [1345] = {.lex_state = 18, .external_lex_state = 3}, + [1346] = {.lex_state = 18, .external_lex_state = 3}, + [1347] = {.lex_state = 18, .external_lex_state = 3}, [1348] = {.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}, + [1352] = {.lex_state = 7, .external_lex_state = 3}, + [1353] = {.lex_state = 7, .external_lex_state = 3}, + [1354] = {.lex_state = 7, .external_lex_state = 3}, [1355] = {.lex_state = 7, .external_lex_state = 3}, - [1356] = {.lex_state = 18, .external_lex_state = 3}, + [1356] = {.lex_state = 7, .external_lex_state = 3}, [1357] = {.lex_state = 18, .external_lex_state = 3}, - [1358] = {.lex_state = 18, .external_lex_state = 3}, + [1358] = {.lex_state = 7, .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 = 18, .external_lex_state = 3}, - [1364] = {.lex_state = 7, .external_lex_state = 3}, + [1363] = {.lex_state = 7, .external_lex_state = 3}, + [1364] = {.lex_state = 9, .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}, + [1366] = {.lex_state = 18, .external_lex_state = 3}, + [1367] = {.lex_state = 7, .external_lex_state = 3}, [1368] = {.lex_state = 7, .external_lex_state = 3}, - [1369] = {.lex_state = 9, .external_lex_state = 3}, + [1369] = {.lex_state = 7, .external_lex_state = 3}, [1370] = {.lex_state = 18, .external_lex_state = 3}, - [1371] = {.lex_state = 7, .external_lex_state = 3}, - [1372] = {.lex_state = 7, .external_lex_state = 3}, + [1371] = {.lex_state = 18, .external_lex_state = 3}, + [1372] = {.lex_state = 18, .external_lex_state = 3}, [1373] = {.lex_state = 9, .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 = 18, .external_lex_state = 3}, - [1378] = {.lex_state = 18, .external_lex_state = 3}, + [1375] = {.lex_state = 7, .external_lex_state = 3}, + [1376] = {.lex_state = 9, .external_lex_state = 3}, + [1377] = {.lex_state = 7, .external_lex_state = 3}, + [1378] = {.lex_state = 7, .external_lex_state = 3}, [1379] = {.lex_state = 18, .external_lex_state = 3}, - [1380] = {.lex_state = 9, .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}, + [1383] = {.lex_state = 7, .external_lex_state = 3}, [1384] = {.lex_state = 18, .external_lex_state = 3}, - [1385] = {.lex_state = 18, .external_lex_state = 3}, + [1385] = {.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 = 7, .external_lex_state = 3}, + [1389] = {.lex_state = 18, .external_lex_state = 3}, [1390] = {.lex_state = 18, .external_lex_state = 3}, [1391] = {.lex_state = 7, .external_lex_state = 3}, - [1392] = {.lex_state = 18, .external_lex_state = 3}, + [1392] = {.lex_state = 7, .external_lex_state = 3}, [1393] = {.lex_state = 18, .external_lex_state = 3}, [1394] = {.lex_state = 18, .external_lex_state = 3}, - [1395] = {.lex_state = 7, .external_lex_state = 3}, + [1395] = {.lex_state = 18, .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 = 18, .external_lex_state = 3}, + [1400] = {.lex_state = 9, .external_lex_state = 3}, [1401] = {.lex_state = 18, .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 = 7, .external_lex_state = 3}, + [1406] = {.lex_state = 18, .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 = 7, .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}, [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 = 7, .external_lex_state = 3}, - [1418] = {.lex_state = 18, .external_lex_state = 3}, - [1419] = {.lex_state = 9, .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 = 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}, + [1417] = {.lex_state = 18, .external_lex_state = 3}, + [1418] = {.lex_state = 7, .external_lex_state = 3}, + [1419] = {.lex_state = 7, .external_lex_state = 3}, + [1420] = {.lex_state = 7, .external_lex_state = 3}, + [1421] = {.lex_state = 7, .external_lex_state = 3}, + [1422] = {.lex_state = 7, .external_lex_state = 3}, + [1423] = {.lex_state = 7, .external_lex_state = 3}, + [1424] = {.lex_state = 7, .external_lex_state = 3}, + [1425] = {.lex_state = 7, .external_lex_state = 3}, + [1426] = {.lex_state = 7, .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 = 9, .external_lex_state = 3}, - [1431] = {.lex_state = 9, .external_lex_state = 3}, + [1431] = {.lex_state = 18, .external_lex_state = 3}, [1432] = {.lex_state = 18, .external_lex_state = 3}, [1433] = {.lex_state = 9, .external_lex_state = 3}, - [1434] = {.lex_state = 18, .external_lex_state = 3}, + [1434] = {.lex_state = 9, .external_lex_state = 3}, [1435] = {.lex_state = 9, .external_lex_state = 3}, - [1436] = {.lex_state = 18, .external_lex_state = 3}, + [1436] = {.lex_state = 9, .external_lex_state = 3}, [1437] = {.lex_state = 18, .external_lex_state = 3}, - [1438] = {.lex_state = 18, .external_lex_state = 3}, - [1439] = {.lex_state = 7, .external_lex_state = 3}, + [1438] = {.lex_state = 9, .external_lex_state = 3}, + [1439] = {.lex_state = 18, .external_lex_state = 3}, [1440] = {.lex_state = 18, .external_lex_state = 3}, [1441] = {.lex_state = 18, .external_lex_state = 3}, - [1442] = {.lex_state = 18, .external_lex_state = 3}, - [1443] = {.lex_state = 18, .external_lex_state = 3}, + [1442] = {.lex_state = 9, .external_lex_state = 3}, + [1443] = {.lex_state = 9, .external_lex_state = 3}, [1444] = {.lex_state = 18, .external_lex_state = 3}, - [1445] = {.lex_state = 9, .external_lex_state = 3}, - [1446] = {.lex_state = 18, .external_lex_state = 3}, + [1445] = {.lex_state = 18, .external_lex_state = 3}, + [1446] = {.lex_state = 9, .external_lex_state = 3}, [1447] = {.lex_state = 18, .external_lex_state = 3}, [1448] = {.lex_state = 18, .external_lex_state = 3}, - [1449] = {.lex_state = 9, .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 = 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 = 9, .external_lex_state = 3}, + [1453] = {.lex_state = 7, .external_lex_state = 3}, + [1454] = {.lex_state = 9, .external_lex_state = 3}, + [1455] = {.lex_state = 9, .external_lex_state = 3}, + [1456] = {.lex_state = 9, .external_lex_state = 3}, + [1457] = {.lex_state = 18, .external_lex_state = 3}, [1458] = {.lex_state = 18, .external_lex_state = 3}, - [1459] = {.lex_state = 9, .external_lex_state = 3}, + [1459] = {.lex_state = 18, .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 = 14, .external_lex_state = 3}, - [1468] = {.lex_state = 9, .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 = 14, .external_lex_state = 3}, - [1473] = {.lex_state = 9, .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}, + [1461] = {.lex_state = 18, .external_lex_state = 3}, + [1462] = {.lex_state = 18, .external_lex_state = 3}, + [1463] = {.lex_state = 18, .external_lex_state = 3}, + [1464] = {.lex_state = 18, .external_lex_state = 3}, + [1465] = {.lex_state = 18, .external_lex_state = 3}, + [1466] = {.lex_state = 18, .external_lex_state = 3}, + [1467] = {.lex_state = 18, .external_lex_state = 3}, + [1468] = {.lex_state = 18, .external_lex_state = 3}, + [1469] = {.lex_state = 18, .external_lex_state = 3}, + [1470] = {.lex_state = 18, .external_lex_state = 3}, + [1471] = {.lex_state = 18, .external_lex_state = 3}, + [1472] = {.lex_state = 18, .external_lex_state = 3}, + [1473] = {.lex_state = 18, .external_lex_state = 3}, + [1474] = {.lex_state = 9, .external_lex_state = 3}, + [1475] = {.lex_state = 9, .external_lex_state = 3}, + [1476] = {.lex_state = 9, .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 = 7, .external_lex_state = 3}, - [1481] = {.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 = 7, .external_lex_state = 3}, + [1478] = {.lex_state = 14, .external_lex_state = 3}, + [1479] = {.lex_state = 9, .external_lex_state = 3}, + [1480] = {.lex_state = 14, .external_lex_state = 3}, + [1481] = {.lex_state = 9, .external_lex_state = 3}, + [1482] = {.lex_state = 9, .external_lex_state = 3}, + [1483] = {.lex_state = 14, .external_lex_state = 3}, + [1484] = {.lex_state = 9, .external_lex_state = 3}, + [1485] = {.lex_state = 14, .external_lex_state = 3}, + [1486] = {.lex_state = 15, .external_lex_state = 3}, [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 7, .external_lex_state = 3}, + [1488] = {.lex_state = 18, .external_lex_state = 3}, [1489] = {.lex_state = 7, .external_lex_state = 3}, [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 18, .external_lex_state = 3}, + [1491] = {.lex_state = 9, .external_lex_state = 3}, [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 18, .external_lex_state = 3}, + [1493] = {.lex_state = 7, .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 = 18, .external_lex_state = 3}, + [1497] = {.lex_state = 7, .external_lex_state = 3}, [1498] = {.lex_state = 7, .external_lex_state = 3}, - [1499] = {.lex_state = 18, .external_lex_state = 3}, + [1499] = {.lex_state = 7, .external_lex_state = 3}, [1500] = {.lex_state = 7, .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 = 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}, + [1504] = {.lex_state = 4, .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}, [1508] = {.lex_state = 7, .external_lex_state = 3}, [1509] = {.lex_state = 7, .external_lex_state = 3}, [1510] = {.lex_state = 7, .external_lex_state = 3}, - [1511] = {.lex_state = 7, .external_lex_state = 3}, - [1512] = {.lex_state = 7, .external_lex_state = 3}, + [1511] = {.lex_state = 18, .external_lex_state = 3}, + [1512] = {.lex_state = 18, .external_lex_state = 3}, [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, + [1514] = {.lex_state = 18, .external_lex_state = 3}, [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 = 7, .external_lex_state = 3}, + [1518] = {.lex_state = 15, .external_lex_state = 3}, [1519] = {.lex_state = 7, .external_lex_state = 3}, [1520] = {.lex_state = 7, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 15, .external_lex_state = 3}, + [1521] = {.lex_state = 18, .external_lex_state = 3}, + [1522] = {.lex_state = 18, .external_lex_state = 3}, [1523] = {.lex_state = 7, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, + [1524] = {.lex_state = 15, .external_lex_state = 3}, [1525] = {.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}, + [1527] = {.lex_state = 18, .external_lex_state = 3}, + [1528] = {.lex_state = 18, .external_lex_state = 3}, + [1529] = {.lex_state = 7, .external_lex_state = 3}, [1530] = {.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 = 15, .external_lex_state = 3}, - [1534] = {.lex_state = 15, .external_lex_state = 3}, + [1531] = {.lex_state = 7, .external_lex_state = 3}, + [1532] = {.lex_state = 7, .external_lex_state = 3}, + [1533] = {.lex_state = 18, .external_lex_state = 3}, + [1534] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 3}, + [1539] = {.lex_state = 0, .external_lex_state = 3}, + [1540] = {.lex_state = 4, .external_lex_state = 3}, [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 7, .external_lex_state = 3}, + [1542] = {.lex_state = 15, .external_lex_state = 3}, [1543] = {.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 = 15, .external_lex_state = 3}, + [1544] = {.lex_state = 15, .external_lex_state = 3}, + [1545] = {.lex_state = 7, .external_lex_state = 3}, + [1546] = {.lex_state = 7, .external_lex_state = 3}, + [1547] = {.lex_state = 15, .external_lex_state = 3}, + [1548] = {.lex_state = 4, .external_lex_state = 3}, [1549] = {.lex_state = 7, .external_lex_state = 3}, [1550] = {.lex_state = 7, .external_lex_state = 3}, [1551] = {.lex_state = 7, .external_lex_state = 3}, - [1552] = {.lex_state = 4, .external_lex_state = 3}, + [1552] = {.lex_state = 15, .external_lex_state = 3}, [1553] = {.lex_state = 7, .external_lex_state = 3}, [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 15, .external_lex_state = 3}, + [1555] = {.lex_state = 14, .external_lex_state = 3}, [1556] = {.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 = 7, .external_lex_state = 3}, + [1557] = {.lex_state = 7, .external_lex_state = 3}, + [1558] = {.lex_state = 15, .external_lex_state = 3}, + [1559] = {.lex_state = 15, .external_lex_state = 3}, [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 14, .external_lex_state = 3}, + [1561] = {.lex_state = 7, .external_lex_state = 3}, [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 15, .external_lex_state = 3}, + [1563] = {.lex_state = 4, .external_lex_state = 3}, [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 4, .external_lex_state = 3}, - [1566] = {.lex_state = 0, .external_lex_state = 3}, + [1565] = {.lex_state = 7, .external_lex_state = 3}, + [1566] = {.lex_state = 7, .external_lex_state = 3}, [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, + [1568] = {.lex_state = 4, .external_lex_state = 3}, [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, + [1570] = {.lex_state = 4, .external_lex_state = 3}, [1571] = {.lex_state = 7, .external_lex_state = 3}, [1572] = {.lex_state = 7, .external_lex_state = 3}, [1573] = {.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 = 7, .external_lex_state = 3}, + [1574] = {.lex_state = 7, .external_lex_state = 3}, + [1575] = {.lex_state = 15, .external_lex_state = 3}, + [1576] = {.lex_state = 15, .external_lex_state = 3}, + [1577] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, + [1581] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 0, .external_lex_state = 3}, + [1585] = {.lex_state = 4, .external_lex_state = 3}, + [1586] = {.lex_state = 0, .external_lex_state = 3}, + [1587] = {.lex_state = 7, .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}, + [1589] = {.lex_state = 0, .external_lex_state = 3}, + [1590] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, + [1593] = {.lex_state = 0, .external_lex_state = 3}, + [1594] = {.lex_state = 4, .external_lex_state = 3}, [1595] = {.lex_state = 7, .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}, + [1596] = {.lex_state = 7, .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}, + [1601] = {.lex_state = 7, .external_lex_state = 3}, [1602] = {.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}, + [1604] = {.lex_state = 0, .external_lex_state = 3}, + [1605] = {.lex_state = 15, .external_lex_state = 3}, + [1606] = {.lex_state = 7, .external_lex_state = 3}, + [1607] = {.lex_state = 7, .external_lex_state = 3}, + [1608] = {.lex_state = 7, .external_lex_state = 3}, + [1609] = {.lex_state = 15, .external_lex_state = 3}, [1610] = {.lex_state = 0, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, + [1611] = {.lex_state = 0, .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 = 18, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, - [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 10, .external_lex_state = 3}, + [1613] = {.lex_state = 0, .external_lex_state = 3}, + [1614] = {.lex_state = 0, .external_lex_state = 3}, + [1615] = {.lex_state = 7, .external_lex_state = 3}, + [1616] = {.lex_state = 0, .external_lex_state = 3}, + [1617] = {.lex_state = 0, .external_lex_state = 3}, + [1618] = {.lex_state = 7, .external_lex_state = 3}, [1619] = {.lex_state = 7, .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}, + [1620] = {.lex_state = 0, .external_lex_state = 3}, + [1621] = {.lex_state = 0, .external_lex_state = 3}, + [1622] = {.lex_state = 0, .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}, + [1626] = {.lex_state = 15, .external_lex_state = 3}, [1627] = {.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}, + [1628] = {.lex_state = 0, .external_lex_state = 3}, + [1629] = {.lex_state = 7, .external_lex_state = 3}, + [1630] = {.lex_state = 7, .external_lex_state = 3}, [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, + [1632] = {.lex_state = 4, .external_lex_state = 3}, [1633] = {.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}, + [1635] = {.lex_state = 7, .external_lex_state = 3}, + [1636] = {.lex_state = 18, .external_lex_state = 3}, [1637] = {.lex_state = 7, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, + [1638] = {.lex_state = 10, .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}, + [1641] = {.lex_state = 18, .external_lex_state = 3}, + [1642] = {.lex_state = 18, .external_lex_state = 3}, [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 10, .external_lex_state = 3}, + [1644] = {.lex_state = 7, .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}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, + [1649] = {.lex_state = 58, .external_lex_state = 3}, + [1650] = {.lex_state = 58, .external_lex_state = 3}, [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.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}, + [1652] = {.lex_state = 18, .external_lex_state = 3}, + [1653] = {.lex_state = 10, .external_lex_state = 3}, + [1654] = {.lex_state = 0, .external_lex_state = 3}, + [1655] = {.lex_state = 4, .external_lex_state = 3}, [1656] = {.lex_state = 7, .external_lex_state = 3}, [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 0, .external_lex_state = 3}, + [1658] = {.lex_state = 7, .external_lex_state = 3}, [1659] = {.lex_state = 7, .external_lex_state = 3}, [1660] = {.lex_state = 7, .external_lex_state = 3}, [1661] = {.lex_state = 10, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, + [1662] = {.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 = 0, .external_lex_state = 3}, - [1666] = {.lex_state = 18, .external_lex_state = 3}, + [1664] = {.lex_state = 18, .external_lex_state = 3}, + [1665] = {.lex_state = 18, .external_lex_state = 3}, + [1666] = {.lex_state = 7, .external_lex_state = 3}, [1667] = {.lex_state = 7, .external_lex_state = 3}, [1668] = {.lex_state = 7, .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}, + [1671] = {.lex_state = 4, .external_lex_state = 3}, [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 4, .external_lex_state = 3}, + [1673] = {.lex_state = 7, .external_lex_state = 3}, [1674] = {.lex_state = 7, .external_lex_state = 3}, [1675] = {.lex_state = 7, .external_lex_state = 3}, [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 18, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, + [1677] = {.lex_state = 7, .external_lex_state = 3}, + [1678] = {.lex_state = 10, .external_lex_state = 3}, [1679] = {.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}, + [1680] = {.lex_state = 7, .external_lex_state = 3}, + [1681] = {.lex_state = 7, .external_lex_state = 3}, + [1682] = {.lex_state = 7, .external_lex_state = 3}, [1683] = {.lex_state = 7, .external_lex_state = 3}, [1684] = {.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}, + [1687] = {.lex_state = 7, .external_lex_state = 3}, [1688] = {.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}, + [1690] = {.lex_state = 7, .external_lex_state = 3}, + [1691] = {.lex_state = 10, .external_lex_state = 3}, + [1692] = {.lex_state = 18, .external_lex_state = 3}, [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.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 = 0, .external_lex_state = 3}, - [1700] = {.lex_state = 18, .external_lex_state = 3}, + [1694] = {.lex_state = 4, .external_lex_state = 3}, + [1695] = {.lex_state = 14, .external_lex_state = 3}, + [1696] = {.lex_state = 7, .external_lex_state = 3}, + [1697] = {.lex_state = 7, .external_lex_state = 3}, + [1698] = {.lex_state = 10, .external_lex_state = 3}, + [1699] = {.lex_state = 7, .external_lex_state = 3}, + [1700] = {.lex_state = 7, .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}, + [1705] = {.lex_state = 18, .external_lex_state = 3}, [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 18, .external_lex_state = 3}, + [1707] = {.lex_state = 7, .external_lex_state = 3}, [1708] = {.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}, + [1709] = {.lex_state = 7, .external_lex_state = 3}, + [1710] = {.lex_state = 7, .external_lex_state = 3}, + [1711] = {.lex_state = 0, .external_lex_state = 3}, + [1712] = {.lex_state = 7, .external_lex_state = 3}, [1713] = {.lex_state = 7, .external_lex_state = 3}, [1714] = {.lex_state = 7, .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}, + [1715] = {.lex_state = 7, .external_lex_state = 3}, + [1716] = {.lex_state = 14, .external_lex_state = 3}, + [1717] = {.lex_state = 7, .external_lex_state = 3}, + [1718] = {.lex_state = 10, .external_lex_state = 3}, + [1719] = {.lex_state = 0, .external_lex_state = 3}, + [1720] = {.lex_state = 18, .external_lex_state = 3}, [1721] = {.lex_state = 7, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, + [1722] = {.lex_state = 58, .external_lex_state = 3}, [1723] = {.lex_state = 18, .external_lex_state = 3}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 10, .external_lex_state = 3}, - [1726] = {.lex_state = 10, .external_lex_state = 3}, + [1724] = {.lex_state = 58, .external_lex_state = 3}, + [1725] = {.lex_state = 18, .external_lex_state = 3}, + [1726] = {.lex_state = 18, .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 = 18, .external_lex_state = 3}, + [1729] = {.lex_state = 58, .external_lex_state = 3}, + [1730] = {.lex_state = 0, .external_lex_state = 3}, + [1731] = {.lex_state = 7, .external_lex_state = 3}, [1732] = {.lex_state = 7, .external_lex_state = 3}, [1733] = {.lex_state = 7, .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}, + [1734] = {.lex_state = 0, .external_lex_state = 3}, + [1735] = {.lex_state = 7, .external_lex_state = 3}, + [1736] = {.lex_state = 7, .external_lex_state = 3}, [1737] = {.lex_state = 7, .external_lex_state = 3}, - [1738] = {.lex_state = 18, .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 = 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 = 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}, + [1738] = {.lex_state = 0, .external_lex_state = 3}, + [1739] = {.lex_state = 10, .external_lex_state = 3}, + [1740] = {.lex_state = 10, .external_lex_state = 3}, + [1741] = {.lex_state = 18, .external_lex_state = 3}, + [1742] = {.lex_state = 18, .external_lex_state = 3}, + [1743] = {.lex_state = 7, .external_lex_state = 3}, + [1744] = {.lex_state = 7, .external_lex_state = 3}, + [1745] = {.lex_state = 18, .external_lex_state = 3}, + [1746] = {.lex_state = 0, .external_lex_state = 3}, + [1747] = {.lex_state = 7, .external_lex_state = 3}, + [1748] = {.lex_state = 7, .external_lex_state = 3}, + [1749] = {.lex_state = 18, .external_lex_state = 3}, + [1750] = {.lex_state = 7, .external_lex_state = 3}, + [1751] = {.lex_state = 7, .external_lex_state = 3}, + [1752] = {.lex_state = 18, .external_lex_state = 3}, + [1753] = {.lex_state = 18, .external_lex_state = 3}, + [1754] = {.lex_state = 10, .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 = 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 = 58, .external_lex_state = 3}, - [1767] = {.lex_state = 58, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .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}, + [1756] = {.lex_state = 10, .external_lex_state = 3}, + [1757] = {.lex_state = 18, .external_lex_state = 3}, + [1758] = {.lex_state = 7, .external_lex_state = 3}, + [1759] = {.lex_state = 7, .external_lex_state = 3}, + [1760] = {.lex_state = 18, .external_lex_state = 3}, + [1761] = {.lex_state = 18, .external_lex_state = 3}, + [1762] = {.lex_state = 0, .external_lex_state = 3}, + [1763] = {.lex_state = 18, .external_lex_state = 3}, + [1764] = {.lex_state = 0, .external_lex_state = 3}, + [1765] = {.lex_state = 0, .external_lex_state = 3}, + [1766] = {.lex_state = 7, .external_lex_state = 3}, + [1767] = {.lex_state = 18, .external_lex_state = 3}, + [1768] = {.lex_state = 10, .external_lex_state = 3}, + [1769] = {.lex_state = 58, .external_lex_state = 3}, + [1770] = {.lex_state = 58, .external_lex_state = 3}, + [1771] = {.lex_state = 18, .external_lex_state = 3}, [1772] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [1777] = {.lex_state = 58, .external_lex_state = 3}, - [1778] = {.lex_state = 7, .external_lex_state = 3}, + [1773] = {.lex_state = 7, .external_lex_state = 3}, + [1774] = {.lex_state = 58, .external_lex_state = 3}, + [1775] = {.lex_state = 7, .external_lex_state = 3}, + [1776] = {.lex_state = 58, .external_lex_state = 3}, + [1777] = {.lex_state = 7, .external_lex_state = 3}, + [1778] = {.lex_state = 0, .external_lex_state = 3}, [1779] = {.lex_state = 0, .external_lex_state = 3}, - [1780] = {.lex_state = 7, .external_lex_state = 3}, + [1780] = {.lex_state = 18, .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}, + [1782] = {.lex_state = 58, .external_lex_state = 3}, + [1783] = {.lex_state = 58, .external_lex_state = 3}, + [1784] = {.lex_state = 58, .external_lex_state = 3}, [1785] = {.lex_state = 58, .external_lex_state = 3}, - [1786] = {.lex_state = 58, .external_lex_state = 3}, + [1786] = {.lex_state = 4, .external_lex_state = 4}, [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 = 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 = 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 = 0, .external_lex_state = 3}, - [1807] = {.lex_state = 7, .external_lex_state = 3}, - [1808] = {.lex_state = 0, .external_lex_state = 3}, - [1809] = {.lex_state = 7, .external_lex_state = 3}, + [1788] = {.lex_state = 4, .external_lex_state = 4}, + [1789] = {.lex_state = 7, .external_lex_state = 3}, + [1790] = {.lex_state = 18, .external_lex_state = 3}, + [1791] = {.lex_state = 4, .external_lex_state = 4}, + [1792] = {.lex_state = 7, .external_lex_state = 3}, + [1793] = {.lex_state = 7, .external_lex_state = 3}, + [1794] = {.lex_state = 7, .external_lex_state = 3}, + [1795] = {.lex_state = 0, .external_lex_state = 3}, + [1796] = {.lex_state = 58, .external_lex_state = 3}, + [1797] = {.lex_state = 58, .external_lex_state = 3}, + [1798] = {.lex_state = 10, .external_lex_state = 3}, + [1799] = {.lex_state = 7, .external_lex_state = 3}, + [1800] = {.lex_state = 58, .external_lex_state = 3}, + [1801] = {.lex_state = 7, .external_lex_state = 3}, + [1802] = {.lex_state = 0, .external_lex_state = 3}, + [1803] = {.lex_state = 18, .external_lex_state = 3}, + [1804] = {.lex_state = 0, .external_lex_state = 3}, + [1805] = {.lex_state = 19, .external_lex_state = 3}, + [1806] = {.lex_state = 7, .external_lex_state = 3}, + [1807] = {.lex_state = 58, .external_lex_state = 3}, + [1808] = {.lex_state = 58, .external_lex_state = 3}, + [1809] = {.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 = 7, .external_lex_state = 3}, - [1816] = {.lex_state = 7, .external_lex_state = 3}, - [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 0, .external_lex_state = 3}, + [1811] = {.lex_state = 58, .external_lex_state = 3}, + [1812] = {.lex_state = 0, .external_lex_state = 3}, + [1813] = {.lex_state = 58, .external_lex_state = 3}, + [1814] = {.lex_state = 58, .external_lex_state = 3}, + [1815] = {.lex_state = 58, .external_lex_state = 3}, + [1816] = {.lex_state = 0, .external_lex_state = 3}, + [1817] = {.lex_state = 4, .external_lex_state = 4}, + [1818] = {.lex_state = 7, .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 = 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}, + [1820] = {.lex_state = 4, .external_lex_state = 4}, + [1821] = {.lex_state = 7, .external_lex_state = 3}, + [1822] = {.lex_state = 0, .external_lex_state = 3}, + [1823] = {.lex_state = 10, .external_lex_state = 3}, + [1824] = {.lex_state = 7, .external_lex_state = 3}, + [1825] = {.lex_state = 4, .external_lex_state = 4}, [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 = 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}, + [1827] = {.lex_state = 18, .external_lex_state = 3}, + [1828] = {.lex_state = 58, .external_lex_state = 3}, + [1829] = {.lex_state = 7, .external_lex_state = 3}, + [1830] = {.lex_state = 0, .external_lex_state = 3}, + [1831] = {.lex_state = 0, .external_lex_state = 3}, + [1832] = {.lex_state = 19, .external_lex_state = 3}, + [1833] = {.lex_state = 7, .external_lex_state = 3}, + [1834] = {.lex_state = 7, .external_lex_state = 3}, + [1835] = {.lex_state = 0, .external_lex_state = 3}, + [1836] = {.lex_state = 7, .external_lex_state = 3}, + [1837] = {.lex_state = 4, .external_lex_state = 4}, + [1838] = {.lex_state = 0, .external_lex_state = 3}, + [1839] = {.lex_state = 0, .external_lex_state = 3}, + [1840] = {.lex_state = 0, .external_lex_state = 3}, [1841] = {.lex_state = 7, .external_lex_state = 3}, [1842] = {.lex_state = 18, .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 = 0, .external_lex_state = 3}, - [1849] = {.lex_state = 4, .external_lex_state = 4}, - [1850] = {.lex_state = 10, .external_lex_state = 3}, + [1843] = {.lex_state = 58, .external_lex_state = 3}, + [1844] = {.lex_state = 4, .external_lex_state = 4}, + [1845] = {.lex_state = 7, .external_lex_state = 3}, + [1846] = {.lex_state = 7, .external_lex_state = 3}, + [1847] = {.lex_state = 58, .external_lex_state = 3}, + [1848] = {.lex_state = 7, .external_lex_state = 3}, + [1849] = {.lex_state = 0, .external_lex_state = 3}, + [1850] = {.lex_state = 7, .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}, + [1852] = {.lex_state = 7, .external_lex_state = 3}, + [1853] = {.lex_state = 19, .external_lex_state = 3}, [1854] = {.lex_state = 7, .external_lex_state = 3}, - [1855] = {.lex_state = 58, .external_lex_state = 3}, - [1856] = {.lex_state = 7, .external_lex_state = 3}, - [1857] = {.lex_state = 3, .external_lex_state = 3}, + [1855] = {.lex_state = 0, .external_lex_state = 3}, + [1856] = {.lex_state = 19, .external_lex_state = 3}, + [1857] = {.lex_state = 7, .external_lex_state = 3}, [1858] = {.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 = 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 = 58, .external_lex_state = 3}, - [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 58, .external_lex_state = 3}, - [1870] = {.lex_state = 58, .external_lex_state = 3}, + [1859] = {.lex_state = 7, .external_lex_state = 3}, + [1860] = {.lex_state = 18, .external_lex_state = 3}, + [1861] = {.lex_state = 58, .external_lex_state = 3}, + [1862] = {.lex_state = 4, .external_lex_state = 4}, + [1863] = {.lex_state = 7, .external_lex_state = 3}, + [1864] = {.lex_state = 7, .external_lex_state = 3}, + [1865] = {.lex_state = 58, .external_lex_state = 3}, + [1866] = {.lex_state = 58, .external_lex_state = 3}, + [1867] = {.lex_state = 3, .external_lex_state = 3}, + [1868] = {.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 = 58, .external_lex_state = 3}, + [1872] = {.lex_state = 7, .external_lex_state = 3}, [1873] = {.lex_state = 0, .external_lex_state = 3}, - [1874] = {.lex_state = 58, .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}, + [1874] = {.lex_state = 0, .external_lex_state = 3}, + [1875] = {.lex_state = 7, .external_lex_state = 3}, + [1876] = {.lex_state = 10, .external_lex_state = 3}, + [1877] = {.lex_state = 58, .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}, + [1880] = {.lex_state = 58, .external_lex_state = 3}, + [1881] = {.lex_state = 0, .external_lex_state = 3}, + [1882] = {.lex_state = 58, .external_lex_state = 3}, + [1883] = {.lex_state = 10, .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 = 3, .external_lex_state = 3}, + [1885] = {.lex_state = 7, .external_lex_state = 3}, + [1886] = {.lex_state = 58, .external_lex_state = 3}, + [1887] = {.lex_state = 58, .external_lex_state = 3}, + [1888] = {.lex_state = 58, .external_lex_state = 3}, [1889] = {.lex_state = 58, .external_lex_state = 3}, - [1890] = {.lex_state = 58, .external_lex_state = 3}, + [1890] = {.lex_state = 0, .external_lex_state = 3}, [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 0, .external_lex_state = 3}, + [1892] = {.lex_state = 4, .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}, + [1894] = {.lex_state = 0, .external_lex_state = 3}, + [1895] = {.lex_state = 58, .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}, [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 = 7, .external_lex_state = 3}, + [1900] = {.lex_state = 58, .external_lex_state = 3}, + [1901] = {.lex_state = 7, .external_lex_state = 3}, + [1902] = {.lex_state = 58, .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 = 3, .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}, + [1909] = {.lex_state = 0, .external_lex_state = 3}, [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, + [1911] = {.lex_state = 58, .external_lex_state = 3}, [1912] = {.lex_state = 0, .external_lex_state = 3}, [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 10, .external_lex_state = 3}, - [1915] = {.lex_state = 58, .external_lex_state = 3}, + [1914] = {.lex_state = 58, .external_lex_state = 3}, + [1915] = {.lex_state = 0, .external_lex_state = 3}, [1916] = {.lex_state = 0, .external_lex_state = 3}, - [1917] = {.lex_state = 58, .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 = 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}, + [1919] = {.lex_state = 0, .external_lex_state = 3}, + [1920] = {.lex_state = 0, .external_lex_state = 3}, + [1921] = {.lex_state = 0, .external_lex_state = 3}, + [1922] = {.lex_state = 7, .external_lex_state = 3}, + [1923] = {.lex_state = 7, .external_lex_state = 3}, + [1924] = {.lex_state = 3, .external_lex_state = 3}, + [1925] = {.lex_state = 58, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 0, .external_lex_state = 3}, - [1928] = {.lex_state = 58, .external_lex_state = 3}, - [1929] = {.lex_state = 58, .external_lex_state = 3}, - [1930] = {.lex_state = 4, .external_lex_state = 3}, + [1927] = {.lex_state = 58, .external_lex_state = 3}, + [1928] = {.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 = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 58, .external_lex_state = 3}, + [1932] = {.lex_state = 0, .external_lex_state = 3}, [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.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 = 58, .external_lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 3}, + [1937] = {.lex_state = 3, .external_lex_state = 3}, [1938] = {.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}, + [1939] = {.lex_state = 7, .external_lex_state = 3}, + [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1941] = {.lex_state = 7, .external_lex_state = 3}, [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 58, .external_lex_state = 3}, [1944] = {.lex_state = 0, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, [1946] = {.lex_state = 0, .external_lex_state = 3}, [1947] = {.lex_state = 58, .external_lex_state = 3}, - [1948] = {.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 = 58, .external_lex_state = 3}, + [1950] = {.lex_state = 0, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, [1952] = {.lex_state = 0, .external_lex_state = 3}, [1953] = {.lex_state = 0, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 0, .external_lex_state = 3}, + [1955] = {.lex_state = 0, .external_lex_state = 3}, + [1956] = {.lex_state = 7, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 7, .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}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1962] = {.lex_state = 58, .external_lex_state = 3}, + [1963] = {.lex_state = 10, .external_lex_state = 3}, [1964] = {.lex_state = 0, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 58, .external_lex_state = 3}, + [1966] = {.lex_state = 7, .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}, + [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}, + [1973] = {.lex_state = 58, .external_lex_state = 3}, [1974] = {.lex_state = 0, .external_lex_state = 3}, - [1975] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 58, .external_lex_state = 3}, - [1981] = {.lex_state = 7, .external_lex_state = 3}, + [1977] = {.lex_state = 7, .external_lex_state = 3}, + [1978] = {.lex_state = 7, .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 = 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}, + [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 = 58, .external_lex_state = 3}, + [1989] = {.lex_state = 58, .external_lex_state = 3}, + [1990] = {.lex_state = 58, .external_lex_state = 3}, [1991] = {.lex_state = 0, .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}, + [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 = 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}, + [1998] = {.lex_state = 0, .external_lex_state = 3}, + [1999] = {.lex_state = 0, .external_lex_state = 3}, + [2000] = {.lex_state = 0, .external_lex_state = 3}, + [2001] = {.lex_state = 58, .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 = 0, .external_lex_state = 3}, - [2006] = {.lex_state = 58, .external_lex_state = 3}, - [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 0, .external_lex_state = 3}, + [2005] = {.lex_state = 3, .external_lex_state = 3}, + [2006] = {.lex_state = 3, .external_lex_state = 3}, + [2007] = {.lex_state = 7, .external_lex_state = 3}, + [2008] = {.lex_state = 3, .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}, + [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 = 3, .external_lex_state = 3}, - [2015] = {.lex_state = 7, .external_lex_state = 3}, - [2016] = {.lex_state = 3, .external_lex_state = 3}, + [2013] = {.lex_state = 58, .external_lex_state = 3}, + [2014] = {.lex_state = 0, .external_lex_state = 3}, + [2015] = {.lex_state = 0, .external_lex_state = 3}, + [2016] = {.lex_state = 0, .external_lex_state = 3}, [2017] = {.lex_state = 58, .external_lex_state = 3}, - [2018] = {.lex_state = 3, .external_lex_state = 3}, + [2018] = {.lex_state = 58, .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 = 58, .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 = 0, .external_lex_state = 3}, [2024] = {.lex_state = 0, .external_lex_state = 3}, - [2025] = {.lex_state = 58, .external_lex_state = 3}, - [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 3, .external_lex_state = 3}, + [2025] = {.lex_state = 3, .external_lex_state = 3}, + [2026] = {.lex_state = 7, .external_lex_state = 3}, + [2027] = {.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 = 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 = 7, .external_lex_state = 3}, + [2029] = {.lex_state = 3, .external_lex_state = 3}, + [2030] = {.lex_state = 58, .external_lex_state = 3}, + [2031] = {.lex_state = 3, .external_lex_state = 3}, + [2032] = {.lex_state = 58, .external_lex_state = 3}, + [2033] = {.lex_state = 58, .external_lex_state = 3}, + [2034] = {.lex_state = 58, .external_lex_state = 3}, + [2035] = {.lex_state = 3, .external_lex_state = 3}, + [2036] = {.lex_state = 0, .external_lex_state = 3}, [2037] = {.lex_state = 0, .external_lex_state = 3}, [2038] = {.lex_state = 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}, + [2039] = {.lex_state = 58, .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 = 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}, + [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 = 7, .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 = 58, .external_lex_state = 3}, + [2051] = {.lex_state = 0, .external_lex_state = 3}, [2052] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 10, .external_lex_state = 3}, - [2058] = {.lex_state = 58, .external_lex_state = 3}, + [2055] = {.lex_state = 3, .external_lex_state = 3}, + [2056] = {.lex_state = 58, .external_lex_state = 3}, + [2057] = {.lex_state = 3, .external_lex_state = 3}, + [2058] = {.lex_state = 0, .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}, + [2061] = {.lex_state = 18, .external_lex_state = 3}, + [2062] = {.lex_state = 58, .external_lex_state = 3}, + [2063] = {.lex_state = 58, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 3, .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}, + [2067] = {.lex_state = 10, .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 = 7, .external_lex_state = 3}, - [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2070] = {.lex_state = 3, .external_lex_state = 3}, + [2071] = {.lex_state = 58, .external_lex_state = 3}, + [2072] = {.lex_state = 0, .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}, - [2076] = {.lex_state = 3, .external_lex_state = 3}, - [2077] = {.lex_state = 0, .external_lex_state = 3}, - [2078] = {.lex_state = 0, .external_lex_state = 3}, + [2075] = {.lex_state = 7, .external_lex_state = 3}, + [2076] = {.lex_state = 58, .external_lex_state = 3}, + [2077] = {.lex_state = 58, .external_lex_state = 3}, + [2078] = {.lex_state = 58, .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 = 4, .external_lex_state = 3}, + [2081] = {.lex_state = 0, .external_lex_state = 3}, [2082] = {.lex_state = 0, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 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}, + [2085] = {.lex_state = 58, .external_lex_state = 3}, + [2086] = {.lex_state = 3, .external_lex_state = 3}, + [2087] = {.lex_state = 58, .external_lex_state = 3}, + [2088] = {.lex_state = 0, .external_lex_state = 3}, + [2089] = {.lex_state = 0, .external_lex_state = 3}, + [2090] = {.lex_state = 58, .external_lex_state = 3}, [2091] = {.lex_state = 58, .external_lex_state = 3}, - [2092] = {.lex_state = 58, .external_lex_state = 3}, + [2092] = {.lex_state = 7, .external_lex_state = 3}, [2093] = {.lex_state = 58, .external_lex_state = 3}, [2094] = {.lex_state = 58, .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}, + [2097] = {.lex_state = 7, .external_lex_state = 3}, + [2098] = {.lex_state = 0, .external_lex_state = 3}, + [2099] = {.lex_state = 0, .external_lex_state = 3}, + [2100] = {.lex_state = 58, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .external_lex_state = 3}, + [2102] = {.lex_state = 7, .external_lex_state = 3}, + [2103] = {.lex_state = 0, .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}, + [2107] = {.lex_state = 10, .external_lex_state = 3}, [2108] = {.lex_state = 0, .external_lex_state = 3}, [2109] = {.lex_state = 0, .external_lex_state = 3}, - [2110] = {.lex_state = 0, .external_lex_state = 3}, + [2110] = {.lex_state = 7, .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}, + [2112] = {.lex_state = 3, .external_lex_state = 3}, + [2113] = {.lex_state = 3, .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 = 58, .external_lex_state = 3}, + [2116] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [2121] = {.lex_state = 0, .external_lex_state = 3}, + [2120] = {.lex_state = 58, .external_lex_state = 3}, + [2121] = {.lex_state = 7, .external_lex_state = 3}, [2122] = {.lex_state = 0, .external_lex_state = 3}, - [2123] = {.lex_state = 7, .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}, - [2127] = {.lex_state = 0, .external_lex_state = 3}, - [2128] = {.lex_state = 0, .external_lex_state = 3}, + [2127] = {.lex_state = 4, .external_lex_state = 3}, + [2128] = {.lex_state = 58, .external_lex_state = 3}, [2129] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, + [2132] = {.lex_state = 7, .external_lex_state = 3}, + [2133] = {.lex_state = 0, .external_lex_state = 3}, + [2134] = {.lex_state = 7, .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 = 58, .external_lex_state = 3}, - [2139] = {.lex_state = 58, .external_lex_state = 3}, + [2138] = {.lex_state = 0, .external_lex_state = 3}, + [2139] = {.lex_state = 0, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 58, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, [2143] = {.lex_state = 0, .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}, + [2145] = {.lex_state = 7, .external_lex_state = 3}, + [2146] = {.lex_state = 7, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, [2148] = {.lex_state = 0, .external_lex_state = 3}, [2149] = {.lex_state = 0, .external_lex_state = 3}, - [2150] = {.lex_state = 7, .external_lex_state = 3}, + [2150] = {.lex_state = 0, .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}, + [2153] = {.lex_state = 58, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, [2156] = {.lex_state = 0, .external_lex_state = 3}, - [2157] = {.lex_state = 58, .external_lex_state = 3}, + [2157] = {.lex_state = 0, .external_lex_state = 3}, [2158] = {.lex_state = 0, .external_lex_state = 3}, [2159] = {.lex_state = 0, .external_lex_state = 3}, - [2160] = {.lex_state = 0, .external_lex_state = 3}, - [2161] = {.lex_state = 0, .external_lex_state = 3}, - [2162] = {.lex_state = 7, .external_lex_state = 3}, + [2160] = {.lex_state = 7, .external_lex_state = 3}, + [2161] = {.lex_state = 7, .external_lex_state = 3}, + [2162] = {.lex_state = 0, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 58, .external_lex_state = 3}, + [2164] = {.lex_state = 7, .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}, + [2167] = {.lex_state = 58, .external_lex_state = 3}, + [2168] = {.lex_state = 7, .external_lex_state = 3}, [2169] = {.lex_state = 0, .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}, + [2170] = {.lex_state = 4, .external_lex_state = 3}, + [2171] = {.lex_state = 58, .external_lex_state = 3}, + [2172] = {.lex_state = 7, .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 = 58, .external_lex_state = 3}, + [2176] = {.lex_state = 58, .external_lex_state = 3}, + [2177] = {.lex_state = 0, .external_lex_state = 3}, [2178] = {.lex_state = 0, .external_lex_state = 3}, [2179] = {.lex_state = 0, .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}, + [2183] = {.lex_state = 18, .external_lex_state = 3}, + [2184] = {.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 = 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}, + [2187] = {.lex_state = 0, .external_lex_state = 3}, + [2188] = {.lex_state = 58, .external_lex_state = 3}, + [2189] = {.lex_state = 58, .external_lex_state = 3}, + [2190] = {.lex_state = 7, .external_lex_state = 3}, [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 58, .external_lex_state = 3}, + [2192] = {.lex_state = 0, .external_lex_state = 3}, [2193] = {.lex_state = 0, .external_lex_state = 3}, [2194] = {.lex_state = 0, .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}, + [2195] = {.lex_state = 0, .external_lex_state = 3}, + [2196] = {.lex_state = 7, .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}, [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 4, .external_lex_state = 3}, + [2201] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 0, .external_lex_state = 5}, + [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 = 3}, [2213] = {.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}, + [2214] = {.lex_state = 0, .external_lex_state = 3}, + [2215] = {.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 = 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 = 58, .external_lex_state = 3}, + [2222] = {.lex_state = 0, .external_lex_state = 3}, [2223] = {.lex_state = 0, .external_lex_state = 3}, - [2224] = {.lex_state = 58, .external_lex_state = 3}, + [2224] = {.lex_state = 0, .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}, + [2227] = {.lex_state = 58, .external_lex_state = 3}, [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 7, .external_lex_state = 3}, + [2229] = {.lex_state = 0, .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 = 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}, + [2236] = {.lex_state = 18, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 7, .external_lex_state = 3}, - [2239] = {.lex_state = 7, .external_lex_state = 3}, + [2238] = {.lex_state = 0, .external_lex_state = 3}, + [2239] = {.lex_state = 0, .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}, + [2242] = {.lex_state = 58, .external_lex_state = 3}, [2243] = {.lex_state = 0, .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}, + [2244] = {.lex_state = 0, .external_lex_state = 3}, + [2245] = {.lex_state = 18, .external_lex_state = 3}, + [2246] = {.lex_state = 0, .external_lex_state = 3}, + [2247] = {.lex_state = 18, .external_lex_state = 3}, [2248] = {.lex_state = 0, .external_lex_state = 3}, - [2249] = {.lex_state = 0, .external_lex_state = 3}, + [2249] = {.lex_state = 7, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, [2251] = {.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}, + [2253] = {.lex_state = 0, .external_lex_state = 3}, + [2254] = {.lex_state = 0, .external_lex_state = 3}, + [2255] = {.lex_state = 58, .external_lex_state = 3}, + [2256] = {.lex_state = 58, .external_lex_state = 3}, + [2257] = {.lex_state = 0, .external_lex_state = 5}, [2258] = {.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 = 58, .external_lex_state = 3}, - [2262] = {.lex_state = 0, .external_lex_state = 3}, + [2259] = {.lex_state = 0, .external_lex_state = 3}, + [2260] = {.lex_state = 58, .external_lex_state = 3}, + [2261] = {.lex_state = 0, .external_lex_state = 3}, + [2262] = {.lex_state = 58, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, - [2264] = {.lex_state = 58, .external_lex_state = 3}, + [2264] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, + [2269] = {.lex_state = 7, .external_lex_state = 3}, + [2270] = {.lex_state = 0, .external_lex_state = 3}, + [2271] = {.lex_state = 0, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 3}, + [2273] = {.lex_state = 0, .external_lex_state = 3}, [2274] = {.lex_state = 0, .external_lex_state = 3}, [2275] = {.lex_state = 0, .external_lex_state = 3}, [2276] = {.lex_state = 0, .external_lex_state = 3}, - [2277] = {.lex_state = 7, .external_lex_state = 3}, - [2278] = {.lex_state = 0, .external_lex_state = 3}, - [2279] = {.lex_state = 58, .external_lex_state = 3}, + [2277] = {.lex_state = 0, .external_lex_state = 3}, + [2278] = {.lex_state = 7, .external_lex_state = 3}, + [2279] = {.lex_state = 0, .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}, + [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 = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 7, .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 = 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 = 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}, + [2288] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, + [2293] = {.lex_state = 7, .external_lex_state = 3}, + [2294] = {.lex_state = 58, .external_lex_state = 3}, + [2295] = {.lex_state = 0, .external_lex_state = 3}, + [2296] = {.lex_state = 7, .external_lex_state = 3}, + [2297] = {.lex_state = 0, .external_lex_state = 3}, + [2298] = {.lex_state = 58, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 0, .external_lex_state = 3}, - [2301] = {.lex_state = 7, .external_lex_state = 3}, + [2300] = {.lex_state = 58, .external_lex_state = 3}, + [2301] = {.lex_state = 10, .external_lex_state = 3}, [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 7, .external_lex_state = 3}, + [2303] = {.lex_state = 0, .external_lex_state = 3}, [2304] = {.lex_state = 0, .external_lex_state = 3}, - [2305] = {.lex_state = 18, .external_lex_state = 3}, - [2306] = {.lex_state = 0, .external_lex_state = 3}, + [2305] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [2310] = {.lex_state = 0, .external_lex_state = 3}, + [2310] = {.lex_state = 18, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 3}, + [2312] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, - [2318] = {.lex_state = 0, .external_lex_state = 3}, - [2319] = {.lex_state = 7, .external_lex_state = 3}, - [2320] = {.lex_state = 7, .external_lex_state = 3}, + [2317] = {.lex_state = 58, .external_lex_state = 3}, + [2318] = {.lex_state = 7, .external_lex_state = 3}, + [2319] = {.lex_state = 0, .external_lex_state = 3}, + [2320] = {.lex_state = 0, .external_lex_state = 3}, [2321] = {.lex_state = 0, .external_lex_state = 3}, - [2322] = {.lex_state = 0, .external_lex_state = 3}, + [2322] = {.lex_state = 7, .external_lex_state = 3}, [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2324] = {.lex_state = 0, .external_lex_state = 3}, [2325] = {.lex_state = 0, .external_lex_state = 3}, - [2326] = {.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 = 7, .external_lex_state = 3}, + [2326] = {.lex_state = 58, .external_lex_state = 3}, + [2327] = {.lex_state = 0, .external_lex_state = 3}, + [2328] = {.lex_state = 0, .external_lex_state = 3}, + [2329] = {.lex_state = 0, .external_lex_state = 3}, [2330] = {.lex_state = 0, .external_lex_state = 3}, - [2331] = {.lex_state = 7, .external_lex_state = 3}, + [2331] = {.lex_state = 0, .external_lex_state = 3}, [2332] = {.lex_state = 0, .external_lex_state = 3}, [2333] = {.lex_state = 0, .external_lex_state = 3}, - [2334] = {.lex_state = 7, .external_lex_state = 3}, - [2335] = {.lex_state = 7, .external_lex_state = 3}, + [2334] = {.lex_state = 0, .external_lex_state = 3}, + [2335] = {.lex_state = 0, .external_lex_state = 3}, [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .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 = 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 = 0, .external_lex_state = 3}, + [2341] = {.lex_state = 0, .external_lex_state = 3}, + [2342] = {.lex_state = 7, .external_lex_state = 3}, + [2343] = {.lex_state = 7, .external_lex_state = 3}, + [2344] = {.lex_state = 0, .external_lex_state = 3}, + [2345] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, + [2347] = {.lex_state = 0, .external_lex_state = 3}, + [2348] = {.lex_state = 0, .external_lex_state = 3}, + [2349] = {.lex_state = 0, .external_lex_state = 3}, + [2350] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 0, .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}, + [2354] = {.lex_state = 10, .external_lex_state = 3}, [2355] = {.lex_state = 0, .external_lex_state = 3}, - [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2356] = {.lex_state = 7, .external_lex_state = 3}, [2357] = {.lex_state = 0, .external_lex_state = 3}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, + [2358] = {.lex_state = 7, .external_lex_state = 3}, [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 7, .external_lex_state = 3}, - [2361] = {.lex_state = 7, .external_lex_state = 3}, + [2360] = {.lex_state = 10, .external_lex_state = 3}, + [2361] = {.lex_state = 0, .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}, + [2363] = {.lex_state = 7, .external_lex_state = 3}, + [2364] = {.lex_state = 0, .external_lex_state = 3}, + [2365] = {.lex_state = 10, .external_lex_state = 3}, [2366] = {.lex_state = 7, .external_lex_state = 3}, - [2367] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 7, .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}, + [2369] = {.lex_state = 7, .external_lex_state = 3}, + [2370] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, + [2373] = {.lex_state = 7, .external_lex_state = 3}, + [2374] = {.lex_state = 7, .external_lex_state = 3}, + [2375] = {.lex_state = 7, .external_lex_state = 3}, + [2376] = {.lex_state = 7, .external_lex_state = 3}, [2377] = {.lex_state = 7, .external_lex_state = 3}, [2378] = {.lex_state = 0, .external_lex_state = 3}, - [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2379] = {.lex_state = 58, .external_lex_state = 3}, [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 10, .external_lex_state = 3}, + [2381] = {.lex_state = 0, .external_lex_state = 3}, [2382] = {.lex_state = 0, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, + [2383] = {.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 = 10, .external_lex_state = 3}, - [2389] = {.lex_state = 0, .external_lex_state = 3}, - [2390] = {.lex_state = 7, .external_lex_state = 3}, + [2385] = {.lex_state = 7, .external_lex_state = 3}, + [2386] = {.lex_state = 0, .external_lex_state = 3}, + [2387] = {.lex_state = 7, .external_lex_state = 3}, + [2388] = {.lex_state = 7, .external_lex_state = 3}, + [2389] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 7, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, [2396] = {.lex_state = 7, .external_lex_state = 3}, [2397] = {.lex_state = 7, .external_lex_state = 3}, [2398] = {.lex_state = 7, .external_lex_state = 3}, [2399] = {.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}, + [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}, [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 10, .external_lex_state = 3}, + [2405] = {.lex_state = 58, .external_lex_state = 3}, + [2406] = {.lex_state = 7, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 0, .external_lex_state = 3}, - [2409] = {.lex_state = 0, .external_lex_state = 3}, + [2408] = {.lex_state = 7, .external_lex_state = 3}, + [2409] = {.lex_state = 7, .external_lex_state = 3}, [2410] = {.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 = 7, .external_lex_state = 3}, - [2414] = {.lex_state = 7, .external_lex_state = 3}, + [2411] = {.lex_state = 7, .external_lex_state = 3}, + [2412] = {.lex_state = 7, .external_lex_state = 3}, + [2413] = {.lex_state = 0, .external_lex_state = 3}, + [2414] = {.lex_state = 0, .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}, + [2417] = {.lex_state = 7, .external_lex_state = 3}, [2418] = {.lex_state = 0, .external_lex_state = 3}, [2419] = {.lex_state = 7, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, - [2421] = {.lex_state = 0, .external_lex_state = 3}, + [2421] = {.lex_state = 7, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, [2423] = {.lex_state = 0, .external_lex_state = 3}, - [2424] = {.lex_state = 7, .external_lex_state = 3}, + [2424] = {.lex_state = 0, .external_lex_state = 3}, [2425] = {.lex_state = 7, .external_lex_state = 3}, - [2426] = {.lex_state = 0, .external_lex_state = 3}, + [2426] = {.lex_state = 7, .external_lex_state = 3}, [2427] = {.lex_state = 0, .external_lex_state = 3}, - [2428] = {.lex_state = 7, .external_lex_state = 3}, - [2429] = {.lex_state = 0, .external_lex_state = 3}, - [2430] = {.lex_state = 7, .external_lex_state = 3}, + [2428] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 7, .external_lex_state = 3}, + [2430] = {.lex_state = 0, .external_lex_state = 3}, [2431] = {.lex_state = 0, .external_lex_state = 3}, [2432] = {.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}, + [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 = 7, .external_lex_state = 3}, - [2437] = {.lex_state = 0, .external_lex_state = 3}, + [2437] = {.lex_state = 7, .external_lex_state = 3}, [2438] = {.lex_state = 7, .external_lex_state = 3}, - [2439] = {.lex_state = 7, .external_lex_state = 3}, + [2439] = {.lex_state = 0, .external_lex_state = 3}, [2440] = {.lex_state = 0, .external_lex_state = 3}, [2441] = {.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}, + [2442] = {.lex_state = 10, .external_lex_state = 3}, + [2443] = {.lex_state = 0, .external_lex_state = 3}, + [2444] = {.lex_state = 10, .external_lex_state = 3}, [2445] = {.lex_state = 7, .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}, + [2446] = {.lex_state = 0, .external_lex_state = 3}, + [2447] = {.lex_state = 0, .external_lex_state = 3}, + [2448] = {.lex_state = 10, .external_lex_state = 3}, + [2449] = {.lex_state = 0, .external_lex_state = 3}, [2450] = {.lex_state = 0, .external_lex_state = 3}, [2451] = {.lex_state = 0, .external_lex_state = 3}, - [2452] = {.lex_state = 7, .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 = 0, .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}, + [2458] = {.lex_state = 7, .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}, + [2461] = {.lex_state = 10, .external_lex_state = 3}, + [2462] = {.lex_state = 7, .external_lex_state = 3}, [2463] = {.lex_state = 7, .external_lex_state = 3}, - [2464] = {.lex_state = 10, .external_lex_state = 3}, + [2464] = {.lex_state = 7, .external_lex_state = 3}, [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 0, .external_lex_state = 3}, + [2466] = {.lex_state = 7, .external_lex_state = 3}, [2467] = {.lex_state = 0, .external_lex_state = 3}, - [2468] = {.lex_state = 7, .external_lex_state = 3}, - [2469] = {.lex_state = 7, .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 = 58, .external_lex_state = 3}, - [2472] = {.lex_state = 7, .external_lex_state = 3}, - [2473] = {.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 = 58, .external_lex_state = 3}, + [2471] = {.lex_state = 0, .external_lex_state = 3}, + [2472] = {.lex_state = 10, .external_lex_state = 3}, + [2473] = {.lex_state = 7, .external_lex_state = 3}, + [2474] = {.lex_state = 0, .external_lex_state = 3}, + [2475] = {.lex_state = 7, .external_lex_state = 3}, + [2476] = {.lex_state = 7, .external_lex_state = 3}, [2477] = {.lex_state = 0, .external_lex_state = 3}, - [2478] = {.lex_state = 7, .external_lex_state = 3}, + [2478] = {.lex_state = 58, .external_lex_state = 3}, [2479] = {.lex_state = 0, .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 = 10, .external_lex_state = 3}, + [2480] = {.lex_state = 10, .external_lex_state = 3}, + [2481] = {.lex_state = 7, .external_lex_state = 3}, + [2482] = {.lex_state = 7, .external_lex_state = 3}, + [2483] = {.lex_state = 0, .external_lex_state = 3}, [2484] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, + [2485] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 0, .external_lex_state = 3}, + [2487] = {.lex_state = 7, .external_lex_state = 3}, + [2488] = {.lex_state = 7, .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}, + [2490] = {.lex_state = 0, .external_lex_state = 3}, + [2491] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [2496] = {.lex_state = 7, .external_lex_state = 3}, - [2497] = {.lex_state = 10, .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}, [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 = 0, .external_lex_state = 3}, [2502] = {.lex_state = 7, .external_lex_state = 3}, - [2503] = {.lex_state = 0, .external_lex_state = 3}, + [2503] = {.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 = 0, .external_lex_state = 3}, - [2508] = {.lex_state = 0, .external_lex_state = 3}, + [2507] = {.lex_state = 7, .external_lex_state = 3}, + [2508] = {.lex_state = 7, .external_lex_state = 3}, [2509] = {.lex_state = 0, .external_lex_state = 3}, [2510] = {.lex_state = 7, .external_lex_state = 3}, - [2511] = {.lex_state = 0, .external_lex_state = 3}, + [2511] = {.lex_state = 7, .external_lex_state = 3}, [2512] = {.lex_state = 0, .external_lex_state = 3}, - [2513] = {.lex_state = 58, .external_lex_state = 3}, + [2513] = {.lex_state = 0, .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 = 10, .external_lex_state = 3}, - [2518] = {.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}, + [2515] = {.lex_state = 10, .external_lex_state = 3}, + [2516] = {.lex_state = 7, .external_lex_state = 3}, + [2517] = {.lex_state = 0, .external_lex_state = 3}, + [2518] = {.lex_state = 7, .external_lex_state = 3}, + [2519] = {.lex_state = 0, .external_lex_state = 3}, + [2520] = {.lex_state = 0, .external_lex_state = 3}, + [2521] = {.lex_state = 0, .external_lex_state = 3}, + [2522] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, + [2524] = {.lex_state = 0, .external_lex_state = 3}, + [2525] = {.lex_state = 7, .external_lex_state = 3}, + [2526] = {.lex_state = 0, .external_lex_state = 3}, [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 7, .external_lex_state = 3}, - [2529] = {.lex_state = 0, .external_lex_state = 3}, + [2528] = {.lex_state = 0, .external_lex_state = 3}, + [2529] = {.lex_state = 7, .external_lex_state = 3}, [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 7, .external_lex_state = 3}, + [2531] = {.lex_state = 0, .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}, + [2533] = {.lex_state = 0, .external_lex_state = 3}, + [2534] = {.lex_state = 10, .external_lex_state = 3}, + [2535] = {.lex_state = 0, .external_lex_state = 3}, + [2536] = {.lex_state = 0, .external_lex_state = 3}, [2537] = {.lex_state = 0, .external_lex_state = 3}, [2538] = {.lex_state = 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}, + [2540] = {.lex_state = 0, .external_lex_state = 3}, + [2541] = {.lex_state = 0, .external_lex_state = 3}, + [2542] = {.lex_state = 58, .external_lex_state = 3}, [2543] = {.lex_state = 0, .external_lex_state = 3}, [2544] = {.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}, + [2545] = {.lex_state = 0, .external_lex_state = 3}, + [2546] = {.lex_state = 0, .external_lex_state = 3}, + [2547] = {.lex_state = 10, .external_lex_state = 3}, [2548] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, + [2551] = {.lex_state = 10, .external_lex_state = 3}, + [2552] = {.lex_state = 0, .external_lex_state = 3}, [2553] = {.lex_state = 0, .external_lex_state = 3}, - [2554] = {.lex_state = 7, .external_lex_state = 3}, + [2554] = {.lex_state = 10, .external_lex_state = 3}, [2555] = {.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 = 7, .external_lex_state = 3}, - [2560] = {.lex_state = 0, .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}, + [2557] = {.lex_state = 0, .external_lex_state = 3}, + [2558] = {.lex_state = 0, .external_lex_state = 3}, + [2559] = {.lex_state = 0, .external_lex_state = 3}, + [2560] = {.lex_state = 10, .external_lex_state = 3}, + [2561] = {.lex_state = 10, .external_lex_state = 3}, + [2562] = {.lex_state = 0, .external_lex_state = 3}, + [2563] = {.lex_state = 0, .external_lex_state = 3}, [2564] = {.lex_state = 7, .external_lex_state = 3}, + [2565] = {.lex_state = 7, .external_lex_state = 3}, + [2566] = {.lex_state = 7, .external_lex_state = 3}, + [2567] = {.lex_state = 7, .external_lex_state = 3}, + [2568] = {.lex_state = 7, .external_lex_state = 3}, + [2569] = {.lex_state = 7, .external_lex_state = 3}, + [2570] = {.lex_state = 0, .external_lex_state = 3}, + [2571] = {.lex_state = 0, .external_lex_state = 3}, + [2572] = {.lex_state = 7, .external_lex_state = 3}, + [2573] = {.lex_state = 7, .external_lex_state = 3}, + [2574] = {.lex_state = 7, .external_lex_state = 3}, + [2575] = {.lex_state = 0, .external_lex_state = 3}, + [2576] = {.lex_state = 0, .external_lex_state = 3}, + [2577] = {.lex_state = 7, .external_lex_state = 3}, + [2578] = {.lex_state = 0, .external_lex_state = 3}, + [2579] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -17386,78 +17429,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [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), + [sym_source_file] = STATE(2492), + [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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -17534,77 +17577,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [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__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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17681,77 +17724,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [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__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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17828,77 +17871,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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__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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17975,77 +18018,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(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__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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18139,60 +18182,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(14), [sym_function_item] = STATE(14), [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2528), + [sym_function_modifiers] = STATE(2491), [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), + [sym_extern_modifier] = STATE(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18269,77 +18312,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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__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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18416,225 +18459,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [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(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), @@ -18709,84 +18605,84 @@ 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(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), + [9] = { + [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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [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(268), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18856,84 +18752,84 @@ 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(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), + [10] = { + [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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [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(121), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -19003,225 +18899,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(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), + [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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [ts_builtin_sym_end] = ACTIONS(123), + [sym_identifier] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(128), + [anon_sym_macro_rules_BANG] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_u8] = ACTIONS(146), + [anon_sym_i8] = ACTIONS(146), + [anon_sym_u16] = ACTIONS(146), + [anon_sym_i16] = ACTIONS(146), + [anon_sym_u32] = ACTIONS(146), + [anon_sym_i32] = ACTIONS(146), + [anon_sym_u64] = ACTIONS(146), + [anon_sym_i64] = ACTIONS(146), + [anon_sym_u128] = ACTIONS(146), + [anon_sym_i128] = ACTIONS(146), + [anon_sym_isize] = ACTIONS(146), + [anon_sym_usize] = ACTIONS(146), + [anon_sym_f32] = ACTIONS(146), + [anon_sym_f64] = ACTIONS(146), + [anon_sym_bool] = ACTIONS(146), + [anon_sym_str] = ACTIONS(146), + [anon_sym_char] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_async] = ACTIONS(152), + [anon_sym_break] = ACTIONS(155), + [anon_sym_const] = ACTIONS(158), + [anon_sym_continue] = ACTIONS(161), + [anon_sym_default] = ACTIONS(164), + [anon_sym_enum] = ACTIONS(167), + [anon_sym_fn] = ACTIONS(170), + [anon_sym_for] = ACTIONS(173), + [anon_sym_if] = ACTIONS(176), + [anon_sym_impl] = ACTIONS(179), + [anon_sym_let] = ACTIONS(182), + [anon_sym_loop] = ACTIONS(185), + [anon_sym_match] = ACTIONS(188), + [anon_sym_mod] = ACTIONS(191), + [anon_sym_pub] = ACTIONS(194), + [anon_sym_return] = ACTIONS(197), + [anon_sym_static] = ACTIONS(200), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_trait] = ACTIONS(206), + [anon_sym_type] = ACTIONS(209), + [anon_sym_union] = ACTIONS(212), + [anon_sym_unsafe] = ACTIONS(215), + [anon_sym_use] = ACTIONS(218), + [anon_sym_while] = ACTIONS(221), + [anon_sym_POUND] = ACTIONS(224), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_extern] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_COLON_COLON] = ACTIONS(233), + [anon_sym_AMP] = ACTIONS(236), + [anon_sym_DOT_DOT] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(242), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_move] = ACTIONS(248), + [sym_integer_literal] = ACTIONS(251), + [aux_sym_string_literal_token1] = ACTIONS(254), + [sym_char_literal] = ACTIONS(251), + [anon_sym_true] = ACTIONS(257), + [anon_sym_false] = ACTIONS(257), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(260), + [sym_super] = ACTIONS(263), + [sym_crate] = ACTIONS(266), + [sym_metavariable] = ACTIONS(269), + [sym_raw_string_literal] = ACTIONS(251), + [sym_float_literal] = ACTIONS(251), [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), + [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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19297,78 +19193,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [14] = { - [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), + [13] = { + [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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19444,78 +19340,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [14] = { + [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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(101), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(128), + [anon_sym_macro_rules_BANG] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_u8] = ACTIONS(146), + [anon_sym_i8] = ACTIONS(146), + [anon_sym_u16] = ACTIONS(146), + [anon_sym_i16] = ACTIONS(146), + [anon_sym_u32] = ACTIONS(146), + [anon_sym_i32] = ACTIONS(146), + [anon_sym_u64] = ACTIONS(146), + [anon_sym_i64] = ACTIONS(146), + [anon_sym_u128] = ACTIONS(146), + [anon_sym_i128] = ACTIONS(146), + [anon_sym_isize] = ACTIONS(146), + [anon_sym_usize] = ACTIONS(146), + [anon_sym_f32] = ACTIONS(146), + [anon_sym_f64] = ACTIONS(146), + [anon_sym_bool] = ACTIONS(146), + [anon_sym_str] = ACTIONS(146), + [anon_sym_char] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_async] = ACTIONS(152), + [anon_sym_break] = ACTIONS(155), + [anon_sym_const] = ACTIONS(158), + [anon_sym_continue] = ACTIONS(161), + [anon_sym_default] = ACTIONS(164), + [anon_sym_enum] = ACTIONS(167), + [anon_sym_fn] = ACTIONS(170), + [anon_sym_for] = ACTIONS(173), + [anon_sym_if] = ACTIONS(176), + [anon_sym_impl] = ACTIONS(179), + [anon_sym_let] = ACTIONS(182), + [anon_sym_loop] = ACTIONS(185), + [anon_sym_match] = ACTIONS(188), + [anon_sym_mod] = ACTIONS(191), + [anon_sym_pub] = ACTIONS(194), + [anon_sym_return] = ACTIONS(197), + [anon_sym_static] = ACTIONS(200), + [anon_sym_struct] = ACTIONS(203), + [anon_sym_trait] = ACTIONS(206), + [anon_sym_type] = ACTIONS(209), + [anon_sym_union] = ACTIONS(212), + [anon_sym_unsafe] = ACTIONS(215), + [anon_sym_use] = ACTIONS(218), + [anon_sym_while] = ACTIONS(221), + [anon_sym_POUND] = ACTIONS(224), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_extern] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_COLON_COLON] = ACTIONS(233), + [anon_sym_AMP] = ACTIONS(236), + [anon_sym_DOT_DOT] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(242), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_move] = ACTIONS(248), + [sym_integer_literal] = ACTIONS(251), + [aux_sym_string_literal_token1] = ACTIONS(254), + [sym_char_literal] = ACTIONS(251), + [anon_sym_true] = ACTIONS(257), + [anon_sym_false] = ACTIONS(257), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(260), + [sym_super] = ACTIONS(263), + [sym_crate] = ACTIONS(266), + [sym_metavariable] = ACTIONS(269), + [sym_raw_string_literal] = ACTIONS(251), + [sym_float_literal] = ACTIONS(251), + [sym_block_comment] = ACTIONS(3), + }, [15] = { - [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__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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19592,77 +19635,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [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__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(2491), + [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(1502), + [sym_visibility_modifier] = STATE(1352), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(82), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2480), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1556), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19739,50 +19782,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -19880,50 +19923,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1144), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(13), @@ -19931,10 +19974,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(310), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(308), [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19971,18 +20014,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(312), + [anon_sym_LT] = ACTIONS(314), [anon_sym_GT] = ACTIONS(312), [anon_sym_else] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(312), + [anon_sym_AMP] = ACTIONS(316), [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_AMP_AMP] = ACTIONS(310), [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(320), [anon_sym_CARET] = ACTIONS(312), [anon_sym_EQ_EQ] = ACTIONS(310), [anon_sym_BANG_EQ] = ACTIONS(310), @@ -20020,62 +20063,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1041), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(314), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(322), [anon_sym_LBRACE] = ACTIONS(284), - [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_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_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20094,7 +20137,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(316), + [anon_sym_as] = ACTIONS(324), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20109,42 +20152,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(316), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), - [anon_sym_else] = ACTIONS(316), + [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_COLON_COLON] = ACTIONS(79), - [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_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(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(324), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20160,62 +20203,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(326), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(326), [anon_sym_LBRACE] = ACTIONS(284), - [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_RBRACE] = ACTIONS(326), + [anon_sym_EQ_GT] = ACTIONS(326), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(326), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(326), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20234,7 +20277,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(316), + [anon_sym_as] = ACTIONS(328), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20249,42 +20292,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(316), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), - [anon_sym_else] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(314), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_else] = ACTIONS(328), [anon_sym_COLON_COLON] = ACTIONS(79), [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_DOT_DOT_DOT] = ACTIONS(326), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(326), + [anon_sym_PIPE_PIPE] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(320), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_BANG_EQ] = ACTIONS(326), + [anon_sym_LT_EQ] = ACTIONS(326), + [anon_sym_GT_EQ] = ACTIONS(326), + [anon_sym_LT_LT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(328), + [anon_sym_PLUS_EQ] = ACTIONS(326), + [anon_sym_DASH_EQ] = ACTIONS(326), + [anon_sym_STAR_EQ] = ACTIONS(326), + [anon_sym_SLASH_EQ] = ACTIONS(326), + [anon_sym_PERCENT_EQ] = ACTIONS(326), + [anon_sym_AMP_EQ] = ACTIONS(326), + [anon_sym_PIPE_EQ] = ACTIONS(326), + [anon_sym_CARET_EQ] = ACTIONS(326), + [anon_sym_LT_LT_EQ] = ACTIONS(326), + [anon_sym_GT_GT_EQ] = ACTIONS(326), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(328), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20300,62 +20343,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1041), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(310), - [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_LPAREN] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(322), [anon_sym_LBRACE] = ACTIONS(284), - [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_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_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20374,7 +20417,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(312), + [anon_sym_as] = ACTIONS(324), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20389,42 +20432,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(312), - [anon_sym_COMMA] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), - [anon_sym_else] = ACTIONS(312), + [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_COLON_COLON] = ACTIONS(79), - [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(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(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(324), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20440,62 +20483,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(896), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(318), - [anon_sym_RPAREN] = ACTIONS(318), + [anon_sym_SEMI] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(330), + [anon_sym_RPAREN] = ACTIONS(330), [anon_sym_LBRACE] = ACTIONS(284), - [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_RBRACE] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_RBRACK] = ACTIONS(330), + [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(330), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20513,8 +20556,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(322), - [anon_sym_as] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(332), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20529,42 +20572,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(320), - [anon_sym_COMMA] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(320), - [anon_sym_else] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(330), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), + [anon_sym_else] = ACTIONS(332), [anon_sym_COLON_COLON] = ACTIONS(79), - [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_AMP] = ACTIONS(332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(332), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(332), + [anon_sym_PERCENT] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(330), + [anon_sym_DASH_EQ] = ACTIONS(330), + [anon_sym_STAR_EQ] = ACTIONS(330), + [anon_sym_SLASH_EQ] = ACTIONS(330), + [anon_sym_PERCENT_EQ] = ACTIONS(330), + [anon_sym_AMP_EQ] = ACTIONS(330), + [anon_sym_PIPE_EQ] = ACTIONS(330), + [anon_sym_CARET_EQ] = ACTIONS(330), + [anon_sym_LT_LT_EQ] = ACTIONS(330), + [anon_sym_GT_GT_EQ] = ACTIONS(330), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(332), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20580,62 +20623,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1149), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(324), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(324), + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(334), + [anon_sym_RPAREN] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(284), - [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_RBRACE] = ACTIONS(334), + [anon_sym_EQ_GT] = ACTIONS(334), + [anon_sym_LBRACK] = ACTIONS(334), + [anon_sym_RBRACK] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [anon_sym_QMARK] = ACTIONS(334), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20653,8 +20696,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(326), + [anon_sym_SQUOTE] = ACTIONS(338), + [anon_sym_as] = ACTIONS(336), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20669,42 +20712,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(326), - [anon_sym_COMMA] = ACTIONS(324), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_else] = ACTIONS(326), + [anon_sym_EQ] = ACTIONS(336), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_else] = ACTIONS(336), [anon_sym_COLON_COLON] = ACTIONS(79), - [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_AMP] = ACTIONS(336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_AMP_AMP] = ACTIONS(334), + [anon_sym_PIPE_PIPE] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(336), + [anon_sym_CARET] = ACTIONS(336), + [anon_sym_EQ_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_LT_LT] = ACTIONS(336), + [anon_sym_GT_GT] = ACTIONS(336), + [anon_sym_SLASH] = ACTIONS(336), + [anon_sym_PERCENT] = ACTIONS(336), + [anon_sym_PLUS_EQ] = ACTIONS(334), + [anon_sym_DASH_EQ] = ACTIONS(334), + [anon_sym_STAR_EQ] = ACTIONS(334), + [anon_sym_SLASH_EQ] = ACTIONS(334), + [anon_sym_PERCENT_EQ] = ACTIONS(334), + [anon_sym_AMP_EQ] = ACTIONS(334), + [anon_sym_PIPE_EQ] = ACTIONS(334), + [anon_sym_CARET_EQ] = ACTIONS(334), + [anon_sym_LT_LT_EQ] = ACTIONS(334), + [anon_sym_GT_GT_EQ] = ACTIONS(334), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(326), + [anon_sym_DOT] = ACTIONS(336), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20720,62 +20763,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(896), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(330), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_RPAREN] = ACTIONS(330), [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(330), + [anon_sym_EQ_GT] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_RBRACK] = ACTIONS(330), + [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(330), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20794,7 +20837,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(332), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20809,42 +20852,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(328), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_else] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(330), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), + [anon_sym_else] = ACTIONS(332), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(330), [anon_sym_DOT_DOT] = ACTIONS(332), - [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(334), - [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_DOT_DOT_EQ] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(332), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(332), + [anon_sym_PERCENT] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(330), + [anon_sym_DASH_EQ] = ACTIONS(330), + [anon_sym_STAR_EQ] = ACTIONS(330), + [anon_sym_SLASH_EQ] = ACTIONS(330), + [anon_sym_PERCENT_EQ] = ACTIONS(330), + [anon_sym_AMP_EQ] = ACTIONS(330), + [anon_sym_PIPE_EQ] = ACTIONS(330), + [anon_sym_CARET_EQ] = ACTIONS(330), + [anon_sym_LT_LT_EQ] = ACTIONS(330), + [anon_sym_GT_GT_EQ] = ACTIONS(330), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(332), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20860,50 +20903,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -20994,57 +21037,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(896), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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(330), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(330), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21063,7 +21106,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(312), + [anon_sym_as] = ACTIONS(332), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21078,40 +21121,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(332), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), [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(332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(332), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(332), + [anon_sym_PERCENT] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(330), + [anon_sym_DASH_EQ] = ACTIONS(330), + [anon_sym_STAR_EQ] = ACTIONS(330), + [anon_sym_SLASH_EQ] = ACTIONS(330), + [anon_sym_PERCENT_EQ] = ACTIONS(330), + [anon_sym_AMP_EQ] = ACTIONS(330), + [anon_sym_PIPE_EQ] = ACTIONS(330), + [anon_sym_CARET_EQ] = ACTIONS(330), + [anon_sym_LT_LT_EQ] = ACTIONS(330), + [anon_sym_GT_GT_EQ] = ACTIONS(330), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(332), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21127,57 +21170,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_PLUS] = ACTIONS(312), [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21196,7 +21239,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(326), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21211,40 +21254,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(326), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(326), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(314), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), [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_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(320), + [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(326), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21260,57 +21303,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1041), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [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_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), @@ -21329,7 +21372,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(316), + [anon_sym_as] = ACTIONS(324), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21344,40 +21387,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(316), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), + [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(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_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(316), + [anon_sym_DOT] = ACTIONS(324), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21393,57 +21436,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(896), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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(330), + [anon_sym_LBRACE] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(330), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21462,7 +21505,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(332), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21477,40 +21520,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(328), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), [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(334), - [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(332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(332), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(332), + [anon_sym_PERCENT] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(330), + [anon_sym_DASH_EQ] = ACTIONS(330), + [anon_sym_STAR_EQ] = ACTIONS(330), + [anon_sym_SLASH_EQ] = ACTIONS(330), + [anon_sym_PERCENT_EQ] = ACTIONS(330), + [anon_sym_AMP_EQ] = ACTIONS(330), + [anon_sym_PIPE_EQ] = ACTIONS(330), + [anon_sym_CARET_EQ] = ACTIONS(330), + [anon_sym_LT_LT_EQ] = ACTIONS(330), + [anon_sym_GT_GT_EQ] = ACTIONS(330), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(332), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21526,57 +21569,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1041), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_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), @@ -21594,8 +21637,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(322), - [anon_sym_as] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(324), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21610,40 +21653,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(320), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(320), + [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(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_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(320), + [anon_sym_DOT] = ACTIONS(324), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21659,57 +21702,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [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(334), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_LBRACK] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [anon_sym_QMARK] = ACTIONS(334), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21727,8 +21770,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(312), + [anon_sym_SQUOTE] = ACTIONS(338), + [anon_sym_as] = ACTIONS(336), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21743,40 +21786,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(336), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(336), [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(336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_AMP_AMP] = ACTIONS(334), + [anon_sym_PIPE_PIPE] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(336), + [anon_sym_CARET] = ACTIONS(336), + [anon_sym_EQ_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_LT_LT] = ACTIONS(336), + [anon_sym_GT_GT] = ACTIONS(336), + [anon_sym_SLASH] = ACTIONS(336), + [anon_sym_PERCENT] = ACTIONS(336), + [anon_sym_PLUS_EQ] = ACTIONS(334), + [anon_sym_DASH_EQ] = ACTIONS(334), + [anon_sym_STAR_EQ] = ACTIONS(334), + [anon_sym_SLASH_EQ] = ACTIONS(334), + [anon_sym_PERCENT_EQ] = ACTIONS(334), + [anon_sym_AMP_EQ] = ACTIONS(334), + [anon_sym_PIPE_EQ] = ACTIONS(334), + [anon_sym_CARET_EQ] = ACTIONS(334), + [anon_sym_LT_LT_EQ] = ACTIONS(334), + [anon_sym_GT_GT_EQ] = ACTIONS(334), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(336), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21792,57 +21835,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(340), - [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_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(326), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21861,7 +21904,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(316), + [anon_sym_as] = ACTIONS(328), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21876,40 +21919,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(316), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(314), + [anon_sym_GT] = ACTIONS(328), [anon_sym_COLON_COLON] = ACTIONS(352), - [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_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(326), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(326), + [anon_sym_PIPE_PIPE] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(320), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_BANG_EQ] = ACTIONS(326), + [anon_sym_LT_EQ] = ACTIONS(326), + [anon_sym_GT_EQ] = ACTIONS(326), + [anon_sym_LT_LT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(328), + [anon_sym_PLUS_EQ] = ACTIONS(326), + [anon_sym_DASH_EQ] = ACTIONS(326), + [anon_sym_STAR_EQ] = ACTIONS(326), + [anon_sym_SLASH_EQ] = ACTIONS(326), + [anon_sym_PERCENT_EQ] = ACTIONS(326), + [anon_sym_AMP_EQ] = ACTIONS(326), + [anon_sym_PIPE_EQ] = ACTIONS(326), + [anon_sym_CARET_EQ] = ACTIONS(326), + [anon_sym_LT_LT_EQ] = ACTIONS(326), + [anon_sym_GT_GT_EQ] = ACTIONS(326), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(328), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21925,166 +21968,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [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_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_COMMA] = ACTIONS(372), - [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_else_clause] = STATE(33), + [aux_sym_if_expression_repeat1] = STATE(33), + [ts_builtin_sym_end] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_macro_rules_BANG] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_RBRACE] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_u8] = ACTIONS(370), + [anon_sym_i8] = ACTIONS(370), + [anon_sym_u16] = ACTIONS(370), + [anon_sym_i16] = ACTIONS(370), + [anon_sym_u32] = ACTIONS(370), + [anon_sym_i32] = ACTIONS(370), + [anon_sym_u64] = ACTIONS(370), + [anon_sym_i64] = ACTIONS(370), + [anon_sym_u128] = ACTIONS(370), + [anon_sym_i128] = ACTIONS(370), + [anon_sym_isize] = ACTIONS(370), + [anon_sym_usize] = ACTIONS(370), + [anon_sym_f32] = ACTIONS(370), + [anon_sym_f64] = ACTIONS(370), + [anon_sym_bool] = ACTIONS(370), + [anon_sym_str] = ACTIONS(370), + [anon_sym_char] = ACTIONS(370), + [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_as] = ACTIONS(370), + [anon_sym_async] = ACTIONS(370), + [anon_sym_break] = ACTIONS(370), + [anon_sym_const] = ACTIONS(370), + [anon_sym_continue] = ACTIONS(370), + [anon_sym_default] = ACTIONS(370), + [anon_sym_enum] = ACTIONS(370), + [anon_sym_fn] = ACTIONS(370), + [anon_sym_for] = ACTIONS(370), + [anon_sym_if] = ACTIONS(370), + [anon_sym_impl] = ACTIONS(370), + [anon_sym_let] = ACTIONS(370), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(370), + [anon_sym_mod] = ACTIONS(370), + [anon_sym_pub] = ACTIONS(370), + [anon_sym_return] = ACTIONS(370), + [anon_sym_static] = ACTIONS(370), + [anon_sym_struct] = ACTIONS(370), + [anon_sym_trait] = ACTIONS(370), + [anon_sym_type] = ACTIONS(370), + [anon_sym_union] = ACTIONS(370), + [anon_sym_unsafe] = ACTIONS(370), + [anon_sym_use] = ACTIONS(370), + [anon_sym_while] = ACTIONS(370), + [anon_sym_POUND] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_EQ] = ACTIONS(370), + [anon_sym_extern] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_GT] = ACTIONS(370), + [anon_sym_else] = ACTIONS(372), + [anon_sym_COLON_COLON] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(368), + [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_CARET] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(370), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_PLUS_EQ] = ACTIONS(368), + [anon_sym_DASH_EQ] = ACTIONS(368), + [anon_sym_STAR_EQ] = ACTIONS(368), + [anon_sym_SLASH_EQ] = ACTIONS(368), + [anon_sym_PERCENT_EQ] = ACTIONS(368), + [anon_sym_AMP_EQ] = ACTIONS(368), + [anon_sym_PIPE_EQ] = ACTIONS(368), + [anon_sym_CARET_EQ] = ACTIONS(368), + [anon_sym_LT_LT_EQ] = ACTIONS(368), + [anon_sym_GT_GT_EQ] = ACTIONS(368), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_move] = ACTIONS(370), + [anon_sym_DOT] = ACTIONS(370), + [sym_integer_literal] = ACTIONS(368), + [aux_sym_string_literal_token1] = ACTIONS(368), + [sym_char_literal] = ACTIONS(368), + [anon_sym_true] = ACTIONS(370), + [anon_sym_false] = ACTIONS(370), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(370), + [sym_super] = ACTIONS(370), + [sym_crate] = ACTIONS(370), + [sym_metavariable] = ACTIONS(368), + [sym_raw_string_literal] = ACTIONS(368), + [sym_float_literal] = ACTIONS(368), [sym_block_comment] = ACTIONS(3), }, [34] = { - [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_else_clause] = STATE(33), + [aux_sym_if_expression_repeat1] = STATE(33), + [ts_builtin_sym_end] = ACTIONS(375), + [sym_identifier] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_macro_rules_BANG] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(377), + [anon_sym_i8] = ACTIONS(377), + [anon_sym_u16] = ACTIONS(377), + [anon_sym_i16] = ACTIONS(377), + [anon_sym_u32] = ACTIONS(377), + [anon_sym_i32] = ACTIONS(377), + [anon_sym_u64] = ACTIONS(377), + [anon_sym_i64] = ACTIONS(377), + [anon_sym_u128] = ACTIONS(377), + [anon_sym_i128] = ACTIONS(377), + [anon_sym_isize] = ACTIONS(377), + [anon_sym_usize] = ACTIONS(377), + [anon_sym_f32] = ACTIONS(377), + [anon_sym_f64] = ACTIONS(377), + [anon_sym_bool] = ACTIONS(377), + [anon_sym_str] = ACTIONS(377), + [anon_sym_char] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(377), + [anon_sym_break] = ACTIONS(377), + [anon_sym_const] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_default] = ACTIONS(377), + [anon_sym_enum] = ACTIONS(377), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_for] = ACTIONS(377), + [anon_sym_if] = ACTIONS(377), + [anon_sym_impl] = ACTIONS(377), + [anon_sym_let] = ACTIONS(377), + [anon_sym_loop] = ACTIONS(377), + [anon_sym_match] = ACTIONS(377), + [anon_sym_mod] = ACTIONS(377), + [anon_sym_pub] = ACTIONS(377), + [anon_sym_return] = ACTIONS(377), + [anon_sym_static] = ACTIONS(377), + [anon_sym_struct] = ACTIONS(377), + [anon_sym_trait] = ACTIONS(377), + [anon_sym_type] = ACTIONS(377), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(377), + [anon_sym_use] = ACTIONS(377), + [anon_sym_while] = ACTIONS(377), + [anon_sym_POUND] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_extern] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_else] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(377), + [anon_sym_move] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [sym_integer_literal] = ACTIONS(375), + [aux_sym_string_literal_token1] = ACTIONS(375), + [sym_char_literal] = ACTIONS(375), + [anon_sym_true] = ACTIONS(377), + [anon_sym_false] = ACTIONS(377), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(377), + [sym_super] = ACTIONS(377), + [sym_crate] = ACTIONS(377), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(375), + [sym_float_literal] = ACTIONS(375), + [sym_block_comment] = ACTIONS(3), + }, + [35] = { + [sym_attribute_item] = STATE(61), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_enum_variant_list_repeat1] = STATE(61), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(381), [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), @@ -22117,9 +22269,9 @@ 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_POUND] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(385), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), @@ -22142,58 +22294,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [35] = { - [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), + [36] = { + [sym_attribute_item] = STATE(37), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1189), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_enum_variant_list_repeat1] = STATE(37), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(378), + [anon_sym_RBRACK] = ACTIONS(387), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22226,9 +22378,9 @@ 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_POUND] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(389), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), @@ -22251,58 +22403,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [36] = { - [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(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), + [37] = { + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(391), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22329,14 +22481,15 @@ 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(383), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(393), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), @@ -22359,59 +22512,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [38] = { + [sym_else_clause] = STATE(34), + [aux_sym_if_expression_repeat1] = STATE(34), + [ts_builtin_sym_end] = ACTIONS(395), + [sym_identifier] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_macro_rules_BANG] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u128] = ACTIONS(397), + [anon_sym_i128] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_str] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_async] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_const] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_default] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(397), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_impl] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_mod] = ACTIONS(397), + [anon_sym_pub] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_trait] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_union] = ACTIONS(397), + [anon_sym_unsafe] = ACTIONS(397), + [anon_sym_use] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_extern] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_else] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_yield] = ACTIONS(397), + [anon_sym_move] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [sym_integer_literal] = ACTIONS(395), + [aux_sym_string_literal_token1] = ACTIONS(395), + [sym_char_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(397), + [sym_super] = ACTIONS(397), + [sym_crate] = ACTIONS(397), + [sym_metavariable] = ACTIONS(395), + [sym_raw_string_literal] = ACTIONS(395), + [sym_float_literal] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + }, + [39] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2224), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22437,19 +22699,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(386), + [anon_sym_let] = ACTIONS(401), [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_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22467,56 +22729,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [38] = { + [40] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2119), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(401), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), + [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2290), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(401), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), + [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), + }, + [42] = { [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), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(392), + [anon_sym_RPAREN] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22551,7 +23029,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_POUND] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -22575,59 +23053,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [43] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2201), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22653,19 +23131,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(386), + [anon_sym_let] = ACTIONS(401), [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_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22683,59 +23161,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(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), + [44] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2312), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22761,19 +23239,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(386), + [anon_sym_let] = ACTIONS(401), [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_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22791,59 +23269,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [45] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2320), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22869,19 +23347,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(386), + [anon_sym_let] = ACTIONS(401), [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_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22899,56 +23377,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [46] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2316), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(401), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), + [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_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(409), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22983,7 +23569,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_POUND] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -23007,167 +23593,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(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(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), - }, - [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), + [48] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2185), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23193,19 +23671,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(386), + [anon_sym_let] = ACTIONS(401), [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_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23223,56 +23701,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [45] = { + [49] = { [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), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(411), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -23307,7 +23785,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_POUND] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -23331,59 +23809,59 @@ 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(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), + [50] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2178), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23409,19 +23887,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(386), + [anon_sym_let] = ACTIONS(401), [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_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23439,56 +23917,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [51] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2287), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(401), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [52] = { + [sym_attribute_item] = STATE(56), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_enum_variant_list_repeat1] = STATE(56), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(398), + [anon_sym_RPAREN] = ACTIONS(413), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -23523,7 +24109,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_POUND] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -23547,167 +24133,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [sym_else_clause] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(400), - [sym_identifier] = ACTIONS(402), - [anon_sym_SEMI] = ACTIONS(400), - [anon_sym_macro_rules_BANG] = ACTIONS(400), - [anon_sym_LPAREN] = ACTIONS(400), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_RBRACE] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_PLUS] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(402), - [anon_sym_QMARK] = ACTIONS(400), - [anon_sym_u8] = ACTIONS(402), - [anon_sym_i8] = ACTIONS(402), - [anon_sym_u16] = ACTIONS(402), - [anon_sym_i16] = ACTIONS(402), - [anon_sym_u32] = ACTIONS(402), - [anon_sym_i32] = ACTIONS(402), - [anon_sym_u64] = ACTIONS(402), - [anon_sym_i64] = ACTIONS(402), - [anon_sym_u128] = ACTIONS(402), - [anon_sym_i128] = ACTIONS(402), - [anon_sym_isize] = ACTIONS(402), - [anon_sym_usize] = ACTIONS(402), - [anon_sym_f32] = ACTIONS(402), - [anon_sym_f64] = ACTIONS(402), - [anon_sym_bool] = ACTIONS(402), - [anon_sym_str] = ACTIONS(402), - [anon_sym_char] = ACTIONS(402), - [anon_sym_SQUOTE] = ACTIONS(402), - [anon_sym_as] = ACTIONS(402), - [anon_sym_async] = ACTIONS(402), - [anon_sym_break] = ACTIONS(402), - [anon_sym_const] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(402), - [anon_sym_enum] = ACTIONS(402), - [anon_sym_fn] = ACTIONS(402), - [anon_sym_for] = ACTIONS(402), - [anon_sym_if] = ACTIONS(402), - [anon_sym_impl] = ACTIONS(402), - [anon_sym_let] = ACTIONS(402), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(402), - [anon_sym_mod] = ACTIONS(402), - [anon_sym_pub] = ACTIONS(402), - [anon_sym_return] = ACTIONS(402), - [anon_sym_static] = ACTIONS(402), - [anon_sym_struct] = ACTIONS(402), - [anon_sym_trait] = ACTIONS(402), - [anon_sym_type] = ACTIONS(402), - [anon_sym_union] = ACTIONS(402), - [anon_sym_unsafe] = ACTIONS(402), - [anon_sym_use] = ACTIONS(402), - [anon_sym_while] = ACTIONS(402), - [anon_sym_POUND] = ACTIONS(400), - [anon_sym_BANG] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(402), - [anon_sym_extern] = ACTIONS(402), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_else] = ACTIONS(404), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(400), - [anon_sym_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(400), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_PIPE_PIPE] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(402), - [anon_sym_CARET] = ACTIONS(402), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT_EQ] = ACTIONS(400), - [anon_sym_GT_EQ] = ACTIONS(400), - [anon_sym_LT_LT] = ACTIONS(402), - [anon_sym_GT_GT] = ACTIONS(402), - [anon_sym_SLASH] = ACTIONS(402), - [anon_sym_PERCENT] = ACTIONS(402), - [anon_sym_PLUS_EQ] = ACTIONS(400), - [anon_sym_DASH_EQ] = ACTIONS(400), - [anon_sym_STAR_EQ] = ACTIONS(400), - [anon_sym_SLASH_EQ] = ACTIONS(400), - [anon_sym_PERCENT_EQ] = ACTIONS(400), - [anon_sym_AMP_EQ] = ACTIONS(400), - [anon_sym_PIPE_EQ] = ACTIONS(400), - [anon_sym_CARET_EQ] = ACTIONS(400), - [anon_sym_LT_LT_EQ] = ACTIONS(400), - [anon_sym_GT_GT_EQ] = ACTIONS(400), - [anon_sym_yield] = ACTIONS(402), - [anon_sym_move] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(402), - [sym_integer_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(400), - [sym_char_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(402), - [sym_super] = ACTIONS(402), - [sym_crate] = ACTIONS(402), - [sym_metavariable] = ACTIONS(400), - [sym_raw_string_literal] = ACTIONS(400), - [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), + [53] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2272), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23733,19 +24211,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(386), + [anon_sym_let] = ACTIONS(401), [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_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23763,59 +24241,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [50] = { - [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), + [54] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2147), + [sym_let_condition] = STATE(2274), + [sym__let_chain] = STATE(2275), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23841,19 +24319,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(386), + [anon_sym_let] = ACTIONS(401), [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_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23871,53 +24349,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [51] = { - [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), + [55] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1305), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym__condition] = STATE(2531), + [sym_let_condition] = STATE(2198), + [sym__let_chain] = STATE(2197), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23948,13 +24427,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(415), [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), @@ -23978,53 +24457,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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), + [56] = { + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24061,7 +24540,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_POUND] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -24085,267 +24564,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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_else] = 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_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), - }, - [54] = { - [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_else] = 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_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), - }, - [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), + [57] = { + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24382,7 +24647,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_POUND] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -24406,160 +24671,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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_else] = 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_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), + [58] = { + [ts_builtin_sym_end] = ACTIONS(417), + [sym_identifier] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_macro_rules_BANG] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(417), + [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(419), + [anon_sym_as] = ACTIONS(419), + [anon_sym_async] = ACTIONS(419), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(419), + [anon_sym_default] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(419), + [anon_sym_fn] = ACTIONS(419), + [anon_sym_for] = ACTIONS(419), + [anon_sym_if] = ACTIONS(419), + [anon_sym_impl] = ACTIONS(419), + [anon_sym_let] = ACTIONS(419), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(419), + [anon_sym_mod] = ACTIONS(419), + [anon_sym_pub] = ACTIONS(419), + [anon_sym_return] = ACTIONS(419), + [anon_sym_static] = ACTIONS(419), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_trait] = ACTIONS(419), + [anon_sym_type] = ACTIONS(419), + [anon_sym_union] = ACTIONS(419), + [anon_sym_unsafe] = ACTIONS(419), + [anon_sym_use] = ACTIONS(419), + [anon_sym_while] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_extern] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_else] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(417), + [anon_sym_DASH_EQ] = ACTIONS(417), + [anon_sym_STAR_EQ] = ACTIONS(417), + [anon_sym_SLASH_EQ] = ACTIONS(417), + [anon_sym_PERCENT_EQ] = ACTIONS(417), + [anon_sym_AMP_EQ] = ACTIONS(417), + [anon_sym_PIPE_EQ] = ACTIONS(417), + [anon_sym_CARET_EQ] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(417), + [anon_sym_GT_GT_EQ] = ACTIONS(417), + [anon_sym_yield] = ACTIONS(419), + [anon_sym_move] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [sym_integer_literal] = ACTIONS(417), + [aux_sym_string_literal_token1] = ACTIONS(417), + [sym_char_literal] = ACTIONS(417), + [anon_sym_true] = ACTIONS(419), + [anon_sym_false] = ACTIONS(419), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(419), + [sym_super] = ACTIONS(419), + [sym_crate] = ACTIONS(419), + [sym_metavariable] = ACTIONS(417), + [sym_raw_string_literal] = ACTIONS(417), + [sym_float_literal] = ACTIONS(417), [sym_block_comment] = ACTIONS(3), }, - [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), + [59] = { + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24596,7 +24861,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_POUND] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -24620,158 +24885,160 @@ 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(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), + [60] = { + [ts_builtin_sym_end] = ACTIONS(421), + [sym_identifier] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_macro_rules_BANG] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_QMARK] = ACTIONS(421), + [anon_sym_u8] = ACTIONS(423), + [anon_sym_i8] = ACTIONS(423), + [anon_sym_u16] = ACTIONS(423), + [anon_sym_i16] = ACTIONS(423), + [anon_sym_u32] = ACTIONS(423), + [anon_sym_i32] = ACTIONS(423), + [anon_sym_u64] = ACTIONS(423), + [anon_sym_i64] = ACTIONS(423), + [anon_sym_u128] = ACTIONS(423), + [anon_sym_i128] = ACTIONS(423), + [anon_sym_isize] = ACTIONS(423), + [anon_sym_usize] = ACTIONS(423), + [anon_sym_f32] = ACTIONS(423), + [anon_sym_f64] = ACTIONS(423), + [anon_sym_bool] = ACTIONS(423), + [anon_sym_str] = ACTIONS(423), + [anon_sym_char] = ACTIONS(423), + [anon_sym_SQUOTE] = ACTIONS(423), + [anon_sym_as] = ACTIONS(423), + [anon_sym_async] = ACTIONS(423), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(423), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(423), + [anon_sym_enum] = ACTIONS(423), + [anon_sym_fn] = ACTIONS(423), + [anon_sym_for] = ACTIONS(423), + [anon_sym_if] = ACTIONS(423), + [anon_sym_impl] = ACTIONS(423), + [anon_sym_let] = ACTIONS(423), + [anon_sym_loop] = ACTIONS(423), + [anon_sym_match] = ACTIONS(423), + [anon_sym_mod] = ACTIONS(423), + [anon_sym_pub] = ACTIONS(423), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(423), + [anon_sym_struct] = ACTIONS(423), + [anon_sym_trait] = ACTIONS(423), + [anon_sym_type] = ACTIONS(423), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(423), + [anon_sym_use] = ACTIONS(423), + [anon_sym_while] = ACTIONS(423), + [anon_sym_POUND] = ACTIONS(421), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_extern] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_else] = ACTIONS(423), + [anon_sym_COLON_COLON] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT] = ACTIONS(423), + [anon_sym_DOT_DOT_EQ] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(421), + [anon_sym_BANG_EQ] = ACTIONS(421), + [anon_sym_LT_EQ] = ACTIONS(421), + [anon_sym_GT_EQ] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_PLUS_EQ] = ACTIONS(421), + [anon_sym_DASH_EQ] = ACTIONS(421), + [anon_sym_STAR_EQ] = ACTIONS(421), + [anon_sym_SLASH_EQ] = ACTIONS(421), + [anon_sym_PERCENT_EQ] = ACTIONS(421), + [anon_sym_AMP_EQ] = ACTIONS(421), + [anon_sym_PIPE_EQ] = ACTIONS(421), + [anon_sym_CARET_EQ] = ACTIONS(421), + [anon_sym_LT_LT_EQ] = ACTIONS(421), + [anon_sym_GT_GT_EQ] = ACTIONS(421), + [anon_sym_yield] = ACTIONS(423), + [anon_sym_move] = ACTIONS(423), + [anon_sym_DOT] = ACTIONS(423), + [sym_integer_literal] = ACTIONS(421), + [aux_sym_string_literal_token1] = ACTIONS(421), + [sym_char_literal] = ACTIONS(421), + [anon_sym_true] = ACTIONS(423), + [anon_sym_false] = ACTIONS(423), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(423), + [sym_super] = ACTIONS(423), + [sym_crate] = ACTIONS(423), + [sym_metavariable] = ACTIONS(421), + [sym_raw_string_literal] = ACTIONS(421), + [sym_float_literal] = ACTIONS(421), [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), + [61] = { + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24802,18 +25069,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(383), [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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24832,1221 +25099,1224 @@ 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(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), + [ts_builtin_sym_end] = ACTIONS(425), + [sym_identifier] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_macro_rules_BANG] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(427), + [anon_sym_i8] = ACTIONS(427), + [anon_sym_u16] = ACTIONS(427), + [anon_sym_i16] = ACTIONS(427), + [anon_sym_u32] = ACTIONS(427), + [anon_sym_i32] = ACTIONS(427), + [anon_sym_u64] = ACTIONS(427), + [anon_sym_i64] = ACTIONS(427), + [anon_sym_u128] = ACTIONS(427), + [anon_sym_i128] = ACTIONS(427), + [anon_sym_isize] = ACTIONS(427), + [anon_sym_usize] = ACTIONS(427), + [anon_sym_f32] = ACTIONS(427), + [anon_sym_f64] = ACTIONS(427), + [anon_sym_bool] = ACTIONS(427), + [anon_sym_str] = ACTIONS(427), + [anon_sym_char] = ACTIONS(427), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_as] = ACTIONS(427), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(427), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_fn] = ACTIONS(427), + [anon_sym_for] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_impl] = ACTIONS(427), + [anon_sym_let] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(427), + [anon_sym_match] = ACTIONS(427), + [anon_sym_mod] = ACTIONS(427), + [anon_sym_pub] = ACTIONS(427), + [anon_sym_return] = ACTIONS(427), + [anon_sym_static] = ACTIONS(427), + [anon_sym_struct] = ACTIONS(427), + [anon_sym_trait] = ACTIONS(427), + [anon_sym_type] = ACTIONS(427), + [anon_sym_union] = ACTIONS(427), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_use] = ACTIONS(427), + [anon_sym_while] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_extern] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_else] = ACTIONS(427), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_move] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(425), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_char_literal] = ACTIONS(425), + [anon_sym_true] = ACTIONS(427), + [anon_sym_false] = ACTIONS(427), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(427), + [sym_super] = ACTIONS(427), + [sym_crate] = ACTIONS(427), + [sym_metavariable] = ACTIONS(425), + [sym_raw_string_literal] = ACTIONS(425), + [sym_float_literal] = ACTIONS(425), [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), + [ts_builtin_sym_end] = ACTIONS(429), + [sym_identifier] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(429), + [anon_sym_macro_rules_BANG] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(429), + [anon_sym_u8] = ACTIONS(431), + [anon_sym_i8] = ACTIONS(431), + [anon_sym_u16] = ACTIONS(431), + [anon_sym_i16] = ACTIONS(431), + [anon_sym_u32] = ACTIONS(431), + [anon_sym_i32] = ACTIONS(431), + [anon_sym_u64] = ACTIONS(431), + [anon_sym_i64] = ACTIONS(431), + [anon_sym_u128] = ACTIONS(431), + [anon_sym_i128] = ACTIONS(431), + [anon_sym_isize] = ACTIONS(431), + [anon_sym_usize] = ACTIONS(431), + [anon_sym_f32] = ACTIONS(431), + [anon_sym_f64] = ACTIONS(431), + [anon_sym_bool] = ACTIONS(431), + [anon_sym_str] = ACTIONS(431), + [anon_sym_char] = ACTIONS(431), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_as] = ACTIONS(431), + [anon_sym_async] = ACTIONS(431), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(431), + [anon_sym_default] = ACTIONS(431), + [anon_sym_enum] = ACTIONS(431), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_for] = ACTIONS(431), + [anon_sym_if] = ACTIONS(431), + [anon_sym_impl] = ACTIONS(431), + [anon_sym_let] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(431), + [anon_sym_match] = ACTIONS(431), + [anon_sym_mod] = ACTIONS(431), + [anon_sym_pub] = ACTIONS(431), + [anon_sym_return] = ACTIONS(431), + [anon_sym_static] = ACTIONS(431), + [anon_sym_struct] = ACTIONS(431), + [anon_sym_trait] = ACTIONS(431), + [anon_sym_type] = ACTIONS(431), + [anon_sym_union] = ACTIONS(431), + [anon_sym_unsafe] = ACTIONS(431), + [anon_sym_use] = ACTIONS(431), + [anon_sym_while] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_extern] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(431), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_else] = ACTIONS(431), + [anon_sym_COLON_COLON] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_PLUS_EQ] = ACTIONS(429), + [anon_sym_DASH_EQ] = ACTIONS(429), + [anon_sym_STAR_EQ] = ACTIONS(429), + [anon_sym_SLASH_EQ] = ACTIONS(429), + [anon_sym_PERCENT_EQ] = ACTIONS(429), + [anon_sym_AMP_EQ] = ACTIONS(429), + [anon_sym_PIPE_EQ] = ACTIONS(429), + [anon_sym_CARET_EQ] = ACTIONS(429), + [anon_sym_LT_LT_EQ] = ACTIONS(429), + [anon_sym_GT_GT_EQ] = ACTIONS(429), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(431), + [sym_integer_literal] = ACTIONS(429), + [aux_sym_string_literal_token1] = ACTIONS(429), + [sym_char_literal] = ACTIONS(429), + [anon_sym_true] = ACTIONS(431), + [anon_sym_false] = ACTIONS(431), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(431), + [sym_super] = ACTIONS(431), + [sym_crate] = ACTIONS(431), + [sym_metavariable] = ACTIONS(429), + [sym_raw_string_literal] = ACTIONS(429), + [sym_float_literal] = ACTIONS(429), [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), + [ts_builtin_sym_end] = ACTIONS(433), + [sym_identifier] = ACTIONS(435), + [anon_sym_SEMI] = ACTIONS(433), + [anon_sym_macro_rules_BANG] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(433), + [anon_sym_u8] = ACTIONS(435), + [anon_sym_i8] = ACTIONS(435), + [anon_sym_u16] = ACTIONS(435), + [anon_sym_i16] = ACTIONS(435), + [anon_sym_u32] = ACTIONS(435), + [anon_sym_i32] = ACTIONS(435), + [anon_sym_u64] = ACTIONS(435), + [anon_sym_i64] = ACTIONS(435), + [anon_sym_u128] = ACTIONS(435), + [anon_sym_i128] = ACTIONS(435), + [anon_sym_isize] = ACTIONS(435), + [anon_sym_usize] = ACTIONS(435), + [anon_sym_f32] = ACTIONS(435), + [anon_sym_f64] = ACTIONS(435), + [anon_sym_bool] = ACTIONS(435), + [anon_sym_str] = ACTIONS(435), + [anon_sym_char] = ACTIONS(435), + [anon_sym_SQUOTE] = ACTIONS(435), + [anon_sym_as] = ACTIONS(435), + [anon_sym_async] = ACTIONS(435), + [anon_sym_break] = ACTIONS(435), + [anon_sym_const] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(435), + [anon_sym_enum] = ACTIONS(435), + [anon_sym_fn] = ACTIONS(435), + [anon_sym_for] = ACTIONS(435), + [anon_sym_if] = ACTIONS(435), + [anon_sym_impl] = ACTIONS(435), + [anon_sym_let] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(435), + [anon_sym_match] = ACTIONS(435), + [anon_sym_mod] = ACTIONS(435), + [anon_sym_pub] = ACTIONS(435), + [anon_sym_return] = ACTIONS(435), + [anon_sym_static] = ACTIONS(435), + [anon_sym_struct] = ACTIONS(435), + [anon_sym_trait] = ACTIONS(435), + [anon_sym_type] = ACTIONS(435), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(435), + [anon_sym_use] = ACTIONS(435), + [anon_sym_while] = ACTIONS(435), + [anon_sym_POUND] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_extern] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_else] = ACTIONS(435), + [anon_sym_COLON_COLON] = ACTIONS(433), + [anon_sym_AMP] = ACTIONS(435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT] = ACTIONS(435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_SLASH] = ACTIONS(435), + [anon_sym_PERCENT] = ACTIONS(435), + [anon_sym_PLUS_EQ] = ACTIONS(433), + [anon_sym_DASH_EQ] = ACTIONS(433), + [anon_sym_STAR_EQ] = ACTIONS(433), + [anon_sym_SLASH_EQ] = ACTIONS(433), + [anon_sym_PERCENT_EQ] = ACTIONS(433), + [anon_sym_AMP_EQ] = ACTIONS(433), + [anon_sym_PIPE_EQ] = ACTIONS(433), + [anon_sym_CARET_EQ] = ACTIONS(433), + [anon_sym_LT_LT_EQ] = ACTIONS(433), + [anon_sym_GT_GT_EQ] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_move] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(433), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(433), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(435), + [sym_super] = ACTIONS(435), + [sym_crate] = ACTIONS(435), + [sym_metavariable] = ACTIONS(433), + [sym_raw_string_literal] = ACTIONS(433), + [sym_float_literal] = ACTIONS(433), [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), + [ts_builtin_sym_end] = ACTIONS(437), + [sym_identifier] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(437), + [anon_sym_macro_rules_BANG] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(437), + [anon_sym_LBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_QMARK] = ACTIONS(437), + [anon_sym_u8] = ACTIONS(439), + [anon_sym_i8] = ACTIONS(439), + [anon_sym_u16] = ACTIONS(439), + [anon_sym_i16] = ACTIONS(439), + [anon_sym_u32] = ACTIONS(439), + [anon_sym_i32] = ACTIONS(439), + [anon_sym_u64] = ACTIONS(439), + [anon_sym_i64] = ACTIONS(439), + [anon_sym_u128] = ACTIONS(439), + [anon_sym_i128] = ACTIONS(439), + [anon_sym_isize] = ACTIONS(439), + [anon_sym_usize] = ACTIONS(439), + [anon_sym_f32] = ACTIONS(439), + [anon_sym_f64] = ACTIONS(439), + [anon_sym_bool] = ACTIONS(439), + [anon_sym_str] = ACTIONS(439), + [anon_sym_char] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(439), + [anon_sym_as] = ACTIONS(439), + [anon_sym_async] = ACTIONS(439), + [anon_sym_break] = ACTIONS(439), + [anon_sym_const] = ACTIONS(439), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_default] = ACTIONS(439), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_fn] = ACTIONS(439), + [anon_sym_for] = ACTIONS(439), + [anon_sym_if] = ACTIONS(439), + [anon_sym_impl] = ACTIONS(439), + [anon_sym_let] = ACTIONS(439), + [anon_sym_loop] = ACTIONS(439), + [anon_sym_match] = ACTIONS(439), + [anon_sym_mod] = ACTIONS(439), + [anon_sym_pub] = ACTIONS(439), + [anon_sym_return] = ACTIONS(439), + [anon_sym_static] = ACTIONS(439), + [anon_sym_struct] = ACTIONS(439), + [anon_sym_trait] = ACTIONS(439), + [anon_sym_type] = ACTIONS(439), + [anon_sym_union] = ACTIONS(439), + [anon_sym_unsafe] = ACTIONS(439), + [anon_sym_use] = ACTIONS(439), + [anon_sym_while] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(439), + [anon_sym_extern] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_else] = ACTIONS(439), + [anon_sym_COLON_COLON] = ACTIONS(437), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(437), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(437), + [anon_sym_PIPE_PIPE] = ACTIONS(437), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(437), + [anon_sym_BANG_EQ] = ACTIONS(437), + [anon_sym_LT_EQ] = ACTIONS(437), + [anon_sym_GT_EQ] = ACTIONS(437), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PERCENT] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_DASH_EQ] = ACTIONS(437), + [anon_sym_STAR_EQ] = ACTIONS(437), + [anon_sym_SLASH_EQ] = ACTIONS(437), + [anon_sym_PERCENT_EQ] = ACTIONS(437), + [anon_sym_AMP_EQ] = ACTIONS(437), + [anon_sym_PIPE_EQ] = ACTIONS(437), + [anon_sym_CARET_EQ] = ACTIONS(437), + [anon_sym_LT_LT_EQ] = ACTIONS(437), + [anon_sym_GT_GT_EQ] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_move] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(439), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(437), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(439), + [anon_sym_false] = ACTIONS(439), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(437), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), [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), + [ts_builtin_sym_end] = ACTIONS(441), + [sym_identifier] = ACTIONS(443), + [anon_sym_SEMI] = ACTIONS(441), + [anon_sym_macro_rules_BANG] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_QMARK] = ACTIONS(441), + [anon_sym_u8] = ACTIONS(443), + [anon_sym_i8] = ACTIONS(443), + [anon_sym_u16] = ACTIONS(443), + [anon_sym_i16] = ACTIONS(443), + [anon_sym_u32] = ACTIONS(443), + [anon_sym_i32] = ACTIONS(443), + [anon_sym_u64] = ACTIONS(443), + [anon_sym_i64] = ACTIONS(443), + [anon_sym_u128] = ACTIONS(443), + [anon_sym_i128] = ACTIONS(443), + [anon_sym_isize] = ACTIONS(443), + [anon_sym_usize] = ACTIONS(443), + [anon_sym_f32] = ACTIONS(443), + [anon_sym_f64] = ACTIONS(443), + [anon_sym_bool] = ACTIONS(443), + [anon_sym_str] = ACTIONS(443), + [anon_sym_char] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(443), + [anon_sym_as] = ACTIONS(443), + [anon_sym_async] = ACTIONS(443), + [anon_sym_break] = ACTIONS(443), + [anon_sym_const] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_default] = ACTIONS(443), + [anon_sym_enum] = ACTIONS(443), + [anon_sym_fn] = ACTIONS(443), + [anon_sym_for] = ACTIONS(443), + [anon_sym_if] = ACTIONS(443), + [anon_sym_impl] = ACTIONS(443), + [anon_sym_let] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(443), + [anon_sym_mod] = ACTIONS(443), + [anon_sym_pub] = ACTIONS(443), + [anon_sym_return] = ACTIONS(443), + [anon_sym_static] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(443), + [anon_sym_trait] = ACTIONS(443), + [anon_sym_type] = ACTIONS(443), + [anon_sym_union] = ACTIONS(443), + [anon_sym_unsafe] = ACTIONS(443), + [anon_sym_use] = ACTIONS(443), + [anon_sym_while] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(443), + [anon_sym_extern] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_GT] = ACTIONS(443), + [anon_sym_COLON_COLON] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_AMP_AMP] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_CARET] = ACTIONS(443), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_GT_EQ] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(443), + [anon_sym_GT_GT] = ACTIONS(443), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [anon_sym_PLUS_EQ] = ACTIONS(441), + [anon_sym_DASH_EQ] = ACTIONS(441), + [anon_sym_STAR_EQ] = ACTIONS(441), + [anon_sym_SLASH_EQ] = ACTIONS(441), + [anon_sym_PERCENT_EQ] = ACTIONS(441), + [anon_sym_AMP_EQ] = ACTIONS(441), + [anon_sym_PIPE_EQ] = ACTIONS(441), + [anon_sym_CARET_EQ] = ACTIONS(441), + [anon_sym_LT_LT_EQ] = ACTIONS(441), + [anon_sym_GT_GT_EQ] = ACTIONS(441), + [anon_sym_yield] = ACTIONS(443), + [anon_sym_move] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [sym_integer_literal] = ACTIONS(441), + [aux_sym_string_literal_token1] = ACTIONS(441), + [sym_char_literal] = ACTIONS(441), + [anon_sym_true] = ACTIONS(443), + [anon_sym_false] = ACTIONS(443), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(443), + [sym_crate] = ACTIONS(443), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(441), + [sym_float_literal] = ACTIONS(441), [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), + [ts_builtin_sym_end] = ACTIONS(445), + [sym_identifier] = ACTIONS(447), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_macro_rules_BANG] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(445), + [anon_sym_u8] = ACTIONS(447), + [anon_sym_i8] = ACTIONS(447), + [anon_sym_u16] = ACTIONS(447), + [anon_sym_i16] = ACTIONS(447), + [anon_sym_u32] = ACTIONS(447), + [anon_sym_i32] = ACTIONS(447), + [anon_sym_u64] = ACTIONS(447), + [anon_sym_i64] = ACTIONS(447), + [anon_sym_u128] = ACTIONS(447), + [anon_sym_i128] = ACTIONS(447), + [anon_sym_isize] = ACTIONS(447), + [anon_sym_usize] = ACTIONS(447), + [anon_sym_f32] = ACTIONS(447), + [anon_sym_f64] = ACTIONS(447), + [anon_sym_bool] = ACTIONS(447), + [anon_sym_str] = ACTIONS(447), + [anon_sym_char] = ACTIONS(447), + [anon_sym_SQUOTE] = ACTIONS(447), + [anon_sym_as] = ACTIONS(447), + [anon_sym_async] = ACTIONS(447), + [anon_sym_break] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [anon_sym_continue] = ACTIONS(447), + [anon_sym_default] = ACTIONS(447), + [anon_sym_enum] = ACTIONS(447), + [anon_sym_fn] = ACTIONS(447), + [anon_sym_for] = ACTIONS(447), + [anon_sym_if] = ACTIONS(447), + [anon_sym_impl] = ACTIONS(447), + [anon_sym_let] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(447), + [anon_sym_match] = ACTIONS(447), + [anon_sym_mod] = ACTIONS(447), + [anon_sym_pub] = ACTIONS(447), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(447), + [anon_sym_struct] = ACTIONS(447), + [anon_sym_trait] = ACTIONS(447), + [anon_sym_type] = ACTIONS(447), + [anon_sym_union] = ACTIONS(447), + [anon_sym_unsafe] = ACTIONS(447), + [anon_sym_use] = ACTIONS(447), + [anon_sym_while] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(445), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(445), + [anon_sym_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(447), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PERCENT] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), + [anon_sym_STAR_EQ] = ACTIONS(445), + [anon_sym_SLASH_EQ] = ACTIONS(445), + [anon_sym_PERCENT_EQ] = ACTIONS(445), + [anon_sym_AMP_EQ] = ACTIONS(445), + [anon_sym_PIPE_EQ] = ACTIONS(445), + [anon_sym_CARET_EQ] = ACTIONS(445), + [anon_sym_LT_LT_EQ] = ACTIONS(445), + [anon_sym_GT_GT_EQ] = ACTIONS(445), + [anon_sym_yield] = ACTIONS(447), + [anon_sym_move] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(447), + [sym_integer_literal] = ACTIONS(445), + [aux_sym_string_literal_token1] = ACTIONS(445), + [sym_char_literal] = ACTIONS(445), + [anon_sym_true] = ACTIONS(447), + [anon_sym_false] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(447), + [sym_super] = ACTIONS(447), + [sym_crate] = ACTIONS(447), + [sym_metavariable] = ACTIONS(445), + [sym_raw_string_literal] = ACTIONS(445), + [sym_float_literal] = ACTIONS(445), [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1304), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_tuple_expression_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_u8] = ACTIONS(466), + [anon_sym_i8] = ACTIONS(466), + [anon_sym_u16] = ACTIONS(466), + [anon_sym_i16] = ACTIONS(466), + [anon_sym_u32] = ACTIONS(466), + [anon_sym_i32] = ACTIONS(466), + [anon_sym_u64] = ACTIONS(466), + [anon_sym_i64] = ACTIONS(466), + [anon_sym_u128] = ACTIONS(466), + [anon_sym_i128] = ACTIONS(466), + [anon_sym_isize] = ACTIONS(466), + [anon_sym_usize] = ACTIONS(466), + [anon_sym_f32] = ACTIONS(466), + [anon_sym_f64] = ACTIONS(466), + [anon_sym_bool] = ACTIONS(466), + [anon_sym_str] = ACTIONS(466), + [anon_sym_char] = ACTIONS(466), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_async] = ACTIONS(472), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_default] = ACTIONS(484), + [anon_sym_for] = ACTIONS(487), + [anon_sym_if] = ACTIONS(490), + [anon_sym_loop] = ACTIONS(493), + [anon_sym_match] = ACTIONS(496), + [anon_sym_return] = ACTIONS(499), + [anon_sym_union] = ACTIONS(484), + [anon_sym_unsafe] = ACTIONS(502), + [anon_sym_while] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_AMP] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_move] = ACTIONS(526), + [sym_integer_literal] = ACTIONS(529), + [aux_sym_string_literal_token1] = ACTIONS(532), + [sym_char_literal] = ACTIONS(529), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(538), + [sym_super] = ACTIONS(541), + [sym_crate] = ACTIONS(541), + [sym_metavariable] = ACTIONS(544), + [sym_raw_string_literal] = ACTIONS(529), + [sym_float_literal] = ACTIONS(529), [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), + [ts_builtin_sym_end] = ACTIONS(547), + [sym_identifier] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_macro_rules_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_u8] = ACTIONS(549), + [anon_sym_i8] = ACTIONS(549), + [anon_sym_u16] = ACTIONS(549), + [anon_sym_i16] = ACTIONS(549), + [anon_sym_u32] = ACTIONS(549), + [anon_sym_i32] = ACTIONS(549), + [anon_sym_u64] = ACTIONS(549), + [anon_sym_i64] = ACTIONS(549), + [anon_sym_u128] = ACTIONS(549), + [anon_sym_i128] = ACTIONS(549), + [anon_sym_isize] = ACTIONS(549), + [anon_sym_usize] = ACTIONS(549), + [anon_sym_f32] = ACTIONS(549), + [anon_sym_f64] = ACTIONS(549), + [anon_sym_bool] = ACTIONS(549), + [anon_sym_str] = ACTIONS(549), + [anon_sym_char] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(549), + [anon_sym_as] = ACTIONS(549), + [anon_sym_async] = ACTIONS(549), + [anon_sym_break] = ACTIONS(549), + [anon_sym_const] = ACTIONS(549), + [anon_sym_continue] = ACTIONS(549), + [anon_sym_default] = ACTIONS(549), + [anon_sym_enum] = ACTIONS(549), + [anon_sym_fn] = ACTIONS(549), + [anon_sym_for] = ACTIONS(549), + [anon_sym_if] = ACTIONS(549), + [anon_sym_impl] = ACTIONS(549), + [anon_sym_let] = ACTIONS(549), + [anon_sym_loop] = ACTIONS(549), + [anon_sym_match] = ACTIONS(549), + [anon_sym_mod] = ACTIONS(549), + [anon_sym_pub] = ACTIONS(549), + [anon_sym_return] = ACTIONS(549), + [anon_sym_static] = ACTIONS(549), + [anon_sym_struct] = ACTIONS(549), + [anon_sym_trait] = ACTIONS(549), + [anon_sym_type] = ACTIONS(549), + [anon_sym_union] = ACTIONS(549), + [anon_sym_unsafe] = ACTIONS(549), + [anon_sym_use] = ACTIONS(549), + [anon_sym_while] = ACTIONS(549), + [anon_sym_POUND] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_extern] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_COLON_COLON] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(547), + [anon_sym_DOT_DOT] = ACTIONS(549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(547), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_move] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(549), + [sym_integer_literal] = ACTIONS(547), + [aux_sym_string_literal_token1] = ACTIONS(547), + [sym_char_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(549), + [sym_super] = ACTIONS(549), + [sym_crate] = ACTIONS(549), + [sym_metavariable] = ACTIONS(547), + [sym_raw_string_literal] = ACTIONS(547), + [sym_float_literal] = ACTIONS(547), [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), + [ts_builtin_sym_end] = ACTIONS(551), + [sym_identifier] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(551), + [anon_sym_macro_rules_BANG] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_RBRACE] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(553), + [anon_sym_i8] = ACTIONS(553), + [anon_sym_u16] = ACTIONS(553), + [anon_sym_i16] = ACTIONS(553), + [anon_sym_u32] = ACTIONS(553), + [anon_sym_i32] = ACTIONS(553), + [anon_sym_u64] = ACTIONS(553), + [anon_sym_i64] = ACTIONS(553), + [anon_sym_u128] = ACTIONS(553), + [anon_sym_i128] = ACTIONS(553), + [anon_sym_isize] = ACTIONS(553), + [anon_sym_usize] = ACTIONS(553), + [anon_sym_f32] = ACTIONS(553), + [anon_sym_f64] = ACTIONS(553), + [anon_sym_bool] = ACTIONS(553), + [anon_sym_str] = ACTIONS(553), + [anon_sym_char] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_as] = ACTIONS(553), + [anon_sym_async] = ACTIONS(553), + [anon_sym_break] = ACTIONS(553), + [anon_sym_const] = ACTIONS(553), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_default] = ACTIONS(553), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_fn] = ACTIONS(553), + [anon_sym_for] = ACTIONS(553), + [anon_sym_if] = ACTIONS(553), + [anon_sym_impl] = ACTIONS(553), + [anon_sym_let] = ACTIONS(553), + [anon_sym_loop] = ACTIONS(553), + [anon_sym_match] = ACTIONS(553), + [anon_sym_mod] = ACTIONS(553), + [anon_sym_pub] = ACTIONS(553), + [anon_sym_return] = ACTIONS(553), + [anon_sym_static] = ACTIONS(553), + [anon_sym_struct] = ACTIONS(553), + [anon_sym_trait] = ACTIONS(553), + [anon_sym_type] = ACTIONS(553), + [anon_sym_union] = ACTIONS(553), + [anon_sym_unsafe] = ACTIONS(553), + [anon_sym_use] = ACTIONS(553), + [anon_sym_while] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(553), + [anon_sym_extern] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(553), + [anon_sym_GT] = ACTIONS(553), + [anon_sym_COLON_COLON] = ACTIONS(551), + [anon_sym_AMP] = ACTIONS(553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_AMP_AMP] = ACTIONS(551), + [anon_sym_PIPE_PIPE] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(553), + [anon_sym_CARET] = ACTIONS(553), + [anon_sym_EQ_EQ] = ACTIONS(551), + [anon_sym_BANG_EQ] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(553), + [anon_sym_GT_GT] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(553), + [anon_sym_PERCENT] = ACTIONS(553), + [anon_sym_PLUS_EQ] = ACTIONS(551), + [anon_sym_DASH_EQ] = ACTIONS(551), + [anon_sym_STAR_EQ] = ACTIONS(551), + [anon_sym_SLASH_EQ] = ACTIONS(551), + [anon_sym_PERCENT_EQ] = ACTIONS(551), + [anon_sym_AMP_EQ] = ACTIONS(551), + [anon_sym_PIPE_EQ] = ACTIONS(551), + [anon_sym_CARET_EQ] = ACTIONS(551), + [anon_sym_LT_LT_EQ] = ACTIONS(551), + [anon_sym_GT_GT_EQ] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(553), + [anon_sym_move] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(553), + [sym_integer_literal] = ACTIONS(551), + [aux_sym_string_literal_token1] = ACTIONS(551), + [sym_char_literal] = ACTIONS(551), + [anon_sym_true] = ACTIONS(553), + [anon_sym_false] = ACTIONS(553), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(553), + [sym_super] = ACTIONS(553), + [sym_crate] = ACTIONS(553), + [sym_metavariable] = ACTIONS(551), + [sym_raw_string_literal] = ACTIONS(551), + [sym_float_literal] = ACTIONS(551), [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), + [ts_builtin_sym_end] = ACTIONS(555), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_macro_rules_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [anon_sym_POUND] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_extern] = ACTIONS(557), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_COLON_COLON] = ACTIONS(555), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(557), + [anon_sym_DOT_DOT_EQ] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_AMP_AMP] = ACTIONS(555), + [anon_sym_PIPE_PIPE] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(557), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ] = ACTIONS(555), + [anon_sym_LT_EQ] = ACTIONS(555), + [anon_sym_GT_EQ] = ACTIONS(555), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(555), + [anon_sym_DASH_EQ] = ACTIONS(555), + [anon_sym_STAR_EQ] = ACTIONS(555), + [anon_sym_SLASH_EQ] = ACTIONS(555), + [anon_sym_PERCENT_EQ] = ACTIONS(555), + [anon_sym_AMP_EQ] = ACTIONS(555), + [anon_sym_PIPE_EQ] = ACTIONS(555), + [anon_sym_CARET_EQ] = ACTIONS(555), + [anon_sym_LT_LT_EQ] = ACTIONS(555), + [anon_sym_GT_GT_EQ] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_move] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(555), + [aux_sym_string_literal_token1] = ACTIONS(555), + [sym_char_literal] = ACTIONS(555), + [anon_sym_true] = ACTIONS(557), + [anon_sym_false] = ACTIONS(557), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(555), + [sym_raw_string_literal] = ACTIONS(555), + [sym_float_literal] = ACTIONS(555), + [sym_block_comment] = ACTIONS(3), + }, + [72] = { + [ts_builtin_sym_end] = ACTIONS(559), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_macro_rules_BANG] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_extern] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT] = ACTIONS(561), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_yield] = ACTIONS(561), + [anon_sym_move] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(559), + [aux_sym_string_literal_token1] = ACTIONS(559), + [sym_char_literal] = ACTIONS(559), + [anon_sym_true] = ACTIONS(561), + [anon_sym_false] = ACTIONS(561), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(559), + [sym_raw_string_literal] = ACTIONS(559), + [sym_float_literal] = ACTIONS(559), + [sym_block_comment] = ACTIONS(3), + }, + [73] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_let_condition] = STATE(1982), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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), @@ -26075,6 +26345,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(415), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -26104,797 +26375,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_macro_rules_BANG] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_extern] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_yield] = ACTIONS(565), + [anon_sym_move] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(563), + [aux_sym_string_literal_token1] = ACTIONS(563), + [sym_char_literal] = ACTIONS(563), + [anon_sym_true] = ACTIONS(565), + [anon_sym_false] = ACTIONS(565), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(563), + [sym_raw_string_literal] = ACTIONS(563), + [sym_float_literal] = ACTIONS(563), [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), + [ts_builtin_sym_end] = ACTIONS(567), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_macro_rules_BANG] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_extern] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_move] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(567), + [aux_sym_string_literal_token1] = ACTIONS(567), + [sym_char_literal] = ACTIONS(567), + [anon_sym_true] = ACTIONS(569), + [anon_sym_false] = ACTIONS(569), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(567), + [sym_raw_string_literal] = ACTIONS(567), + [sym_float_literal] = ACTIONS(567), [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), + [ts_builtin_sym_end] = ACTIONS(571), + [sym_identifier] = ACTIONS(573), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_macro_rules_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_u8] = ACTIONS(573), + [anon_sym_i8] = ACTIONS(573), + [anon_sym_u16] = ACTIONS(573), + [anon_sym_i16] = ACTIONS(573), + [anon_sym_u32] = ACTIONS(573), + [anon_sym_i32] = ACTIONS(573), + [anon_sym_u64] = ACTIONS(573), + [anon_sym_i64] = ACTIONS(573), + [anon_sym_u128] = ACTIONS(573), + [anon_sym_i128] = ACTIONS(573), + [anon_sym_isize] = ACTIONS(573), + [anon_sym_usize] = ACTIONS(573), + [anon_sym_f32] = ACTIONS(573), + [anon_sym_f64] = ACTIONS(573), + [anon_sym_bool] = ACTIONS(573), + [anon_sym_str] = ACTIONS(573), + [anon_sym_char] = ACTIONS(573), + [anon_sym_SQUOTE] = ACTIONS(573), + [anon_sym_as] = ACTIONS(575), + [anon_sym_async] = ACTIONS(573), + [anon_sym_break] = ACTIONS(573), + [anon_sym_const] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_default] = ACTIONS(573), + [anon_sym_enum] = ACTIONS(573), + [anon_sym_fn] = ACTIONS(573), + [anon_sym_for] = ACTIONS(573), + [anon_sym_if] = ACTIONS(573), + [anon_sym_impl] = ACTIONS(573), + [anon_sym_let] = ACTIONS(573), + [anon_sym_loop] = ACTIONS(573), + [anon_sym_match] = ACTIONS(573), + [anon_sym_mod] = ACTIONS(573), + [anon_sym_pub] = ACTIONS(573), + [anon_sym_return] = ACTIONS(573), + [anon_sym_static] = ACTIONS(573), + [anon_sym_struct] = ACTIONS(573), + [anon_sym_trait] = ACTIONS(573), + [anon_sym_type] = ACTIONS(573), + [anon_sym_union] = ACTIONS(573), + [anon_sym_unsafe] = ACTIONS(573), + [anon_sym_use] = ACTIONS(573), + [anon_sym_while] = ACTIONS(573), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_extern] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(575), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_PLUS_EQ] = ACTIONS(577), + [anon_sym_DASH_EQ] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(577), + [anon_sym_SLASH_EQ] = ACTIONS(577), + [anon_sym_PERCENT_EQ] = ACTIONS(577), + [anon_sym_AMP_EQ] = ACTIONS(577), + [anon_sym_PIPE_EQ] = ACTIONS(577), + [anon_sym_CARET_EQ] = ACTIONS(577), + [anon_sym_LT_LT_EQ] = ACTIONS(577), + [anon_sym_GT_GT_EQ] = ACTIONS(577), + [anon_sym_yield] = ACTIONS(573), [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), + [anon_sym_DOT] = ACTIONS(575), + [sym_integer_literal] = ACTIONS(571), + [aux_sym_string_literal_token1] = ACTIONS(571), + [sym_char_literal] = ACTIONS(571), + [anon_sym_true] = ACTIONS(573), + [anon_sym_false] = ACTIONS(573), [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_self] = ACTIONS(573), + [sym_super] = ACTIONS(573), + [sym_crate] = ACTIONS(573), + [sym_metavariable] = ACTIONS(571), + [sym_raw_string_literal] = ACTIONS(571), + [sym_float_literal] = ACTIONS(571), [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), + [77] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_let_condition] = STATE(1982), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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), @@ -26923,6 +26769,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(415), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -26933,7 +26780,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(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26952,266 +26799,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), - }, - [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), - }, - [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), + [78] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_tuple_expression_repeat1] = STATE(86), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(581), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -27240,7 +26876,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(382), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -27270,692 +26905,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), + [79] = { + [ts_builtin_sym_end] = ACTIONS(583), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(583), + [anon_sym_macro_rules_BANG] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [anon_sym_POUND] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_extern] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_COLON_COLON] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(583), + [anon_sym_DOT_DOT] = ACTIONS(585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(583), + [anon_sym_BANG_EQ] = ACTIONS(583), + [anon_sym_LT_EQ] = ACTIONS(583), + [anon_sym_GT_EQ] = ACTIONS(583), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(583), + [anon_sym_DASH_EQ] = ACTIONS(583), + [anon_sym_STAR_EQ] = ACTIONS(583), + [anon_sym_SLASH_EQ] = ACTIONS(583), + [anon_sym_PERCENT_EQ] = ACTIONS(583), + [anon_sym_AMP_EQ] = ACTIONS(583), + [anon_sym_PIPE_EQ] = ACTIONS(583), + [anon_sym_CARET_EQ] = ACTIONS(583), + [anon_sym_LT_LT_EQ] = ACTIONS(583), + [anon_sym_GT_GT_EQ] = ACTIONS(583), + [anon_sym_yield] = ACTIONS(585), + [anon_sym_move] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(583), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(583), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(583), + [sym_raw_string_literal] = ACTIONS(583), + [sym_float_literal] = ACTIONS(583), [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), + [80] = { + [ts_builtin_sym_end] = ACTIONS(587), + [sym_identifier] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_macro_rules_BANG] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(589), + [anon_sym_i8] = ACTIONS(589), + [anon_sym_u16] = ACTIONS(589), + [anon_sym_i16] = ACTIONS(589), + [anon_sym_u32] = ACTIONS(589), + [anon_sym_i32] = ACTIONS(589), + [anon_sym_u64] = ACTIONS(589), + [anon_sym_i64] = ACTIONS(589), + [anon_sym_u128] = ACTIONS(589), + [anon_sym_i128] = ACTIONS(589), + [anon_sym_isize] = ACTIONS(589), + [anon_sym_usize] = ACTIONS(589), + [anon_sym_f32] = ACTIONS(589), + [anon_sym_f64] = ACTIONS(589), + [anon_sym_bool] = ACTIONS(589), + [anon_sym_str] = ACTIONS(589), + [anon_sym_char] = ACTIONS(589), + [anon_sym_SQUOTE] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_async] = ACTIONS(589), + [anon_sym_break] = ACTIONS(589), + [anon_sym_const] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(589), + [anon_sym_default] = ACTIONS(589), + [anon_sym_enum] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(589), + [anon_sym_for] = ACTIONS(589), + [anon_sym_if] = ACTIONS(589), + [anon_sym_impl] = ACTIONS(589), + [anon_sym_let] = ACTIONS(589), + [anon_sym_loop] = ACTIONS(589), + [anon_sym_match] = ACTIONS(589), + [anon_sym_mod] = ACTIONS(589), + [anon_sym_pub] = ACTIONS(589), + [anon_sym_return] = ACTIONS(589), + [anon_sym_static] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(589), + [anon_sym_trait] = ACTIONS(589), + [anon_sym_type] = ACTIONS(589), + [anon_sym_union] = ACTIONS(589), + [anon_sym_unsafe] = ACTIONS(589), + [anon_sym_use] = ACTIONS(589), + [anon_sym_while] = ACTIONS(589), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(589), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_extern] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT] = ACTIONS(589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_move] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(589), + [sym_integer_literal] = ACTIONS(587), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(587), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(589), + [sym_super] = ACTIONS(589), + [sym_crate] = ACTIONS(589), + [sym_metavariable] = ACTIONS(587), + [sym_raw_string_literal] = ACTIONS(587), + [sym_float_literal] = ACTIONS(587), [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), + [81] = { + [ts_builtin_sym_end] = ACTIONS(591), + [sym_identifier] = ACTIONS(593), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_macro_rules_BANG] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(591), + [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(591), + [anon_sym_u8] = ACTIONS(593), + [anon_sym_i8] = ACTIONS(593), + [anon_sym_u16] = ACTIONS(593), + [anon_sym_i16] = ACTIONS(593), + [anon_sym_u32] = ACTIONS(593), + [anon_sym_i32] = ACTIONS(593), + [anon_sym_u64] = ACTIONS(593), + [anon_sym_i64] = ACTIONS(593), + [anon_sym_u128] = ACTIONS(593), + [anon_sym_i128] = ACTIONS(593), + [anon_sym_isize] = ACTIONS(593), + [anon_sym_usize] = ACTIONS(593), + [anon_sym_f32] = ACTIONS(593), + [anon_sym_f64] = ACTIONS(593), + [anon_sym_bool] = ACTIONS(593), + [anon_sym_str] = ACTIONS(593), + [anon_sym_char] = ACTIONS(593), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_async] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_const] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_default] = ACTIONS(593), + [anon_sym_enum] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(593), + [anon_sym_for] = ACTIONS(593), + [anon_sym_if] = ACTIONS(593), + [anon_sym_impl] = ACTIONS(593), + [anon_sym_let] = ACTIONS(593), + [anon_sym_loop] = ACTIONS(593), + [anon_sym_match] = ACTIONS(593), + [anon_sym_mod] = ACTIONS(593), + [anon_sym_pub] = ACTIONS(593), + [anon_sym_return] = ACTIONS(593), + [anon_sym_static] = ACTIONS(593), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_trait] = ACTIONS(593), + [anon_sym_type] = ACTIONS(593), + [anon_sym_union] = ACTIONS(593), + [anon_sym_unsafe] = ACTIONS(593), + [anon_sym_use] = ACTIONS(593), + [anon_sym_while] = ACTIONS(593), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_extern] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(591), + [anon_sym_AMP] = ACTIONS(593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DOT_DOT_EQ] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT_EQ] = ACTIONS(591), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), + [anon_sym_STAR_EQ] = ACTIONS(591), + [anon_sym_SLASH_EQ] = ACTIONS(591), + [anon_sym_PERCENT_EQ] = ACTIONS(591), + [anon_sym_AMP_EQ] = ACTIONS(591), + [anon_sym_PIPE_EQ] = ACTIONS(591), + [anon_sym_CARET_EQ] = ACTIONS(591), + [anon_sym_LT_LT_EQ] = ACTIONS(591), + [anon_sym_GT_GT_EQ] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_move] = ACTIONS(593), + [anon_sym_DOT] = ACTIONS(593), + [sym_integer_literal] = ACTIONS(591), + [aux_sym_string_literal_token1] = ACTIONS(591), + [sym_char_literal] = ACTIONS(591), + [anon_sym_true] = ACTIONS(593), + [anon_sym_false] = ACTIONS(593), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(593), + [sym_super] = ACTIONS(593), + [sym_crate] = ACTIONS(593), + [sym_metavariable] = ACTIONS(591), + [sym_raw_string_literal] = ACTIONS(591), + [sym_float_literal] = ACTIONS(591), [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), + [82] = { + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(577), + [anon_sym_macro_rules_BANG] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_u8] = ACTIONS(597), + [anon_sym_i8] = ACTIONS(597), + [anon_sym_u16] = ACTIONS(597), + [anon_sym_i16] = ACTIONS(597), + [anon_sym_u32] = ACTIONS(597), + [anon_sym_i32] = ACTIONS(597), + [anon_sym_u64] = ACTIONS(597), + [anon_sym_i64] = ACTIONS(597), + [anon_sym_u128] = ACTIONS(597), + [anon_sym_i128] = ACTIONS(597), + [anon_sym_isize] = ACTIONS(597), + [anon_sym_usize] = ACTIONS(597), + [anon_sym_f32] = ACTIONS(597), + [anon_sym_f64] = ACTIONS(597), + [anon_sym_bool] = ACTIONS(597), + [anon_sym_str] = ACTIONS(597), + [anon_sym_char] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_as] = ACTIONS(575), + [anon_sym_async] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_impl] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_loop] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_mod] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_static] = ACTIONS(597), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_trait] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_union] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_use] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_POUND] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_extern] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_GT] = ACTIONS(575), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(575), + [anon_sym_DOT_DOT_EQ] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_AMP_AMP] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_PLUS_EQ] = ACTIONS(577), + [anon_sym_DASH_EQ] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(577), + [anon_sym_SLASH_EQ] = ACTIONS(577), + [anon_sym_PERCENT_EQ] = ACTIONS(577), + [anon_sym_AMP_EQ] = ACTIONS(577), + [anon_sym_PIPE_EQ] = ACTIONS(577), + [anon_sym_CARET_EQ] = ACTIONS(577), + [anon_sym_LT_LT_EQ] = ACTIONS(577), + [anon_sym_GT_GT_EQ] = ACTIONS(577), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_move] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(575), + [sym_integer_literal] = ACTIONS(595), + [aux_sym_string_literal_token1] = ACTIONS(595), + [sym_char_literal] = ACTIONS(595), + [anon_sym_true] = ACTIONS(597), + [anon_sym_false] = ACTIONS(597), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_crate] = ACTIONS(597), + [sym_metavariable] = ACTIONS(595), + [sym_raw_string_literal] = ACTIONS(595), + [sym_float_literal] = ACTIONS(595), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(601), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_macro_rules_BANG] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_u8] = ACTIONS(601), + [anon_sym_i8] = ACTIONS(601), + [anon_sym_u16] = ACTIONS(601), + [anon_sym_i16] = ACTIONS(601), + [anon_sym_u32] = ACTIONS(601), + [anon_sym_i32] = ACTIONS(601), + [anon_sym_u64] = ACTIONS(601), + [anon_sym_i64] = ACTIONS(601), + [anon_sym_u128] = ACTIONS(601), + [anon_sym_i128] = ACTIONS(601), + [anon_sym_isize] = ACTIONS(601), + [anon_sym_usize] = ACTIONS(601), + [anon_sym_f32] = ACTIONS(601), + [anon_sym_f64] = ACTIONS(601), + [anon_sym_bool] = ACTIONS(601), + [anon_sym_str] = ACTIONS(601), + [anon_sym_char] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_async] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_default] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_impl] = ACTIONS(601), + [anon_sym_let] = ACTIONS(601), + [anon_sym_loop] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_mod] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_static] = ACTIONS(601), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_trait] = ACTIONS(601), + [anon_sym_type] = ACTIONS(601), + [anon_sym_union] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_use] = ACTIONS(601), + [anon_sym_while] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(601), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_extern] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_COLON_COLON] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(599), + [anon_sym_DOT_DOT] = ACTIONS(601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(599), + [anon_sym_DASH_EQ] = ACTIONS(599), + [anon_sym_STAR_EQ] = ACTIONS(599), + [anon_sym_SLASH_EQ] = ACTIONS(599), + [anon_sym_PERCENT_EQ] = ACTIONS(599), + [anon_sym_AMP_EQ] = ACTIONS(599), + [anon_sym_PIPE_EQ] = ACTIONS(599), + [anon_sym_CARET_EQ] = ACTIONS(599), + [anon_sym_LT_LT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_EQ] = ACTIONS(599), + [anon_sym_yield] = ACTIONS(601), + [anon_sym_move] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(599), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(601), + [anon_sym_false] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(601), + [sym_super] = ACTIONS(601), + [sym_crate] = ACTIONS(601), + [sym_metavariable] = ACTIONS(599), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [84] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_let_condition] = STATE(1982), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), [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), - [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(399), + [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(401), [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(399), [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(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [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), }, - [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), + [85] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_let_condition] = STATE(1982), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), [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), - [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(399), + [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(401), [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(399), [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(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [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), }, - [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(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), + [86] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_tuple_expression_repeat1] = STATE(68), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(605), [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), @@ -28011,53 +27753,55 @@ 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(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), + [87] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_tuple_expression_repeat1] = STATE(88), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -28093,12 +27837,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(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_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -28116,53 +27859,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [88] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [aux_sym_tuple_expression_repeat1] = STATE(68), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(607), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -28201,8 +27946,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(622), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28221,56 +27965,691 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [89] = { + [ts_builtin_sym_end] = ACTIONS(609), + [sym_identifier] = ACTIONS(611), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_macro_rules_BANG] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(611), + [anon_sym_i8] = ACTIONS(611), + [anon_sym_u16] = ACTIONS(611), + [anon_sym_i16] = ACTIONS(611), + [anon_sym_u32] = ACTIONS(611), + [anon_sym_i32] = ACTIONS(611), + [anon_sym_u64] = ACTIONS(611), + [anon_sym_i64] = ACTIONS(611), + [anon_sym_u128] = ACTIONS(611), + [anon_sym_i128] = ACTIONS(611), + [anon_sym_isize] = ACTIONS(611), + [anon_sym_usize] = ACTIONS(611), + [anon_sym_f32] = ACTIONS(611), + [anon_sym_f64] = ACTIONS(611), + [anon_sym_bool] = ACTIONS(611), + [anon_sym_str] = ACTIONS(611), + [anon_sym_char] = ACTIONS(611), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_async] = ACTIONS(611), + [anon_sym_break] = ACTIONS(611), + [anon_sym_const] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(611), + [anon_sym_default] = ACTIONS(611), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_for] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_impl] = ACTIONS(611), + [anon_sym_let] = ACTIONS(611), + [anon_sym_loop] = ACTIONS(611), + [anon_sym_match] = ACTIONS(611), + [anon_sym_mod] = ACTIONS(611), + [anon_sym_pub] = ACTIONS(611), + [anon_sym_return] = ACTIONS(611), + [anon_sym_static] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_trait] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), + [anon_sym_union] = ACTIONS(611), + [anon_sym_unsafe] = ACTIONS(611), + [anon_sym_use] = ACTIONS(611), + [anon_sym_while] = ACTIONS(611), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_extern] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT] = ACTIONS(611), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_yield] = ACTIONS(611), + [anon_sym_move] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(609), + [aux_sym_string_literal_token1] = ACTIONS(609), + [sym_char_literal] = ACTIONS(609), + [anon_sym_true] = ACTIONS(611), + [anon_sym_false] = ACTIONS(611), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(611), + [sym_super] = ACTIONS(611), + [sym_crate] = ACTIONS(611), + [sym_metavariable] = ACTIONS(609), + [sym_raw_string_literal] = ACTIONS(609), + [sym_float_literal] = ACTIONS(609), + [sym_block_comment] = ACTIONS(3), + }, + [90] = { + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_macro_rules_BANG] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_u8] = ACTIONS(615), + [anon_sym_i8] = ACTIONS(615), + [anon_sym_u16] = ACTIONS(615), + [anon_sym_i16] = ACTIONS(615), + [anon_sym_u32] = ACTIONS(615), + [anon_sym_i32] = ACTIONS(615), + [anon_sym_u64] = ACTIONS(615), + [anon_sym_i64] = ACTIONS(615), + [anon_sym_u128] = ACTIONS(615), + [anon_sym_i128] = ACTIONS(615), + [anon_sym_isize] = ACTIONS(615), + [anon_sym_usize] = ACTIONS(615), + [anon_sym_f32] = ACTIONS(615), + [anon_sym_f64] = ACTIONS(615), + [anon_sym_bool] = ACTIONS(615), + [anon_sym_str] = ACTIONS(615), + [anon_sym_char] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_async] = ACTIONS(615), + [anon_sym_break] = ACTIONS(615), + [anon_sym_const] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_default] = ACTIONS(615), + [anon_sym_enum] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_impl] = ACTIONS(615), + [anon_sym_let] = ACTIONS(615), + [anon_sym_loop] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_mod] = ACTIONS(615), + [anon_sym_pub] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_static] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_trait] = ACTIONS(615), + [anon_sym_type] = ACTIONS(615), + [anon_sym_union] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_use] = ACTIONS(615), + [anon_sym_while] = ACTIONS(615), + [anon_sym_POUND] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_extern] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_COLON_COLON] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(613), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(613), + [anon_sym_DASH_EQ] = ACTIONS(613), + [anon_sym_STAR_EQ] = ACTIONS(613), + [anon_sym_SLASH_EQ] = ACTIONS(613), + [anon_sym_PERCENT_EQ] = ACTIONS(613), + [anon_sym_AMP_EQ] = ACTIONS(613), + [anon_sym_PIPE_EQ] = ACTIONS(613), + [anon_sym_CARET_EQ] = ACTIONS(613), + [anon_sym_LT_LT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_EQ] = ACTIONS(613), + [anon_sym_yield] = ACTIONS(615), + [anon_sym_move] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [sym_integer_literal] = ACTIONS(613), + [aux_sym_string_literal_token1] = ACTIONS(613), + [sym_char_literal] = ACTIONS(613), + [anon_sym_true] = ACTIONS(615), + [anon_sym_false] = ACTIONS(615), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(615), + [sym_super] = ACTIONS(615), + [sym_crate] = ACTIONS(615), + [sym_metavariable] = ACTIONS(613), + [sym_raw_string_literal] = ACTIONS(613), + [sym_float_literal] = ACTIONS(613), + [sym_block_comment] = ACTIONS(3), + }, + [91] = { + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(619), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_macro_rules_BANG] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_u8] = ACTIONS(619), + [anon_sym_i8] = ACTIONS(619), + [anon_sym_u16] = ACTIONS(619), + [anon_sym_i16] = ACTIONS(619), + [anon_sym_u32] = ACTIONS(619), + [anon_sym_i32] = ACTIONS(619), + [anon_sym_u64] = ACTIONS(619), + [anon_sym_i64] = ACTIONS(619), + [anon_sym_u128] = ACTIONS(619), + [anon_sym_i128] = ACTIONS(619), + [anon_sym_isize] = ACTIONS(619), + [anon_sym_usize] = ACTIONS(619), + [anon_sym_f32] = ACTIONS(619), + [anon_sym_f64] = ACTIONS(619), + [anon_sym_bool] = ACTIONS(619), + [anon_sym_str] = ACTIONS(619), + [anon_sym_char] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_async] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_default] = ACTIONS(619), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_impl] = ACTIONS(619), + [anon_sym_let] = ACTIONS(619), + [anon_sym_loop] = ACTIONS(619), + [anon_sym_match] = ACTIONS(619), + [anon_sym_mod] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_static] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_trait] = ACTIONS(619), + [anon_sym_type] = ACTIONS(619), + [anon_sym_union] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_use] = ACTIONS(619), + [anon_sym_while] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_extern] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_COLON_COLON] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(617), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_AMP_EQ] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(617), + [anon_sym_CARET_EQ] = ACTIONS(617), + [anon_sym_LT_LT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_EQ] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_move] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [sym_integer_literal] = ACTIONS(617), + [aux_sym_string_literal_token1] = ACTIONS(617), + [sym_char_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(619), + [sym_super] = ACTIONS(619), + [sym_crate] = ACTIONS(619), + [sym_metavariable] = ACTIONS(617), + [sym_raw_string_literal] = ACTIONS(617), + [sym_float_literal] = ACTIONS(617), + [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), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_macro_rules_BANG] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_u8] = ACTIONS(623), + [anon_sym_i8] = ACTIONS(623), + [anon_sym_u16] = ACTIONS(623), + [anon_sym_i16] = ACTIONS(623), + [anon_sym_u32] = ACTIONS(623), + [anon_sym_i32] = ACTIONS(623), + [anon_sym_u64] = ACTIONS(623), + [anon_sym_i64] = ACTIONS(623), + [anon_sym_u128] = ACTIONS(623), + [anon_sym_i128] = ACTIONS(623), + [anon_sym_isize] = ACTIONS(623), + [anon_sym_usize] = ACTIONS(623), + [anon_sym_f32] = ACTIONS(623), + [anon_sym_f64] = ACTIONS(623), + [anon_sym_bool] = ACTIONS(623), + [anon_sym_str] = ACTIONS(623), + [anon_sym_char] = ACTIONS(623), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_async] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_impl] = ACTIONS(623), + [anon_sym_let] = ACTIONS(623), + [anon_sym_loop] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_mod] = ACTIONS(623), + [anon_sym_pub] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_static] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(623), + [anon_sym_trait] = ACTIONS(623), + [anon_sym_type] = ACTIONS(623), + [anon_sym_union] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_use] = ACTIONS(623), + [anon_sym_while] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_extern] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(621), + [anon_sym_DOT_DOT] = ACTIONS(623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_AMP_EQ] = ACTIONS(621), + [anon_sym_PIPE_EQ] = ACTIONS(621), + [anon_sym_CARET_EQ] = ACTIONS(621), + [anon_sym_LT_LT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_EQ] = ACTIONS(621), + [anon_sym_yield] = ACTIONS(623), + [anon_sym_move] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [sym_integer_literal] = ACTIONS(621), + [aux_sym_string_literal_token1] = ACTIONS(621), + [sym_char_literal] = ACTIONS(621), + [anon_sym_true] = ACTIONS(623), + [anon_sym_false] = ACTIONS(623), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(623), + [sym_super] = ACTIONS(623), + [sym_crate] = ACTIONS(623), + [sym_metavariable] = ACTIONS(621), + [sym_raw_string_literal] = ACTIONS(621), + [sym_float_literal] = ACTIONS(621), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [ts_builtin_sym_end] = ACTIONS(625), + [sym_identifier] = ACTIONS(627), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_macro_rules_BANG] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(625), + [anon_sym_u8] = ACTIONS(627), + [anon_sym_i8] = ACTIONS(627), + [anon_sym_u16] = ACTIONS(627), + [anon_sym_i16] = ACTIONS(627), + [anon_sym_u32] = ACTIONS(627), + [anon_sym_i32] = ACTIONS(627), + [anon_sym_u64] = ACTIONS(627), + [anon_sym_i64] = ACTIONS(627), + [anon_sym_u128] = ACTIONS(627), + [anon_sym_i128] = ACTIONS(627), + [anon_sym_isize] = ACTIONS(627), + [anon_sym_usize] = ACTIONS(627), + [anon_sym_f32] = ACTIONS(627), + [anon_sym_f64] = ACTIONS(627), + [anon_sym_bool] = ACTIONS(627), + [anon_sym_str] = ACTIONS(627), + [anon_sym_char] = ACTIONS(627), + [anon_sym_SQUOTE] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_async] = ACTIONS(627), + [anon_sym_break] = ACTIONS(627), + [anon_sym_const] = ACTIONS(627), + [anon_sym_continue] = ACTIONS(627), + [anon_sym_default] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(627), + [anon_sym_for] = ACTIONS(627), + [anon_sym_if] = ACTIONS(627), + [anon_sym_impl] = ACTIONS(627), + [anon_sym_let] = ACTIONS(627), + [anon_sym_loop] = ACTIONS(627), + [anon_sym_match] = ACTIONS(627), + [anon_sym_mod] = ACTIONS(627), + [anon_sym_pub] = ACTIONS(627), + [anon_sym_return] = ACTIONS(627), + [anon_sym_static] = ACTIONS(627), + [anon_sym_struct] = ACTIONS(627), + [anon_sym_trait] = ACTIONS(627), + [anon_sym_type] = ACTIONS(627), + [anon_sym_union] = ACTIONS(627), + [anon_sym_unsafe] = ACTIONS(627), + [anon_sym_use] = ACTIONS(627), + [anon_sym_while] = ACTIONS(627), + [anon_sym_POUND] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(625), + [anon_sym_DOT_DOT] = ACTIONS(627), + [anon_sym_DOT_DOT_EQ] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_PLUS_EQ] = ACTIONS(625), + [anon_sym_DASH_EQ] = ACTIONS(625), + [anon_sym_STAR_EQ] = ACTIONS(625), + [anon_sym_SLASH_EQ] = ACTIONS(625), + [anon_sym_PERCENT_EQ] = ACTIONS(625), + [anon_sym_AMP_EQ] = ACTIONS(625), + [anon_sym_PIPE_EQ] = ACTIONS(625), + [anon_sym_CARET_EQ] = ACTIONS(625), + [anon_sym_LT_LT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_EQ] = ACTIONS(625), + [anon_sym_yield] = ACTIONS(627), + [anon_sym_move] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(625), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(625), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(627), + [sym_super] = ACTIONS(627), + [sym_crate] = ACTIONS(627), + [sym_metavariable] = ACTIONS(625), + [sym_raw_string_literal] = ACTIONS(625), + [sym_float_literal] = ACTIONS(625), + [sym_block_comment] = ACTIONS(3), + }, + [94] = { + [ts_builtin_sym_end] = ACTIONS(629), + [sym_identifier] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_macro_rules_BANG] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(629), + [anon_sym_u8] = ACTIONS(631), + [anon_sym_i8] = ACTIONS(631), + [anon_sym_u16] = ACTIONS(631), + [anon_sym_i16] = ACTIONS(631), + [anon_sym_u32] = ACTIONS(631), + [anon_sym_i32] = ACTIONS(631), + [anon_sym_u64] = ACTIONS(631), + [anon_sym_i64] = ACTIONS(631), + [anon_sym_u128] = ACTIONS(631), + [anon_sym_i128] = ACTIONS(631), + [anon_sym_isize] = ACTIONS(631), + [anon_sym_usize] = ACTIONS(631), + [anon_sym_f32] = ACTIONS(631), + [anon_sym_f64] = ACTIONS(631), + [anon_sym_bool] = ACTIONS(631), + [anon_sym_str] = ACTIONS(631), + [anon_sym_char] = ACTIONS(631), + [anon_sym_SQUOTE] = ACTIONS(631), + [anon_sym_as] = ACTIONS(631), + [anon_sym_async] = ACTIONS(631), + [anon_sym_break] = ACTIONS(631), + [anon_sym_const] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_enum] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(631), + [anon_sym_for] = ACTIONS(631), + [anon_sym_if] = ACTIONS(631), + [anon_sym_impl] = ACTIONS(631), + [anon_sym_let] = ACTIONS(631), + [anon_sym_loop] = ACTIONS(631), + [anon_sym_match] = ACTIONS(631), + [anon_sym_mod] = ACTIONS(631), + [anon_sym_pub] = ACTIONS(631), + [anon_sym_return] = ACTIONS(631), + [anon_sym_static] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(631), + [anon_sym_trait] = ACTIONS(631), + [anon_sym_type] = ACTIONS(631), + [anon_sym_union] = ACTIONS(631), + [anon_sym_unsafe] = ACTIONS(631), + [anon_sym_use] = ACTIONS(631), + [anon_sym_while] = ACTIONS(631), + [anon_sym_POUND] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(631), + [anon_sym_extern] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_COLON_COLON] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [anon_sym_DOT_DOT] = ACTIONS(631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(629), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(629), + [anon_sym_PIPE_PIPE] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(631), + [anon_sym_CARET] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(629), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_LT_LT] = ACTIONS(631), + [anon_sym_GT_GT] = ACTIONS(631), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_PERCENT] = ACTIONS(631), + [anon_sym_PLUS_EQ] = ACTIONS(629), + [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_STAR_EQ] = ACTIONS(629), + [anon_sym_SLASH_EQ] = ACTIONS(629), + [anon_sym_PERCENT_EQ] = ACTIONS(629), + [anon_sym_AMP_EQ] = ACTIONS(629), + [anon_sym_PIPE_EQ] = ACTIONS(629), + [anon_sym_CARET_EQ] = ACTIONS(629), + [anon_sym_LT_LT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_EQ] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_move] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(631), + [sym_integer_literal] = ACTIONS(629), + [aux_sym_string_literal_token1] = ACTIONS(629), + [sym_char_literal] = ACTIONS(629), + [anon_sym_true] = ACTIONS(631), + [anon_sym_false] = ACTIONS(631), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(631), + [sym_crate] = ACTIONS(631), + [sym_metavariable] = ACTIONS(629), + [sym_raw_string_literal] = ACTIONS(629), + [sym_float_literal] = ACTIONS(629), + [sym_block_comment] = ACTIONS(3), + }, + [95] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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), @@ -28304,11 +28683,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(633), [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(579), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -28326,56 +28706,56 @@ 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(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), + [96] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_RBRACK] = ACTIONS(635), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -28431,55 +28811,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(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), + [97] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(637), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -28513,12 +28894,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(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_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -28536,56 +28916,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(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), + [98] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28617,13 +28997,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(384), + [anon_sym_BANG] = ACTIONS(399), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [sym_mutable_specifier] = ACTIONS(630), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(403), + [sym_mutable_specifier] = ACTIONS(639), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -28641,161 +29021,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [99] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), [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_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28827,12 +29102,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(384), - [anon_sym_DASH_GT] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DASH_GT] = ACTIONS(633), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -28851,156 +29126,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(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(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), - }, - [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), + [100] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29038,11 +29208,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(641), [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(579), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -29060,259 +29231,156 @@ 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(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(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(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_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_identifier] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(577), + [anon_sym_macro_rules_BANG] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_u8] = ACTIONS(597), + [anon_sym_i8] = ACTIONS(597), + [anon_sym_u16] = ACTIONS(597), + [anon_sym_i16] = ACTIONS(597), + [anon_sym_u32] = ACTIONS(597), + [anon_sym_i32] = ACTIONS(597), + [anon_sym_u64] = ACTIONS(597), + [anon_sym_i64] = ACTIONS(597), + [anon_sym_u128] = ACTIONS(597), + [anon_sym_i128] = ACTIONS(597), + [anon_sym_isize] = ACTIONS(597), + [anon_sym_usize] = ACTIONS(597), + [anon_sym_f32] = ACTIONS(597), + [anon_sym_f64] = ACTIONS(597), + [anon_sym_bool] = ACTIONS(597), + [anon_sym_str] = ACTIONS(597), + [anon_sym_char] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_as] = ACTIONS(575), + [anon_sym_async] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_impl] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_loop] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_mod] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_static] = ACTIONS(597), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_trait] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_union] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_use] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_POUND] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_extern] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_GT] = ACTIONS(575), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(575), + [anon_sym_DOT_DOT_EQ] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_AMP_AMP] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_PLUS_EQ] = ACTIONS(577), + [anon_sym_DASH_EQ] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(577), + [anon_sym_SLASH_EQ] = ACTIONS(577), + [anon_sym_PERCENT_EQ] = ACTIONS(577), + [anon_sym_AMP_EQ] = ACTIONS(577), + [anon_sym_PIPE_EQ] = ACTIONS(577), + [anon_sym_CARET_EQ] = ACTIONS(577), + [anon_sym_LT_LT_EQ] = ACTIONS(577), + [anon_sym_GT_GT_EQ] = ACTIONS(577), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_move] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(575), + [sym_integer_literal] = ACTIONS(595), + [aux_sym_string_literal_token1] = ACTIONS(595), + [sym_char_literal] = ACTIONS(595), + [anon_sym_true] = ACTIONS(597), + [anon_sym_false] = ACTIONS(597), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_crate] = ACTIONS(597), + [sym_metavariable] = ACTIONS(595), + [sym_raw_string_literal] = ACTIONS(595), + [sym_float_literal] = ACTIONS(595), [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29353,7 +29421,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(643), + [anon_sym_DOT_DOT] = ACTIONS(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29373,55 +29442,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29453,12 +29522,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(384), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DASH_GT] = ACTIONS(641), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29477,54 +29547,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(645), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -29581,159 +29652,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(280), [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_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(384), + [anon_sym_BANG] = ACTIONS(19), [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_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), }, [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29765,12 +29836,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29789,50 +29860,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29893,50 +29964,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1041), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29977,7 +30048,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(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29997,55 +30068,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30077,12 +30148,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30101,55 +30172,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1162), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [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(579), + [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), + }, + [111] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30181,12 +30356,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30204,56 +30379,56 @@ 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(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), + [112] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30285,12 +30460,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30308,51 +30483,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(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), + [113] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30412,51 +30587,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(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), + [114] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30516,51 +30691,259 @@ 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(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), + [115] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), + [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), + }, + [116] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), + [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(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30620,51 +31003,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(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), + [118] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30724,56 +31107,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(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), + [119] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30805,12 +31188,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30828,51 +31211,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(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), + [120] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [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(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2561), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(226), + [sym_async_block] = STATE(226), + [sym_block] = STATE(226), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(647), + [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(649), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(653), + [anon_sym_if] = ACTIONS(655), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_match] = ACTIONS(659), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), + [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), + }, + [121] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30913,7 +31400,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(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30932,51 +31419,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(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), + [122] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31017,7 +31504,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(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31036,51 +31523,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(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), + [123] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31140,155 +31627,155 @@ 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(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), + [124] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(280), [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_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(384), + [anon_sym_BANG] = ACTIONS(19), [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_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(579), + [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), }, - [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), + [125] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31348,51 +31835,155 @@ 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(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), + [126] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), + [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), + }, + [127] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31433,7 +32024,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(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31452,54 +32043,54 @@ 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(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(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), + [128] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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), @@ -31520,19 +32111,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), @@ -31556,54 +32147,54 @@ 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(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), + [129] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(234), + [sym_match_expression] = STATE(234), + [sym_while_expression] = STATE(234), + [sym_loop_expression] = STATE(234), + [sym_for_expression] = STATE(234), + [sym_const_block] = STATE(234), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2561), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(234), + [sym_async_block] = STATE(234), + [sym_block] = STATE(234), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(647), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31624,19 +32215,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(649), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(651), [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(653), + [anon_sym_if] = ACTIONS(655), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_match] = ACTIONS(659), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31660,56 +32251,56 @@ 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(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), + [130] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31741,12 +32332,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31764,51 +32355,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(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), + [131] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31849,7 +32440,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(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31868,56 +32459,160 @@ 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(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), + [132] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [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(579), + [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), + }, + [133] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31949,12 +32644,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31972,56 +32667,56 @@ 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(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), + [134] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32053,12 +32748,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32076,51 +32771,363 @@ 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(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), + [135] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [136] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [137] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), + [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(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32161,7 +33168,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32180,51 +33187,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(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), + [139] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1041), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32284,54 +33291,54 @@ 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(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), + [140] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [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(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2561), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(226), + [sym_async_block] = STATE(226), + [sym_block] = STATE(226), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(647), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32352,19 +33359,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(649), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(651), [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(653), + [anon_sym_if] = ACTIONS(655), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_match] = ACTIONS(659), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -32388,51 +33395,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(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), + [141] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32473,7 +33480,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32492,51 +33499,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(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), + [142] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32596,54 +33603,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(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), + [143] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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), @@ -32664,19 +33671,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), @@ -32700,51 +33707,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(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), + [144] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32785,7 +33792,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(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32804,56 +33811,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(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), + [145] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [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(579), + [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), + }, + [146] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32885,12 +33996,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32908,51 +34019,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(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), + [147] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32993,7 +34104,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(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33012,51 +34123,155 @@ 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(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(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), + [148] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), + [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), + }, + [149] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33097,7 +34312,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(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33116,51 +34331,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(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), + [150] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33201,7 +34416,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(420), + [anon_sym_DOT_DOT] = ACTIONS(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33220,51 +34435,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(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), + [151] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33324,51 +34539,51 @@ 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(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), + [152] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33409,7 +34624,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33428,56 +34643,56 @@ 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(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), + [153] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1041), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33509,12 +34724,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33532,51 +34747,155 @@ 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(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), + [154] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), + [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), + }, + [155] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33617,7 +34936,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33636,155 +34955,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(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(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), - }, - [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), + [156] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33844,51 +35059,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(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), + [157] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33929,7 +35144,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33948,51 +35163,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(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(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), + [158] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34052,51 +35267,51 @@ 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(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), + [159] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34137,7 +35352,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34156,51 +35371,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(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), + [160] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34241,7 +35456,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34260,368 +35475,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(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(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), - }, - [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(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), - }, - [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(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), - }, - [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), + [161] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34653,12 +35556,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34676,51 +35579,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(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), + [162] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34780,56 +35683,56 @@ 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(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), + [163] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34861,12 +35764,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34884,155 +35787,155 @@ 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(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), + [164] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [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(399), + [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(399), [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(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [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), }, - [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), + [165] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35092,51 +35995,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(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), + [166] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35196,155 +36099,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(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), - [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), - }, - [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), + [167] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35404,56 +36203,56 @@ 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(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), + [168] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -35485,12 +36284,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -35508,56 +36307,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [169] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -35589,12 +36388,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -35612,155 +36411,51 @@ 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(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), - [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(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), - }, - [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), + [170] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35820,262 +36515,54 @@ 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(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), + [171] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), [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(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), - }, - [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_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(234), + [sym_match_expression] = STATE(234), + [sym_while_expression] = STATE(234), + [sym_loop_expression] = STATE(234), + [sym_for_expression] = STATE(234), + [sym_const_block] = STATE(234), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2561), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(234), + [sym_async_block] = STATE(234), + [sym_block] = STATE(234), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(647), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -36096,24 +36583,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(649), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(651), [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(653), + [anon_sym_if] = ACTIONS(655), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_match] = ACTIONS(659), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_while] = ACTIONS(663), [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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36132,51 +36619,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [172] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36236,56 +36723,56 @@ 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(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), + [173] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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_STAR] = ACTIONS(399), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -36317,12 +36804,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(384), + [anon_sym_BANG] = ACTIONS(399), [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_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -36340,51 +36827,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(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), + [174] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36444,51 +36931,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(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(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), + [175] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36529,7 +37016,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36548,51 +37035,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(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), + [176] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36633,7 +37120,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36652,51 +37139,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(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), + [177] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36756,51 +37243,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(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(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), + [178] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36860,51 +37347,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(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(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), + [179] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36945,7 +37432,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(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36964,51 +37451,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [180] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(2060), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1041), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(1192), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(103), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(399), + [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(399), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(399), + [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), + }, + [181] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37068,51 +37659,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(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), + [182] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37153,7 +37744,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(420), + [anon_sym_DOT_DOT] = ACTIONS(579), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -37172,54 +37763,54 @@ 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(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(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), + [183] = { + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), [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), @@ -37240,19 +37831,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), @@ -37276,11243 +37867,11082 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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(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(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(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(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(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), - }, - [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(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(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(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(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(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(752), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [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), - [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(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(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(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(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_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_bracketed_type] = STATE(2486), + [sym_generic_function] = STATE(805), + [sym_generic_type_with_turbofish] = STATE(1954), + [sym__expression_except_range] = STATE(805), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(805), + [sym_scoped_identifier] = STATE(793), + [sym_scoped_type_identifier_in_expression_position] = STATE(2213), + [sym_range_expression] = STATE(845), + [sym_unary_expression] = STATE(805), + [sym_try_expression] = STATE(805), + [sym_reference_expression] = STATE(805), + [sym_binary_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_compound_assignment_expr] = STATE(805), + [sym_type_cast_expression] = STATE(805), + [sym_return_expression] = STATE(805), + [sym_yield_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_array_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_tuple_expression] = STATE(805), + [sym_unit_expression] = STATE(805), + [sym_struct_expression] = STATE(805), + [sym_if_expression] = STATE(805), + [sym_match_expression] = STATE(805), + [sym_while_expression] = STATE(805), + [sym_loop_expression] = STATE(805), + [sym_for_expression] = STATE(805), + [sym_const_block] = STATE(805), + [sym_closure_expression] = STATE(805), + [sym_closure_parameters] = STATE(100), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(805), + [sym_continue_expression] = STATE(805), + [sym_index_expression] = STATE(805), + [sym_await_expression] = STATE(805), + [sym_field_expression] = STATE(800), + [sym_unsafe_block] = STATE(805), + [sym_async_block] = STATE(805), + [sym_block] = STATE(805), + [sym__literal] = STATE(805), + [sym_string_literal] = STATE(894), + [sym_boolean_literal] = STATE(894), + [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(738), - [anon_sym__] = ACTIONS(758), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [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), }, [185] = { - [sym_attribute_item] = STATE(191), - [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(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(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_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2079), + [sym_variadic_parameter] = STATE(2079), + [sym_parameter] = STATE(2079), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1800), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(697), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(758), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [186] = { - [sym_attribute_item] = STATE(191), - [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(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(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_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(1996), + [sym_variadic_parameter] = STATE(1996), + [sym_parameter] = STATE(1996), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1728), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(743), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(758), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(747), + [anon_sym_AMP] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(751), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym_attribute_item] = STATE(191), - [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(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(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_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(1996), + [sym_variadic_parameter] = STATE(1996), + [sym_parameter] = STATE(1996), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(758), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_attribute_item] = STATE(191), - [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(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(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_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(1996), + [sym_variadic_parameter] = STATE(1996), + [sym_parameter] = STATE(1996), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1728), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(758), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(747), + [anon_sym_AMP] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(751), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_attribute_item] = STATE(191), - [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(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(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_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(1996), + [sym_variadic_parameter] = STATE(1996), + [sym_parameter] = STATE(1996), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1728), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(758), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(747), + [anon_sym_AMP] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(751), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym_attribute_item] = STATE(191), - [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(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(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_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2182), + [sym_variadic_parameter] = STATE(2182), + [sym_parameter] = STATE(2182), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1911), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(758), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [191] = { - [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(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(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), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2182), + [sym_variadic_parameter] = STATE(2182), + [sym_parameter] = STATE(2182), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1911), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(770), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [192] = { - [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(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(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), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2182), + [sym_variadic_parameter] = STATE(2182), + [sym_parameter] = STATE(2182), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1911), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(772), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2064), - [sym_variadic_parameter] = STATE(2064), - [sym_parameter] = STATE(2064), - [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(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(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), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2182), + [sym_variadic_parameter] = STATE(2182), + [sym_parameter] = STATE(2182), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1911), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(774), - [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(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [194] = { - [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(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(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), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2182), + [sym_variadic_parameter] = STATE(2182), + [sym_parameter] = STATE(2182), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1911), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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(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_COMMA] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2182), + [sym_variadic_parameter] = STATE(2182), + [sym_parameter] = STATE(2182), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1911), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), - [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), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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_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_COMMA] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2182), + [sym_variadic_parameter] = STATE(2182), + [sym_parameter] = STATE(2182), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1911), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), - [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), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [197] = { - [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(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(812), - [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_COMMA] = ACTIONS(806), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(1994), + [sym_variadic_parameter] = STATE(1994), + [sym_parameter] = STATE(1994), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1770), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), - [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), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [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_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2050), + [sym_variadic_parameter] = STATE(2050), + [sym_parameter] = STATE(2050), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1809), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [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), + [sym_function_modifiers] = STATE(2387), + [sym_self_parameter] = STATE(2140), + [sym_variadic_parameter] = STATE(2140), + [sym_parameter] = STATE(2140), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(2027), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2310), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(789), + [anon_sym_AMP] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(725), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [200] = { - [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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(2044), + [sym_bracketed_type] = STATE(2526), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2527), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(1570), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1828), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_RBRACK] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(797), + [anon_sym_i8] = ACTIONS(797), + [anon_sym_u16] = ACTIONS(797), + [anon_sym_i16] = ACTIONS(797), + [anon_sym_u32] = ACTIONS(797), + [anon_sym_i32] = ACTIONS(797), + [anon_sym_u64] = ACTIONS(797), + [anon_sym_i64] = ACTIONS(797), + [anon_sym_u128] = ACTIONS(797), + [anon_sym_i128] = ACTIONS(797), + [anon_sym_isize] = ACTIONS(797), + [anon_sym_usize] = ACTIONS(797), + [anon_sym_f32] = ACTIONS(797), + [anon_sym_f64] = ACTIONS(797), + [anon_sym_bool] = ACTIONS(797), + [anon_sym_str] = ACTIONS(797), + [anon_sym_char] = ACTIONS(797), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(799), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(801), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [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(746), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(805), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(815), + [sym_super] = ACTIONS(815), + [sym_crate] = ACTIONS(815), + [sym_metavariable] = ACTIONS(817), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2511), - [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(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(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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1797), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(821), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(823), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(753), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1399), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(624), - [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(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(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(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(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), - [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(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_identifier] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_EQ_GT] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_RBRACK] = ACTIONS(827), + [anon_sym_COLON] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(827), + [anon_sym_u8] = ACTIONS(825), + [anon_sym_i8] = ACTIONS(825), + [anon_sym_u16] = ACTIONS(825), + [anon_sym_i16] = ACTIONS(825), + [anon_sym_u32] = ACTIONS(825), + [anon_sym_i32] = ACTIONS(825), + [anon_sym_u64] = ACTIONS(825), + [anon_sym_i64] = ACTIONS(825), + [anon_sym_u128] = ACTIONS(825), + [anon_sym_i128] = ACTIONS(825), + [anon_sym_isize] = ACTIONS(825), + [anon_sym_usize] = ACTIONS(825), + [anon_sym_f32] = ACTIONS(825), + [anon_sym_f64] = ACTIONS(825), + [anon_sym_bool] = ACTIONS(825), + [anon_sym_str] = ACTIONS(825), + [anon_sym_char] = ACTIONS(825), + [anon_sym_SQUOTE] = ACTIONS(825), + [anon_sym_as] = ACTIONS(825), + [anon_sym_async] = ACTIONS(825), + [anon_sym_break] = ACTIONS(825), + [anon_sym_const] = ACTIONS(825), + [anon_sym_continue] = ACTIONS(825), + [anon_sym_default] = ACTIONS(825), + [anon_sym_for] = ACTIONS(825), + [anon_sym_if] = ACTIONS(825), + [anon_sym_loop] = ACTIONS(825), + [anon_sym_match] = ACTIONS(825), + [anon_sym_return] = ACTIONS(825), + [anon_sym_union] = ACTIONS(825), + [anon_sym_unsafe] = ACTIONS(825), + [anon_sym_while] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_COMMA] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(825), + [anon_sym_GT] = ACTIONS(825), + [anon_sym_else] = ACTIONS(825), + [anon_sym_COLON_COLON] = ACTIONS(827), + [anon_sym_AMP] = ACTIONS(825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(827), + [anon_sym_DOT_DOT] = ACTIONS(825), + [anon_sym_DOT_DOT_EQ] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(827), + [anon_sym_PIPE_PIPE] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(825), + [anon_sym_CARET] = ACTIONS(825), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_SLASH] = ACTIONS(825), + [anon_sym_PERCENT] = ACTIONS(825), + [anon_sym_PLUS_EQ] = ACTIONS(827), + [anon_sym_DASH_EQ] = ACTIONS(827), + [anon_sym_STAR_EQ] = ACTIONS(827), + [anon_sym_SLASH_EQ] = ACTIONS(827), + [anon_sym_PERCENT_EQ] = ACTIONS(827), + [anon_sym_AMP_EQ] = ACTIONS(827), + [anon_sym_PIPE_EQ] = ACTIONS(827), + [anon_sym_CARET_EQ] = ACTIONS(827), + [anon_sym_LT_LT_EQ] = ACTIONS(827), + [anon_sym_GT_GT_EQ] = ACTIONS(827), + [anon_sym_yield] = ACTIONS(825), + [anon_sym_move] = ACTIONS(825), + [anon_sym_DOT] = ACTIONS(825), + [sym_integer_literal] = ACTIONS(827), + [aux_sym_string_literal_token1] = ACTIONS(827), + [sym_char_literal] = ACTIONS(827), + [anon_sym_true] = ACTIONS(825), + [anon_sym_false] = ACTIONS(825), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(825), + [sym_super] = ACTIONS(825), + [sym_crate] = ACTIONS(825), + [sym_metavariable] = ACTIONS(827), + [sym_raw_string_literal] = ACTIONS(827), + [sym_float_literal] = ACTIONS(827), [sym_block_comment] = ACTIONS(3), }, [203] = { - [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(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(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(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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1797), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(821), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [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(826), - [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(746), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(823), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(753), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [204] = { - [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(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(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(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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1797), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(821), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [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(828), - [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(830), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(823), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(753), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [205] = { - [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(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(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(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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1404), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1466), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [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(832), - [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), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(823), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(753), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [206] = { - [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(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(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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1406), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(631), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1451), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(833), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), - [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), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(837), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(727), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [207] = { - [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(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(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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1406), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(633), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1451), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(833), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), - [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), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(823), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(839), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(841), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [208] = { - [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(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(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(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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1406), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(633), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1451), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(833), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), - [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(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(843), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(845), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [209] = { - [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), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_u8] = ACTIONS(840), - [anon_sym_i8] = ACTIONS(840), - [anon_sym_u16] = ACTIONS(840), - [anon_sym_i16] = ACTIONS(840), - [anon_sym_u32] = ACTIONS(840), - [anon_sym_i32] = ACTIONS(840), - [anon_sym_u64] = ACTIONS(840), - [anon_sym_i64] = ACTIONS(840), - [anon_sym_u128] = ACTIONS(840), - [anon_sym_i128] = ACTIONS(840), - [anon_sym_isize] = ACTIONS(840), - [anon_sym_usize] = ACTIONS(840), - [anon_sym_f32] = ACTIONS(840), - [anon_sym_f64] = ACTIONS(840), - [anon_sym_bool] = ACTIONS(840), - [anon_sym_str] = ACTIONS(840), - [anon_sym_char] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_async] = ACTIONS(840), - [anon_sym_break] = ACTIONS(840), - [anon_sym_const] = ACTIONS(840), - [anon_sym_continue] = ACTIONS(840), - [anon_sym_default] = ACTIONS(840), - [anon_sym_for] = ACTIONS(840), - [anon_sym_if] = ACTIONS(840), - [anon_sym_loop] = ACTIONS(840), - [anon_sym_match] = ACTIONS(840), - [anon_sym_return] = ACTIONS(840), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(840), - [anon_sym_while] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(842), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_DASH_GT] = ACTIONS(842), - [anon_sym_LT] = ACTIONS(842), - [anon_sym_COLON_COLON] = ACTIONS(842), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(842), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(840), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_move] = ACTIONS(840), - [sym_integer_literal] = ACTIONS(842), - [aux_sym_string_literal_token1] = ACTIONS(842), - [sym_char_literal] = ACTIONS(842), - [anon_sym_true] = ACTIONS(840), - [anon_sym_false] = ACTIONS(840), - [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(842), - [sym_float_literal] = ACTIONS(842), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1404), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1466), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(823), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(847), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [210] = { - [sym_else_clause] = STATE(221), - [sym_identifier] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(400), - [anon_sym_RBRACE] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_PLUS] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(402), - [anon_sym_QMARK] = ACTIONS(400), - [anon_sym_u8] = ACTIONS(402), - [anon_sym_i8] = ACTIONS(402), - [anon_sym_u16] = ACTIONS(402), - [anon_sym_i16] = ACTIONS(402), - [anon_sym_u32] = ACTIONS(402), - [anon_sym_i32] = ACTIONS(402), - [anon_sym_u64] = ACTIONS(402), - [anon_sym_i64] = ACTIONS(402), - [anon_sym_u128] = ACTIONS(402), - [anon_sym_i128] = ACTIONS(402), - [anon_sym_isize] = ACTIONS(402), - [anon_sym_usize] = ACTIONS(402), - [anon_sym_f32] = ACTIONS(402), - [anon_sym_f64] = ACTIONS(402), - [anon_sym_bool] = ACTIONS(402), - [anon_sym_str] = ACTIONS(402), - [anon_sym_char] = ACTIONS(402), - [anon_sym_as] = ACTIONS(402), - [anon_sym_const] = ACTIONS(402), - [anon_sym_default] = ACTIONS(402), - [anon_sym_union] = ACTIONS(402), - [anon_sym_POUND] = ACTIONS(400), - [anon_sym_EQ] = ACTIONS(402), - [anon_sym_COMMA] = ACTIONS(400), - [anon_sym_ref] = ACTIONS(402), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_else] = ACTIONS(844), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym__] = ACTIONS(402), - [anon_sym_AMP] = ACTIONS(402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(400), - [sym_mutable_specifier] = ACTIONS(402), - [anon_sym_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(400), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_PIPE_PIPE] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(402), - [anon_sym_CARET] = ACTIONS(402), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT_EQ] = ACTIONS(400), - [anon_sym_GT_EQ] = ACTIONS(400), - [anon_sym_LT_LT] = ACTIONS(402), - [anon_sym_GT_GT] = ACTIONS(402), - [anon_sym_SLASH] = ACTIONS(402), - [anon_sym_PERCENT] = ACTIONS(402), - [anon_sym_PLUS_EQ] = ACTIONS(400), - [anon_sym_DASH_EQ] = ACTIONS(400), - [anon_sym_STAR_EQ] = ACTIONS(400), - [anon_sym_SLASH_EQ] = ACTIONS(400), - [anon_sym_PERCENT_EQ] = ACTIONS(400), - [anon_sym_AMP_EQ] = ACTIONS(400), - [anon_sym_PIPE_EQ] = ACTIONS(400), - [anon_sym_CARET_EQ] = ACTIONS(400), - [anon_sym_LT_LT_EQ] = ACTIONS(400), - [anon_sym_GT_GT_EQ] = ACTIONS(400), - [anon_sym_DOT] = ACTIONS(402), - [sym_integer_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(400), - [sym_char_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(402), - [sym_super] = ACTIONS(402), - [sym_crate] = ACTIONS(402), - [sym_metavariable] = ACTIONS(400), - [sym_raw_string_literal] = ACTIONS(400), - [sym_float_literal] = ACTIONS(400), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1404), + [sym_bracketed_type] = STATE(2526), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2527), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(1570), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1466), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(797), + [anon_sym_i8] = ACTIONS(797), + [anon_sym_u16] = ACTIONS(797), + [anon_sym_i16] = ACTIONS(797), + [anon_sym_u32] = ACTIONS(797), + [anon_sym_i32] = ACTIONS(797), + [anon_sym_u64] = ACTIONS(797), + [anon_sym_i64] = ACTIONS(797), + [anon_sym_u128] = ACTIONS(797), + [anon_sym_i128] = ACTIONS(797), + [anon_sym_isize] = ACTIONS(797), + [anon_sym_usize] = ACTIONS(797), + [anon_sym_f32] = ACTIONS(797), + [anon_sym_f64] = ACTIONS(797), + [anon_sym_bool] = ACTIONS(797), + [anon_sym_str] = ACTIONS(797), + [anon_sym_char] = ACTIONS(797), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(799), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(801), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(805), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(815), + [sym_super] = ACTIONS(815), + [sym_crate] = ACTIONS(815), + [sym_metavariable] = ACTIONS(817), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [211] = { - [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_else] = 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_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_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1404), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1466), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(727), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [212] = { - [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_else] = 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_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_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1406), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(631), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1504), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1451), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(737), + [anon_sym_i8] = ACTIONS(737), + [anon_sym_u16] = ACTIONS(737), + [anon_sym_i16] = ACTIONS(737), + [anon_sym_u32] = ACTIONS(737), + [anon_sym_i32] = ACTIONS(737), + [anon_sym_u64] = ACTIONS(737), + [anon_sym_i64] = ACTIONS(737), + [anon_sym_u128] = ACTIONS(737), + [anon_sym_i128] = ACTIONS(737), + [anon_sym_isize] = ACTIONS(737), + [anon_sym_usize] = ACTIONS(737), + [anon_sym_f32] = ACTIONS(737), + [anon_sym_f64] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_str] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(833), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(739), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(745), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(823), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(849), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(753), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1404), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1466), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(675), + [anon_sym_i8] = ACTIONS(675), + [anon_sym_u16] = ACTIONS(675), + [anon_sym_i16] = ACTIONS(675), + [anon_sym_u32] = ACTIONS(675), + [anon_sym_i32] = ACTIONS(675), + [anon_sym_u64] = ACTIONS(675), + [anon_sym_i64] = ACTIONS(675), + [anon_sym_u128] = ACTIONS(675), + [anon_sym_i128] = ACTIONS(675), + [anon_sym_isize] = ACTIONS(675), + [anon_sym_usize] = ACTIONS(675), + [anon_sym_f32] = ACTIONS(675), + [anon_sym_f64] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_str] = ACTIONS(675), + [anon_sym_char] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(691), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(851), + [sym_super] = ACTIONS(727), + [sym_crate] = ACTIONS(727), + [sym_metavariable] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1406), + [sym_bracketed_type] = STATE(2526), + [sym_lifetime] = STATE(631), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2527), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(1570), + [sym_scoped_type_identifier] = STATE(1488), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1451), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(797), + [anon_sym_i8] = ACTIONS(797), + [anon_sym_u16] = ACTIONS(797), + [anon_sym_i16] = ACTIONS(797), + [anon_sym_u32] = ACTIONS(797), + [anon_sym_i32] = ACTIONS(797), + [anon_sym_u64] = ACTIONS(797), + [anon_sym_i64] = ACTIONS(797), + [anon_sym_u128] = ACTIONS(797), + [anon_sym_i128] = ACTIONS(797), + [anon_sym_isize] = ACTIONS(797), + [anon_sym_usize] = ACTIONS(797), + [anon_sym_f32] = ACTIONS(797), + [anon_sym_f64] = ACTIONS(797), + [anon_sym_bool] = ACTIONS(797), + [anon_sym_str] = ACTIONS(797), + [anon_sym_char] = ACTIONS(797), + [anon_sym_SQUOTE] = ACTIONS(833), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(681), + [anon_sym_default] = ACTIONS(799), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(801), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(805), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(853), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(815), + [sym_super] = ACTIONS(815), + [sym_crate] = ACTIONS(815), + [sym_metavariable] = ACTIONS(817), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1444), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_u8] = ACTIONS(855), + [anon_sym_i8] = ACTIONS(855), + [anon_sym_u16] = ACTIONS(855), + [anon_sym_i16] = ACTIONS(855), + [anon_sym_u32] = ACTIONS(855), + [anon_sym_i32] = ACTIONS(855), + [anon_sym_u64] = ACTIONS(855), + [anon_sym_i64] = ACTIONS(855), + [anon_sym_u128] = ACTIONS(855), + [anon_sym_i128] = ACTIONS(855), + [anon_sym_isize] = ACTIONS(855), + [anon_sym_usize] = ACTIONS(855), + [anon_sym_f32] = ACTIONS(855), + [anon_sym_f64] = ACTIONS(855), + [anon_sym_bool] = ACTIONS(855), + [anon_sym_str] = ACTIONS(855), + [anon_sym_char] = ACTIONS(855), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_async] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_default] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_union] = ACTIONS(855), + [anon_sym_unsafe] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(857), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_DASH_GT] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(857), + [anon_sym_COLON_COLON] = ACTIONS(857), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(857), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_yield] = ACTIONS(855), + [anon_sym_move] = ACTIONS(855), + [sym_integer_literal] = ACTIONS(857), + [aux_sym_string_literal_token1] = ACTIONS(857), + [sym_char_literal] = ACTIONS(857), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(855), + [sym_super] = ACTIONS(855), + [sym_crate] = ACTIONS(855), + [sym_metavariable] = ACTIONS(857), + [sym_raw_string_literal] = ACTIONS(857), + [sym_float_literal] = ACTIONS(857), [sym_block_comment] = ACTIONS(3), }, [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_else_clause] = STATE(216), + [aux_sym_if_expression_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RBRACE] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_u8] = ACTIONS(370), + [anon_sym_i8] = ACTIONS(370), + [anon_sym_u16] = ACTIONS(370), + [anon_sym_i16] = ACTIONS(370), + [anon_sym_u32] = ACTIONS(370), + [anon_sym_i32] = ACTIONS(370), + [anon_sym_u64] = ACTIONS(370), + [anon_sym_i64] = ACTIONS(370), + [anon_sym_u128] = ACTIONS(370), + [anon_sym_i128] = ACTIONS(370), + [anon_sym_isize] = ACTIONS(370), + [anon_sym_usize] = ACTIONS(370), + [anon_sym_f32] = ACTIONS(370), + [anon_sym_f64] = ACTIONS(370), + [anon_sym_bool] = ACTIONS(370), + [anon_sym_str] = ACTIONS(370), + [anon_sym_char] = ACTIONS(370), + [anon_sym_as] = ACTIONS(370), + [anon_sym_const] = ACTIONS(370), + [anon_sym_default] = ACTIONS(370), + [anon_sym_union] = ACTIONS(370), + [anon_sym_POUND] = ACTIONS(368), + [anon_sym_EQ] = ACTIONS(370), + [anon_sym_COMMA] = ACTIONS(368), + [anon_sym_ref] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_GT] = ACTIONS(370), + [anon_sym_else] = ACTIONS(859), + [anon_sym_COLON_COLON] = ACTIONS(368), + [anon_sym__] = ACTIONS(370), + [anon_sym_AMP] = ACTIONS(370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(368), + [sym_mutable_specifier] = ACTIONS(370), + [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_CARET] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(370), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_PLUS_EQ] = ACTIONS(368), + [anon_sym_DASH_EQ] = ACTIONS(368), + [anon_sym_STAR_EQ] = ACTIONS(368), + [anon_sym_SLASH_EQ] = ACTIONS(368), + [anon_sym_PERCENT_EQ] = ACTIONS(368), + [anon_sym_AMP_EQ] = ACTIONS(368), + [anon_sym_PIPE_EQ] = ACTIONS(368), + [anon_sym_CARET_EQ] = ACTIONS(368), + [anon_sym_LT_LT_EQ] = ACTIONS(368), + [anon_sym_GT_GT_EQ] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(370), + [sym_integer_literal] = ACTIONS(368), + [aux_sym_string_literal_token1] = ACTIONS(368), + [sym_char_literal] = ACTIONS(368), + [anon_sym_true] = ACTIONS(370), + [anon_sym_false] = ACTIONS(370), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(370), + [sym_super] = ACTIONS(370), + [sym_crate] = ACTIONS(370), + [sym_metavariable] = ACTIONS(368), + [sym_raw_string_literal] = ACTIONS(368), + [sym_float_literal] = ACTIONS(368), [sym_block_comment] = ACTIONS(3), }, [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_else_clause] = STATE(218), + [aux_sym_if_expression_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u128] = ACTIONS(397), + [anon_sym_i128] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_str] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_const] = ACTIONS(397), + [anon_sym_default] = ACTIONS(397), + [anon_sym_union] = ACTIONS(397), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_ref] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_else] = ACTIONS(862), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym__] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [sym_mutable_specifier] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [sym_integer_literal] = ACTIONS(395), + [aux_sym_string_literal_token1] = ACTIONS(395), + [sym_char_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(397), + [sym_super] = ACTIONS(397), + [sym_crate] = ACTIONS(397), + [sym_metavariable] = ACTIONS(395), + [sym_raw_string_literal] = ACTIONS(395), + [sym_float_literal] = ACTIONS(395), [sym_block_comment] = ACTIONS(3), }, [218] = { - [sym_identifier] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [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_else_clause] = STATE(216), + [aux_sym_if_expression_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(377), + [anon_sym_i8] = ACTIONS(377), + [anon_sym_u16] = ACTIONS(377), + [anon_sym_i16] = ACTIONS(377), + [anon_sym_u32] = ACTIONS(377), + [anon_sym_i32] = ACTIONS(377), + [anon_sym_u64] = ACTIONS(377), + [anon_sym_i64] = ACTIONS(377), + [anon_sym_u128] = ACTIONS(377), + [anon_sym_i128] = ACTIONS(377), + [anon_sym_isize] = ACTIONS(377), + [anon_sym_usize] = ACTIONS(377), + [anon_sym_f32] = ACTIONS(377), + [anon_sym_f64] = ACTIONS(377), + [anon_sym_bool] = ACTIONS(377), + [anon_sym_str] = ACTIONS(377), + [anon_sym_char] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_const] = ACTIONS(377), + [anon_sym_default] = ACTIONS(377), + [anon_sym_union] = ACTIONS(377), + [anon_sym_POUND] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_ref] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_else] = ACTIONS(862), + [anon_sym_COLON_COLON] = ACTIONS(375), + [anon_sym__] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [sym_mutable_specifier] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [sym_integer_literal] = ACTIONS(375), + [aux_sym_string_literal_token1] = ACTIONS(375), + [sym_char_literal] = ACTIONS(375), + [anon_sym_true] = ACTIONS(377), + [anon_sym_false] = ACTIONS(377), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(377), + [sym_super] = ACTIONS(377), + [sym_crate] = ACTIONS(377), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(375), + [sym_float_literal] = ACTIONS(375), [sym_block_comment] = ACTIONS(3), }, [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_identifier] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(417), + [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_as] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [anon_sym_default] = ACTIONS(419), + [anon_sym_union] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(417), + [anon_sym_ref] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_else] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(417), + [anon_sym__] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(417), + [sym_mutable_specifier] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(417), + [anon_sym_DASH_EQ] = ACTIONS(417), + [anon_sym_STAR_EQ] = ACTIONS(417), + [anon_sym_SLASH_EQ] = ACTIONS(417), + [anon_sym_PERCENT_EQ] = ACTIONS(417), + [anon_sym_AMP_EQ] = ACTIONS(417), + [anon_sym_PIPE_EQ] = ACTIONS(417), + [anon_sym_CARET_EQ] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(417), + [anon_sym_GT_GT_EQ] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [sym_integer_literal] = ACTIONS(417), + [aux_sym_string_literal_token1] = ACTIONS(417), + [sym_char_literal] = ACTIONS(417), + [anon_sym_true] = ACTIONS(419), + [anon_sym_false] = ACTIONS(419), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(419), + [sym_super] = ACTIONS(419), + [sym_crate] = ACTIONS(419), + [sym_metavariable] = ACTIONS(417), + [sym_raw_string_literal] = ACTIONS(417), + [sym_float_literal] = ACTIONS(417), [sym_block_comment] = ACTIONS(3), }, [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_identifier] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_STAR] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(429), + [anon_sym_u8] = ACTIONS(431), + [anon_sym_i8] = ACTIONS(431), + [anon_sym_u16] = ACTIONS(431), + [anon_sym_i16] = ACTIONS(431), + [anon_sym_u32] = ACTIONS(431), + [anon_sym_i32] = ACTIONS(431), + [anon_sym_u64] = ACTIONS(431), + [anon_sym_i64] = ACTIONS(431), + [anon_sym_u128] = ACTIONS(431), + [anon_sym_i128] = ACTIONS(431), + [anon_sym_isize] = ACTIONS(431), + [anon_sym_usize] = ACTIONS(431), + [anon_sym_f32] = ACTIONS(431), + [anon_sym_f64] = ACTIONS(431), + [anon_sym_bool] = ACTIONS(431), + [anon_sym_str] = ACTIONS(431), + [anon_sym_char] = ACTIONS(431), + [anon_sym_as] = ACTIONS(431), + [anon_sym_const] = ACTIONS(431), + [anon_sym_default] = ACTIONS(431), + [anon_sym_union] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(431), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_else] = ACTIONS(431), + [anon_sym_COLON_COLON] = ACTIONS(429), + [anon_sym__] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(429), + [sym_mutable_specifier] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(431), + [anon_sym_GT_GT] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_PLUS_EQ] = ACTIONS(429), + [anon_sym_DASH_EQ] = ACTIONS(429), + [anon_sym_STAR_EQ] = ACTIONS(429), + [anon_sym_SLASH_EQ] = ACTIONS(429), + [anon_sym_PERCENT_EQ] = ACTIONS(429), + [anon_sym_AMP_EQ] = ACTIONS(429), + [anon_sym_PIPE_EQ] = ACTIONS(429), + [anon_sym_CARET_EQ] = ACTIONS(429), + [anon_sym_LT_LT_EQ] = ACTIONS(429), + [anon_sym_GT_GT_EQ] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(431), + [sym_integer_literal] = ACTIONS(429), + [aux_sym_string_literal_token1] = ACTIONS(429), + [sym_char_literal] = ACTIONS(429), + [anon_sym_true] = ACTIONS(431), + [anon_sym_false] = ACTIONS(431), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(431), + [sym_super] = ACTIONS(431), + [sym_crate] = ACTIONS(431), + [sym_metavariable] = ACTIONS(429), + [sym_raw_string_literal] = ACTIONS(429), + [sym_float_literal] = ACTIONS(429), [sym_block_comment] = ACTIONS(3), }, [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_identifier] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(427), + [anon_sym_i8] = ACTIONS(427), + [anon_sym_u16] = ACTIONS(427), + [anon_sym_i16] = ACTIONS(427), + [anon_sym_u32] = ACTIONS(427), + [anon_sym_i32] = ACTIONS(427), + [anon_sym_u64] = ACTIONS(427), + [anon_sym_i64] = ACTIONS(427), + [anon_sym_u128] = ACTIONS(427), + [anon_sym_i128] = ACTIONS(427), + [anon_sym_isize] = ACTIONS(427), + [anon_sym_usize] = ACTIONS(427), + [anon_sym_f32] = ACTIONS(427), + [anon_sym_f64] = ACTIONS(427), + [anon_sym_bool] = ACTIONS(427), + [anon_sym_str] = ACTIONS(427), + [anon_sym_char] = ACTIONS(427), + [anon_sym_as] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [anon_sym_default] = ACTIONS(427), + [anon_sym_union] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(425), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(425), + [anon_sym_ref] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_else] = ACTIONS(427), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym__] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(425), + [sym_mutable_specifier] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_LT] = ACTIONS(427), + [anon_sym_GT_GT] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(425), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_char_literal] = ACTIONS(425), + [anon_sym_true] = ACTIONS(427), + [anon_sym_false] = ACTIONS(427), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(427), + [sym_super] = ACTIONS(427), + [sym_crate] = ACTIONS(427), + [sym_metavariable] = ACTIONS(425), + [sym_raw_string_literal] = ACTIONS(425), + [sym_float_literal] = ACTIONS(425), [sym_block_comment] = ACTIONS(3), }, [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_identifier] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_QMARK] = ACTIONS(437), + [anon_sym_u8] = ACTIONS(439), + [anon_sym_i8] = ACTIONS(439), + [anon_sym_u16] = ACTIONS(439), + [anon_sym_i16] = ACTIONS(439), + [anon_sym_u32] = ACTIONS(439), + [anon_sym_i32] = ACTIONS(439), + [anon_sym_u64] = ACTIONS(439), + [anon_sym_i64] = ACTIONS(439), + [anon_sym_u128] = ACTIONS(439), + [anon_sym_i128] = ACTIONS(439), + [anon_sym_isize] = ACTIONS(439), + [anon_sym_usize] = ACTIONS(439), + [anon_sym_f32] = ACTIONS(439), + [anon_sym_f64] = ACTIONS(439), + [anon_sym_bool] = ACTIONS(439), + [anon_sym_str] = ACTIONS(439), + [anon_sym_char] = ACTIONS(439), + [anon_sym_as] = ACTIONS(439), + [anon_sym_const] = ACTIONS(439), + [anon_sym_default] = ACTIONS(439), + [anon_sym_union] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(439), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_ref] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_else] = ACTIONS(439), + [anon_sym_COLON_COLON] = ACTIONS(437), + [anon_sym__] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_mutable_specifier] = ACTIONS(439), + [anon_sym_DOT_DOT] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(437), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(437), + [anon_sym_PIPE_PIPE] = ACTIONS(437), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(437), + [anon_sym_BANG_EQ] = ACTIONS(437), + [anon_sym_LT_EQ] = ACTIONS(437), + [anon_sym_GT_EQ] = ACTIONS(437), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PERCENT] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_DASH_EQ] = ACTIONS(437), + [anon_sym_STAR_EQ] = ACTIONS(437), + [anon_sym_SLASH_EQ] = ACTIONS(437), + [anon_sym_PERCENT_EQ] = ACTIONS(437), + [anon_sym_AMP_EQ] = ACTIONS(437), + [anon_sym_PIPE_EQ] = ACTIONS(437), + [anon_sym_CARET_EQ] = ACTIONS(437), + [anon_sym_LT_LT_EQ] = ACTIONS(437), + [anon_sym_GT_GT_EQ] = ACTIONS(437), + [anon_sym_DOT] = ACTIONS(439), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(437), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(439), + [anon_sym_false] = ACTIONS(439), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(437), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), [sym_block_comment] = ACTIONS(3), }, [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_identifier] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(433), + [anon_sym_u8] = ACTIONS(435), + [anon_sym_i8] = ACTIONS(435), + [anon_sym_u16] = ACTIONS(435), + [anon_sym_i16] = ACTIONS(435), + [anon_sym_u32] = ACTIONS(435), + [anon_sym_i32] = ACTIONS(435), + [anon_sym_u64] = ACTIONS(435), + [anon_sym_i64] = ACTIONS(435), + [anon_sym_u128] = ACTIONS(435), + [anon_sym_i128] = ACTIONS(435), + [anon_sym_isize] = ACTIONS(435), + [anon_sym_usize] = ACTIONS(435), + [anon_sym_f32] = ACTIONS(435), + [anon_sym_f64] = ACTIONS(435), + [anon_sym_bool] = ACTIONS(435), + [anon_sym_str] = ACTIONS(435), + [anon_sym_char] = ACTIONS(435), + [anon_sym_as] = ACTIONS(435), + [anon_sym_const] = ACTIONS(435), + [anon_sym_default] = ACTIONS(435), + [anon_sym_union] = ACTIONS(435), + [anon_sym_POUND] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_ref] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_else] = ACTIONS(435), + [anon_sym_COLON_COLON] = ACTIONS(433), + [anon_sym__] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(433), + [sym_mutable_specifier] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_SLASH] = ACTIONS(435), + [anon_sym_PERCENT] = ACTIONS(435), + [anon_sym_PLUS_EQ] = ACTIONS(433), + [anon_sym_DASH_EQ] = ACTIONS(433), + [anon_sym_STAR_EQ] = ACTIONS(433), + [anon_sym_SLASH_EQ] = ACTIONS(433), + [anon_sym_PERCENT_EQ] = ACTIONS(433), + [anon_sym_AMP_EQ] = ACTIONS(433), + [anon_sym_PIPE_EQ] = ACTIONS(433), + [anon_sym_CARET_EQ] = ACTIONS(433), + [anon_sym_LT_LT_EQ] = ACTIONS(433), + [anon_sym_GT_GT_EQ] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(433), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(433), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(435), + [sym_super] = ACTIONS(435), + [sym_crate] = ACTIONS(435), + [sym_metavariable] = ACTIONS(433), + [sym_raw_string_literal] = ACTIONS(433), + [sym_float_literal] = ACTIONS(433), [sym_block_comment] = ACTIONS(3), }, [224] = { - [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_identifier] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_QMARK] = ACTIONS(421), + [anon_sym_u8] = ACTIONS(423), + [anon_sym_i8] = ACTIONS(423), + [anon_sym_u16] = ACTIONS(423), + [anon_sym_i16] = ACTIONS(423), + [anon_sym_u32] = ACTIONS(423), + [anon_sym_i32] = ACTIONS(423), + [anon_sym_u64] = ACTIONS(423), + [anon_sym_i64] = ACTIONS(423), + [anon_sym_u128] = ACTIONS(423), + [anon_sym_i128] = ACTIONS(423), + [anon_sym_isize] = ACTIONS(423), + [anon_sym_usize] = ACTIONS(423), + [anon_sym_f32] = ACTIONS(423), + [anon_sym_f64] = ACTIONS(423), + [anon_sym_bool] = ACTIONS(423), + [anon_sym_str] = ACTIONS(423), + [anon_sym_char] = ACTIONS(423), + [anon_sym_as] = ACTIONS(423), + [anon_sym_const] = ACTIONS(423), + [anon_sym_default] = ACTIONS(423), + [anon_sym_union] = ACTIONS(423), + [anon_sym_POUND] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_COMMA] = ACTIONS(421), + [anon_sym_ref] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_else] = ACTIONS(423), + [anon_sym_COLON_COLON] = ACTIONS(421), + [anon_sym__] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(421), + [sym_mutable_specifier] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(423), + [anon_sym_DOT_DOT_EQ] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_EQ_EQ] = ACTIONS(421), + [anon_sym_BANG_EQ] = ACTIONS(421), + [anon_sym_LT_EQ] = ACTIONS(421), + [anon_sym_GT_EQ] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_PLUS_EQ] = ACTIONS(421), + [anon_sym_DASH_EQ] = ACTIONS(421), + [anon_sym_STAR_EQ] = ACTIONS(421), + [anon_sym_SLASH_EQ] = ACTIONS(421), + [anon_sym_PERCENT_EQ] = ACTIONS(421), + [anon_sym_AMP_EQ] = ACTIONS(421), + [anon_sym_PIPE_EQ] = ACTIONS(421), + [anon_sym_CARET_EQ] = ACTIONS(421), + [anon_sym_LT_LT_EQ] = ACTIONS(421), + [anon_sym_GT_GT_EQ] = ACTIONS(421), + [anon_sym_DOT] = ACTIONS(423), + [sym_integer_literal] = ACTIONS(421), + [aux_sym_string_literal_token1] = ACTIONS(421), + [sym_char_literal] = ACTIONS(421), + [anon_sym_true] = ACTIONS(423), + [anon_sym_false] = ACTIONS(423), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(423), + [sym_super] = ACTIONS(423), + [sym_crate] = ACTIONS(423), + [sym_metavariable] = ACTIONS(421), + [sym_raw_string_literal] = ACTIONS(421), + [sym_float_literal] = ACTIONS(421), [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_identifier] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_RBRACE] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(553), + [anon_sym_i8] = ACTIONS(553), + [anon_sym_u16] = ACTIONS(553), + [anon_sym_i16] = ACTIONS(553), + [anon_sym_u32] = ACTIONS(553), + [anon_sym_i32] = ACTIONS(553), + [anon_sym_u64] = ACTIONS(553), + [anon_sym_i64] = ACTIONS(553), + [anon_sym_u128] = ACTIONS(553), + [anon_sym_i128] = ACTIONS(553), + [anon_sym_isize] = ACTIONS(553), + [anon_sym_usize] = ACTIONS(553), + [anon_sym_f32] = ACTIONS(553), + [anon_sym_f64] = ACTIONS(553), + [anon_sym_bool] = ACTIONS(553), + [anon_sym_str] = ACTIONS(553), + [anon_sym_char] = ACTIONS(553), + [anon_sym_as] = ACTIONS(553), + [anon_sym_const] = ACTIONS(553), + [anon_sym_default] = ACTIONS(553), + [anon_sym_union] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(553), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_ref] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(553), + [anon_sym_GT] = ACTIONS(553), + [anon_sym_COLON_COLON] = ACTIONS(551), + [anon_sym__] = ACTIONS(553), + [anon_sym_AMP] = ACTIONS(553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(551), + [sym_mutable_specifier] = ACTIONS(553), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_AMP_AMP] = ACTIONS(551), + [anon_sym_PIPE_PIPE] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(553), + [anon_sym_CARET] = ACTIONS(553), + [anon_sym_EQ_EQ] = ACTIONS(551), + [anon_sym_BANG_EQ] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(553), + [anon_sym_GT_GT] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(553), + [anon_sym_PERCENT] = ACTIONS(553), + [anon_sym_PLUS_EQ] = ACTIONS(551), + [anon_sym_DASH_EQ] = ACTIONS(551), + [anon_sym_STAR_EQ] = ACTIONS(551), + [anon_sym_SLASH_EQ] = ACTIONS(551), + [anon_sym_PERCENT_EQ] = ACTIONS(551), + [anon_sym_AMP_EQ] = ACTIONS(551), + [anon_sym_PIPE_EQ] = ACTIONS(551), + [anon_sym_CARET_EQ] = ACTIONS(551), + [anon_sym_LT_LT_EQ] = ACTIONS(551), + [anon_sym_GT_GT_EQ] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(553), + [sym_integer_literal] = ACTIONS(551), + [aux_sym_string_literal_token1] = ACTIONS(551), + [sym_char_literal] = ACTIONS(551), + [anon_sym_true] = ACTIONS(553), + [anon_sym_false] = ACTIONS(553), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(553), + [sym_super] = ACTIONS(553), + [sym_crate] = ACTIONS(553), + [sym_metavariable] = ACTIONS(551), + [sym_raw_string_literal] = ACTIONS(551), + [sym_float_literal] = ACTIONS(551), [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_identifier] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_u8] = ACTIONS(864), + [anon_sym_i8] = ACTIONS(864), + [anon_sym_u16] = ACTIONS(864), + [anon_sym_i16] = ACTIONS(864), + [anon_sym_u32] = ACTIONS(864), + [anon_sym_i32] = ACTIONS(864), + [anon_sym_u64] = ACTIONS(864), + [anon_sym_i64] = ACTIONS(864), + [anon_sym_u128] = ACTIONS(864), + [anon_sym_i128] = ACTIONS(864), + [anon_sym_isize] = ACTIONS(864), + [anon_sym_usize] = ACTIONS(864), + [anon_sym_f32] = ACTIONS(864), + [anon_sym_f64] = ACTIONS(864), + [anon_sym_bool] = ACTIONS(864), + [anon_sym_str] = ACTIONS(864), + [anon_sym_char] = ACTIONS(864), + [anon_sym_as] = ACTIONS(575), + [anon_sym_const] = ACTIONS(864), + [anon_sym_default] = ACTIONS(864), + [anon_sym_union] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_COMMA] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(864), + [anon_sym_LT] = ACTIONS(864), + [anon_sym_GT] = ACTIONS(575), + [anon_sym_COLON_COLON] = ACTIONS(866), + [anon_sym__] = ACTIONS(864), + [anon_sym_AMP] = ACTIONS(864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [sym_mutable_specifier] = ACTIONS(864), + [anon_sym_DOT_DOT] = ACTIONS(864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(864), + [anon_sym_AMP_AMP] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_PLUS_EQ] = ACTIONS(577), + [anon_sym_DASH_EQ] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(577), + [anon_sym_SLASH_EQ] = ACTIONS(577), + [anon_sym_PERCENT_EQ] = ACTIONS(577), + [anon_sym_AMP_EQ] = ACTIONS(577), + [anon_sym_PIPE_EQ] = ACTIONS(577), + [anon_sym_CARET_EQ] = ACTIONS(577), + [anon_sym_LT_LT_EQ] = ACTIONS(577), + [anon_sym_GT_GT_EQ] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(575), + [sym_integer_literal] = ACTIONS(866), + [aux_sym_string_literal_token1] = ACTIONS(866), + [sym_char_literal] = ACTIONS(866), + [anon_sym_true] = ACTIONS(864), + [anon_sym_false] = ACTIONS(864), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(864), + [sym_super] = ACTIONS(864), + [sym_crate] = ACTIONS(864), + [sym_metavariable] = ACTIONS(866), + [sym_raw_string_literal] = ACTIONS(866), + [sym_float_literal] = ACTIONS(866), [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_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1880), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1882), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_type_binding] = STATE(2180), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [sym_block] = STATE(2180), + [sym__literal] = STATE(2180), + [sym_string_literal] = STATE(2255), + [sym_boolean_literal] = STATE(2255), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), [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_identifier] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_u8] = ACTIONS(623), + [anon_sym_i8] = ACTIONS(623), + [anon_sym_u16] = ACTIONS(623), + [anon_sym_i16] = ACTIONS(623), + [anon_sym_u32] = ACTIONS(623), + [anon_sym_i32] = ACTIONS(623), + [anon_sym_u64] = ACTIONS(623), + [anon_sym_i64] = ACTIONS(623), + [anon_sym_u128] = ACTIONS(623), + [anon_sym_i128] = ACTIONS(623), + [anon_sym_isize] = ACTIONS(623), + [anon_sym_usize] = ACTIONS(623), + [anon_sym_f32] = ACTIONS(623), + [anon_sym_f64] = ACTIONS(623), + [anon_sym_bool] = ACTIONS(623), + [anon_sym_str] = ACTIONS(623), + [anon_sym_char] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_union] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_ref] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(621), + [anon_sym__] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(621), + [sym_mutable_specifier] = ACTIONS(623), + [anon_sym_DOT_DOT] = ACTIONS(623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_AMP_EQ] = ACTIONS(621), + [anon_sym_PIPE_EQ] = ACTIONS(621), + [anon_sym_CARET_EQ] = ACTIONS(621), + [anon_sym_LT_LT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_EQ] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(623), + [sym_integer_literal] = ACTIONS(621), + [aux_sym_string_literal_token1] = ACTIONS(621), + [sym_char_literal] = ACTIONS(621), + [anon_sym_true] = ACTIONS(623), + [anon_sym_false] = ACTIONS(623), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(623), + [sym_super] = ACTIONS(623), + [sym_crate] = ACTIONS(623), + [sym_metavariable] = ACTIONS(621), + [sym_raw_string_literal] = ACTIONS(621), + [sym_float_literal] = ACTIONS(621), [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_identifier] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(445), + [anon_sym_u8] = ACTIONS(447), + [anon_sym_i8] = ACTIONS(447), + [anon_sym_u16] = ACTIONS(447), + [anon_sym_i16] = ACTIONS(447), + [anon_sym_u32] = ACTIONS(447), + [anon_sym_i32] = ACTIONS(447), + [anon_sym_u64] = ACTIONS(447), + [anon_sym_i64] = ACTIONS(447), + [anon_sym_u128] = ACTIONS(447), + [anon_sym_i128] = ACTIONS(447), + [anon_sym_isize] = ACTIONS(447), + [anon_sym_usize] = ACTIONS(447), + [anon_sym_f32] = ACTIONS(447), + [anon_sym_f64] = ACTIONS(447), + [anon_sym_bool] = ACTIONS(447), + [anon_sym_str] = ACTIONS(447), + [anon_sym_char] = ACTIONS(447), + [anon_sym_as] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [anon_sym_default] = ACTIONS(447), + [anon_sym_union] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_COMMA] = ACTIONS(445), + [anon_sym_ref] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(445), + [anon_sym__] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(445), + [sym_mutable_specifier] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(447), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PERCENT] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), + [anon_sym_STAR_EQ] = ACTIONS(445), + [anon_sym_SLASH_EQ] = ACTIONS(445), + [anon_sym_PERCENT_EQ] = ACTIONS(445), + [anon_sym_AMP_EQ] = ACTIONS(445), + [anon_sym_PIPE_EQ] = ACTIONS(445), + [anon_sym_CARET_EQ] = ACTIONS(445), + [anon_sym_LT_LT_EQ] = ACTIONS(445), + [anon_sym_GT_GT_EQ] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(447), + [sym_integer_literal] = ACTIONS(445), + [aux_sym_string_literal_token1] = ACTIONS(445), + [sym_char_literal] = ACTIONS(445), + [anon_sym_true] = ACTIONS(447), + [anon_sym_false] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(447), + [sym_super] = ACTIONS(447), + [sym_crate] = ACTIONS(447), + [sym_metavariable] = ACTIONS(445), + [sym_raw_string_literal] = ACTIONS(445), + [sym_float_literal] = ACTIONS(445), [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_identifier] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_ref] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym__] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [sym_mutable_specifier] = ACTIONS(561), + [anon_sym_DOT_DOT] = ACTIONS(561), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(559), + [aux_sym_string_literal_token1] = ACTIONS(559), + [sym_char_literal] = ACTIONS(559), + [anon_sym_true] = ACTIONS(561), + [anon_sym_false] = ACTIONS(561), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(559), + [sym_raw_string_literal] = ACTIONS(559), + [sym_float_literal] = ACTIONS(559), [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_identifier] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(611), + [anon_sym_i8] = ACTIONS(611), + [anon_sym_u16] = ACTIONS(611), + [anon_sym_i16] = ACTIONS(611), + [anon_sym_u32] = ACTIONS(611), + [anon_sym_i32] = ACTIONS(611), + [anon_sym_u64] = ACTIONS(611), + [anon_sym_i64] = ACTIONS(611), + [anon_sym_u128] = ACTIONS(611), + [anon_sym_i128] = ACTIONS(611), + [anon_sym_isize] = ACTIONS(611), + [anon_sym_usize] = ACTIONS(611), + [anon_sym_f32] = ACTIONS(611), + [anon_sym_f64] = ACTIONS(611), + [anon_sym_bool] = ACTIONS(611), + [anon_sym_str] = ACTIONS(611), + [anon_sym_char] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_const] = ACTIONS(611), + [anon_sym_default] = ACTIONS(611), + [anon_sym_union] = ACTIONS(611), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_ref] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym__] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_mutable_specifier] = ACTIONS(611), + [anon_sym_DOT_DOT] = ACTIONS(611), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(609), + [aux_sym_string_literal_token1] = ACTIONS(609), + [sym_char_literal] = ACTIONS(609), + [anon_sym_true] = ACTIONS(611), + [anon_sym_false] = ACTIONS(611), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(611), + [sym_super] = ACTIONS(611), + [sym_crate] = ACTIONS(611), + [sym_metavariable] = ACTIONS(609), + [sym_raw_string_literal] = ACTIONS(609), + [sym_float_literal] = ACTIONS(609), [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_identifier] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_u8] = ACTIONS(601), + [anon_sym_i8] = ACTIONS(601), + [anon_sym_u16] = ACTIONS(601), + [anon_sym_i16] = ACTIONS(601), + [anon_sym_u32] = ACTIONS(601), + [anon_sym_i32] = ACTIONS(601), + [anon_sym_u64] = ACTIONS(601), + [anon_sym_i64] = ACTIONS(601), + [anon_sym_u128] = ACTIONS(601), + [anon_sym_i128] = ACTIONS(601), + [anon_sym_isize] = ACTIONS(601), + [anon_sym_usize] = ACTIONS(601), + [anon_sym_f32] = ACTIONS(601), + [anon_sym_f64] = ACTIONS(601), + [anon_sym_bool] = ACTIONS(601), + [anon_sym_str] = ACTIONS(601), + [anon_sym_char] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_default] = ACTIONS(601), + [anon_sym_union] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_ref] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_COLON_COLON] = ACTIONS(599), + [anon_sym__] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(599), + [sym_mutable_specifier] = ACTIONS(601), + [anon_sym_DOT_DOT] = ACTIONS(601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(599), + [anon_sym_DASH_EQ] = ACTIONS(599), + [anon_sym_STAR_EQ] = ACTIONS(599), + [anon_sym_SLASH_EQ] = ACTIONS(599), + [anon_sym_PERCENT_EQ] = ACTIONS(599), + [anon_sym_AMP_EQ] = ACTIONS(599), + [anon_sym_PIPE_EQ] = ACTIONS(599), + [anon_sym_CARET_EQ] = ACTIONS(599), + [anon_sym_LT_LT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_EQ] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(601), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(599), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(601), + [anon_sym_false] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(601), + [sym_super] = ACTIONS(601), + [sym_crate] = ACTIONS(601), + [sym_metavariable] = ACTIONS(599), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, [233] = { - [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_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(589), + [anon_sym_i8] = ACTIONS(589), + [anon_sym_u16] = ACTIONS(589), + [anon_sym_i16] = ACTIONS(589), + [anon_sym_u32] = ACTIONS(589), + [anon_sym_i32] = ACTIONS(589), + [anon_sym_u64] = ACTIONS(589), + [anon_sym_i64] = ACTIONS(589), + [anon_sym_u128] = ACTIONS(589), + [anon_sym_i128] = ACTIONS(589), + [anon_sym_isize] = ACTIONS(589), + [anon_sym_usize] = ACTIONS(589), + [anon_sym_f32] = ACTIONS(589), + [anon_sym_f64] = ACTIONS(589), + [anon_sym_bool] = ACTIONS(589), + [anon_sym_str] = ACTIONS(589), + [anon_sym_char] = ACTIONS(589), + [anon_sym_as] = ACTIONS(589), + [anon_sym_const] = ACTIONS(589), + [anon_sym_default] = ACTIONS(589), + [anon_sym_union] = ACTIONS(589), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_ref] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym__] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [sym_mutable_specifier] = ACTIONS(589), + [anon_sym_DOT_DOT] = ACTIONS(589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_DOT] = ACTIONS(589), + [sym_integer_literal] = ACTIONS(587), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(587), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(589), + [sym_super] = ACTIONS(589), + [sym_crate] = ACTIONS(589), + [sym_metavariable] = ACTIONS(587), + [sym_raw_string_literal] = ACTIONS(587), + [sym_float_literal] = ACTIONS(587), [sym_block_comment] = ACTIONS(3), }, [234] = { - [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_identifier] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_u8] = ACTIONS(894), + [anon_sym_i8] = ACTIONS(894), + [anon_sym_u16] = ACTIONS(894), + [anon_sym_i16] = ACTIONS(894), + [anon_sym_u32] = ACTIONS(894), + [anon_sym_i32] = ACTIONS(894), + [anon_sym_u64] = ACTIONS(894), + [anon_sym_i64] = ACTIONS(894), + [anon_sym_u128] = ACTIONS(894), + [anon_sym_i128] = ACTIONS(894), + [anon_sym_isize] = ACTIONS(894), + [anon_sym_usize] = ACTIONS(894), + [anon_sym_f32] = ACTIONS(894), + [anon_sym_f64] = ACTIONS(894), + [anon_sym_bool] = ACTIONS(894), + [anon_sym_str] = ACTIONS(894), + [anon_sym_char] = ACTIONS(894), + [anon_sym_as] = ACTIONS(575), + [anon_sym_const] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(896), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_COMMA] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(575), + [anon_sym_COLON_COLON] = ACTIONS(896), + [anon_sym__] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(577), + [sym_mutable_specifier] = ACTIONS(894), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_AMP_AMP] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(575), + [anon_sym_PLUS_EQ] = ACTIONS(577), + [anon_sym_DASH_EQ] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(577), + [anon_sym_SLASH_EQ] = ACTIONS(577), + [anon_sym_PERCENT_EQ] = ACTIONS(577), + [anon_sym_AMP_EQ] = ACTIONS(577), + [anon_sym_PIPE_EQ] = ACTIONS(577), + [anon_sym_CARET_EQ] = ACTIONS(577), + [anon_sym_LT_LT_EQ] = ACTIONS(577), + [anon_sym_GT_GT_EQ] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(575), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_crate] = ACTIONS(894), + [sym_metavariable] = ACTIONS(896), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [235] = { - [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_identifier] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_u8] = ACTIONS(619), + [anon_sym_i8] = ACTIONS(619), + [anon_sym_u16] = ACTIONS(619), + [anon_sym_i16] = ACTIONS(619), + [anon_sym_u32] = ACTIONS(619), + [anon_sym_i32] = ACTIONS(619), + [anon_sym_u64] = ACTIONS(619), + [anon_sym_i64] = ACTIONS(619), + [anon_sym_u128] = ACTIONS(619), + [anon_sym_i128] = ACTIONS(619), + [anon_sym_isize] = ACTIONS(619), + [anon_sym_usize] = ACTIONS(619), + [anon_sym_f32] = ACTIONS(619), + [anon_sym_f64] = ACTIONS(619), + [anon_sym_bool] = ACTIONS(619), + [anon_sym_str] = ACTIONS(619), + [anon_sym_char] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_default] = ACTIONS(619), + [anon_sym_union] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_ref] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_COLON_COLON] = ACTIONS(617), + [anon_sym__] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(617), + [sym_mutable_specifier] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_AMP_EQ] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(617), + [anon_sym_CARET_EQ] = ACTIONS(617), + [anon_sym_LT_LT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_EQ] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(619), + [sym_integer_literal] = ACTIONS(617), + [aux_sym_string_literal_token1] = ACTIONS(617), + [sym_char_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(619), + [sym_super] = ACTIONS(619), + [sym_crate] = ACTIONS(619), + [sym_metavariable] = ACTIONS(617), + [sym_raw_string_literal] = ACTIONS(617), + [sym_float_literal] = ACTIONS(617), [sym_block_comment] = ACTIONS(3), }, [236] = { - [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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1880), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1882), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_type_binding] = STATE(2180), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [sym_block] = STATE(2180), + [sym__literal] = STATE(2180), + [sym_string_literal] = STATE(2255), + [sym_boolean_literal] = STATE(2255), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [anon_sym_LT] = ACTIONS(77), - [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), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), [sym_block_comment] = ACTIONS(3), }, [237] = { - [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(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(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_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_identifier] = ACTIONS(557), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_POUND] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_ref] = ACTIONS(557), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_COLON_COLON] = ACTIONS(555), + [anon_sym__] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(555), + [sym_mutable_specifier] = ACTIONS(557), + [anon_sym_DOT_DOT] = ACTIONS(557), + [anon_sym_DOT_DOT_EQ] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_AMP_AMP] = ACTIONS(555), + [anon_sym_PIPE_PIPE] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(557), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ] = ACTIONS(555), + [anon_sym_LT_EQ] = ACTIONS(555), + [anon_sym_GT_EQ] = ACTIONS(555), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(555), + [anon_sym_DASH_EQ] = ACTIONS(555), + [anon_sym_STAR_EQ] = ACTIONS(555), + [anon_sym_SLASH_EQ] = ACTIONS(555), + [anon_sym_PERCENT_EQ] = ACTIONS(555), + [anon_sym_AMP_EQ] = ACTIONS(555), + [anon_sym_PIPE_EQ] = ACTIONS(555), + [anon_sym_CARET_EQ] = ACTIONS(555), + [anon_sym_LT_LT_EQ] = ACTIONS(555), + [anon_sym_GT_GT_EQ] = ACTIONS(555), + [anon_sym_DOT] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(555), + [aux_sym_string_literal_token1] = ACTIONS(555), + [sym_char_literal] = ACTIONS(555), + [anon_sym_true] = ACTIONS(557), + [anon_sym_false] = ACTIONS(557), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(555), + [sym_raw_string_literal] = ACTIONS(555), + [sym_float_literal] = ACTIONS(555), [sym_block_comment] = ACTIONS(3), }, [238] = { - [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(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(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_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_identifier] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_QMARK] = ACTIONS(441), + [anon_sym_u8] = ACTIONS(443), + [anon_sym_i8] = ACTIONS(443), + [anon_sym_u16] = ACTIONS(443), + [anon_sym_i16] = ACTIONS(443), + [anon_sym_u32] = ACTIONS(443), + [anon_sym_i32] = ACTIONS(443), + [anon_sym_u64] = ACTIONS(443), + [anon_sym_i64] = ACTIONS(443), + [anon_sym_u128] = ACTIONS(443), + [anon_sym_i128] = ACTIONS(443), + [anon_sym_isize] = ACTIONS(443), + [anon_sym_usize] = ACTIONS(443), + [anon_sym_f32] = ACTIONS(443), + [anon_sym_f64] = ACTIONS(443), + [anon_sym_bool] = ACTIONS(443), + [anon_sym_str] = ACTIONS(443), + [anon_sym_char] = ACTIONS(443), + [anon_sym_as] = ACTIONS(443), + [anon_sym_const] = ACTIONS(443), + [anon_sym_default] = ACTIONS(443), + [anon_sym_union] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(441), + [anon_sym_EQ] = ACTIONS(443), + [anon_sym_COMMA] = ACTIONS(441), + [anon_sym_ref] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_GT] = ACTIONS(443), + [anon_sym_COLON_COLON] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(441), + [sym_mutable_specifier] = ACTIONS(443), + [anon_sym_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_AMP_AMP] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_CARET] = ACTIONS(443), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_GT_EQ] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(443), + [anon_sym_GT_GT] = ACTIONS(443), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [anon_sym_PLUS_EQ] = ACTIONS(441), + [anon_sym_DASH_EQ] = ACTIONS(441), + [anon_sym_STAR_EQ] = ACTIONS(441), + [anon_sym_SLASH_EQ] = ACTIONS(441), + [anon_sym_PERCENT_EQ] = ACTIONS(441), + [anon_sym_AMP_EQ] = ACTIONS(441), + [anon_sym_PIPE_EQ] = ACTIONS(441), + [anon_sym_CARET_EQ] = ACTIONS(441), + [anon_sym_LT_LT_EQ] = ACTIONS(441), + [anon_sym_GT_GT_EQ] = ACTIONS(441), + [anon_sym_DOT] = ACTIONS(443), + [sym_integer_literal] = ACTIONS(441), + [aux_sym_string_literal_token1] = ACTIONS(441), + [sym_char_literal] = ACTIONS(441), + [anon_sym_true] = ACTIONS(443), + [anon_sym_false] = ACTIONS(443), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(443), + [sym_crate] = ACTIONS(443), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(441), + [sym_float_literal] = ACTIONS(441), [sym_block_comment] = ACTIONS(3), }, [239] = { - [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(886), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(897), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_u8] = ACTIONS(886), - [anon_sym_i8] = ACTIONS(886), - [anon_sym_u16] = ACTIONS(886), - [anon_sym_i16] = ACTIONS(886), - [anon_sym_u32] = ACTIONS(886), - [anon_sym_i32] = ACTIONS(886), - [anon_sym_u64] = ACTIONS(886), - [anon_sym_i64] = ACTIONS(886), - [anon_sym_u128] = ACTIONS(886), - [anon_sym_i128] = ACTIONS(886), - [anon_sym_isize] = ACTIONS(886), - [anon_sym_usize] = ACTIONS(886), - [anon_sym_f32] = ACTIONS(886), - [anon_sym_f64] = ACTIONS(886), - [anon_sym_bool] = ACTIONS(886), - [anon_sym_str] = ACTIONS(886), - [anon_sym_char] = ACTIONS(886), - [aux_sym__non_special_token_token1] = ACTIONS(886), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_as] = ACTIONS(886), - [anon_sym_async] = ACTIONS(886), - [anon_sym_await] = ACTIONS(886), - [anon_sym_break] = ACTIONS(886), - [anon_sym_const] = ACTIONS(886), - [anon_sym_continue] = ACTIONS(886), - [anon_sym_default] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(886), - [anon_sym_fn] = ACTIONS(886), - [anon_sym_for] = ACTIONS(886), - [anon_sym_if] = ACTIONS(886), - [anon_sym_impl] = ACTIONS(886), - [anon_sym_let] = ACTIONS(886), - [anon_sym_loop] = ACTIONS(886), - [anon_sym_match] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(886), - [anon_sym_pub] = ACTIONS(886), - [anon_sym_return] = ACTIONS(886), - [anon_sym_static] = ACTIONS(886), - [anon_sym_struct] = ACTIONS(886), - [anon_sym_trait] = ACTIONS(886), - [anon_sym_type] = ACTIONS(886), - [anon_sym_union] = ACTIONS(886), - [anon_sym_unsafe] = ACTIONS(886), - [anon_sym_use] = ACTIONS(886), - [anon_sym_where] = ACTIONS(886), - [anon_sym_while] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(903), - [aux_sym_string_literal_token1] = ACTIONS(906), - [sym_char_literal] = ACTIONS(903), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(886), - [sym_super] = ACTIONS(886), - [sym_crate] = ACTIONS(886), - [sym_metavariable] = ACTIONS(914), - [sym_raw_string_literal] = ACTIONS(903), - [sym_float_literal] = ACTIONS(903), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1880), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1882), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_type_binding] = STATE(2180), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [sym_block] = STATE(2180), + [sym__literal] = STATE(2180), + [sym_string_literal] = STATE(2255), + [sym_boolean_literal] = STATE(2255), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), [sym_block_comment] = ACTIONS(3), }, [240] = { - [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(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_identifier] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(625), + [anon_sym_u8] = ACTIONS(627), + [anon_sym_i8] = ACTIONS(627), + [anon_sym_u16] = ACTIONS(627), + [anon_sym_i16] = ACTIONS(627), + [anon_sym_u32] = ACTIONS(627), + [anon_sym_i32] = ACTIONS(627), + [anon_sym_u64] = ACTIONS(627), + [anon_sym_i64] = ACTIONS(627), + [anon_sym_u128] = ACTIONS(627), + [anon_sym_i128] = ACTIONS(627), + [anon_sym_isize] = ACTIONS(627), + [anon_sym_usize] = ACTIONS(627), + [anon_sym_f32] = ACTIONS(627), + [anon_sym_f64] = ACTIONS(627), + [anon_sym_bool] = ACTIONS(627), + [anon_sym_str] = ACTIONS(627), + [anon_sym_char] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_const] = ACTIONS(627), + [anon_sym_default] = ACTIONS(627), + [anon_sym_union] = ACTIONS(627), + [anon_sym_POUND] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_ref] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(625), + [sym_mutable_specifier] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(627), + [anon_sym_DOT_DOT_EQ] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_PLUS_EQ] = ACTIONS(625), + [anon_sym_DASH_EQ] = ACTIONS(625), + [anon_sym_STAR_EQ] = ACTIONS(625), + [anon_sym_SLASH_EQ] = ACTIONS(625), + [anon_sym_PERCENT_EQ] = ACTIONS(625), + [anon_sym_AMP_EQ] = ACTIONS(625), + [anon_sym_PIPE_EQ] = ACTIONS(625), + [anon_sym_CARET_EQ] = ACTIONS(625), + [anon_sym_LT_LT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_EQ] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(627), + [sym_integer_literal] = ACTIONS(625), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(625), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(627), + [sym_super] = ACTIONS(627), + [sym_crate] = ACTIONS(627), + [sym_metavariable] = ACTIONS(625), + [sym_raw_string_literal] = ACTIONS(625), + [sym_float_literal] = ACTIONS(625), [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(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(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(1042), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1044), - [sym_super] = ACTIONS(1044), - [sym_crate] = ACTIONS(1046), - [sym_metavariable] = ACTIONS(1048), + [sym_identifier] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_u8] = ACTIONS(549), + [anon_sym_i8] = ACTIONS(549), + [anon_sym_u16] = ACTIONS(549), + [anon_sym_i16] = ACTIONS(549), + [anon_sym_u32] = ACTIONS(549), + [anon_sym_i32] = ACTIONS(549), + [anon_sym_u64] = ACTIONS(549), + [anon_sym_i64] = ACTIONS(549), + [anon_sym_u128] = ACTIONS(549), + [anon_sym_i128] = ACTIONS(549), + [anon_sym_isize] = ACTIONS(549), + [anon_sym_usize] = ACTIONS(549), + [anon_sym_f32] = ACTIONS(549), + [anon_sym_f64] = ACTIONS(549), + [anon_sym_bool] = ACTIONS(549), + [anon_sym_str] = ACTIONS(549), + [anon_sym_char] = ACTIONS(549), + [anon_sym_as] = ACTIONS(549), + [anon_sym_const] = ACTIONS(549), + [anon_sym_default] = ACTIONS(549), + [anon_sym_union] = ACTIONS(549), + [anon_sym_POUND] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_ref] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_COLON_COLON] = ACTIONS(547), + [anon_sym__] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(547), + [sym_mutable_specifier] = ACTIONS(549), + [anon_sym_DOT_DOT] = ACTIONS(549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(547), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [sym_integer_literal] = ACTIONS(547), + [aux_sym_string_literal_token1] = ACTIONS(547), + [sym_char_literal] = ACTIONS(547), + [anon_sym_true] = ACTIONS(549), + [anon_sym_false] = ACTIONS(549), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(549), + [sym_super] = ACTIONS(549), + [sym_crate] = ACTIONS(549), + [sym_metavariable] = ACTIONS(547), + [sym_raw_string_literal] = ACTIONS(547), + [sym_float_literal] = ACTIONS(547), [sym_block_comment] = ACTIONS(3), }, [242] = { - [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(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(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(2290), - [aux_sym_declaration_list_repeat1] = STATE(241), - [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(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(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(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(1042), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1044), - [sym_super] = ACTIONS(1044), - [sym_crate] = ACTIONS(1046), - [sym_metavariable] = ACTIONS(1048), + [sym_identifier] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(591), + [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(591), + [anon_sym_u8] = ACTIONS(593), + [anon_sym_i8] = ACTIONS(593), + [anon_sym_u16] = ACTIONS(593), + [anon_sym_i16] = ACTIONS(593), + [anon_sym_u32] = ACTIONS(593), + [anon_sym_i32] = ACTIONS(593), + [anon_sym_u64] = ACTIONS(593), + [anon_sym_i64] = ACTIONS(593), + [anon_sym_u128] = ACTIONS(593), + [anon_sym_i128] = ACTIONS(593), + [anon_sym_isize] = ACTIONS(593), + [anon_sym_usize] = ACTIONS(593), + [anon_sym_f32] = ACTIONS(593), + [anon_sym_f64] = ACTIONS(593), + [anon_sym_bool] = ACTIONS(593), + [anon_sym_str] = ACTIONS(593), + [anon_sym_char] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_const] = ACTIONS(593), + [anon_sym_default] = ACTIONS(593), + [anon_sym_union] = ACTIONS(593), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_ref] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(591), + [anon_sym__] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(591), + [sym_mutable_specifier] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DOT_DOT_EQ] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT_EQ] = ACTIONS(591), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), + [anon_sym_STAR_EQ] = ACTIONS(591), + [anon_sym_SLASH_EQ] = ACTIONS(591), + [anon_sym_PERCENT_EQ] = ACTIONS(591), + [anon_sym_AMP_EQ] = ACTIONS(591), + [anon_sym_PIPE_EQ] = ACTIONS(591), + [anon_sym_CARET_EQ] = ACTIONS(591), + [anon_sym_LT_LT_EQ] = ACTIONS(591), + [anon_sym_GT_GT_EQ] = ACTIONS(591), + [anon_sym_DOT] = ACTIONS(593), + [sym_integer_literal] = ACTIONS(591), + [aux_sym_string_literal_token1] = ACTIONS(591), + [sym_char_literal] = ACTIONS(591), + [anon_sym_true] = ACTIONS(593), + [anon_sym_false] = ACTIONS(593), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(593), + [sym_super] = ACTIONS(593), + [sym_crate] = ACTIONS(593), + [sym_metavariable] = ACTIONS(591), + [sym_raw_string_literal] = ACTIONS(591), + [sym_float_literal] = ACTIONS(591), [sym_block_comment] = ACTIONS(3), }, [243] = { - [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(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(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(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(1042), + [sym_identifier] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_POUND] = ACTIONS(583), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_ref] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_COLON_COLON] = ACTIONS(583), + [anon_sym__] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(583), + [sym_mutable_specifier] = ACTIONS(585), + [anon_sym_DOT_DOT] = ACTIONS(585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(583), + [anon_sym_BANG_EQ] = ACTIONS(583), + [anon_sym_LT_EQ] = ACTIONS(583), + [anon_sym_GT_EQ] = ACTIONS(583), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(583), + [anon_sym_DASH_EQ] = ACTIONS(583), + [anon_sym_STAR_EQ] = ACTIONS(583), + [anon_sym_SLASH_EQ] = ACTIONS(583), + [anon_sym_PERCENT_EQ] = ACTIONS(583), + [anon_sym_AMP_EQ] = ACTIONS(583), + [anon_sym_PIPE_EQ] = ACTIONS(583), + [anon_sym_CARET_EQ] = ACTIONS(583), + [anon_sym_LT_LT_EQ] = ACTIONS(583), + [anon_sym_GT_GT_EQ] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(583), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(583), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1044), - [sym_super] = ACTIONS(1044), - [sym_crate] = ACTIONS(1046), - [sym_metavariable] = ACTIONS(1048), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(583), + [sym_raw_string_literal] = ACTIONS(583), + [sym_float_literal] = ACTIONS(583), [sym_block_comment] = ACTIONS(3), }, [244] = { - [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(1054), - [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(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(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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1880), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1882), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_type_binding] = STATE(2180), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [sym_block] = STATE(2180), + [sym__literal] = STATE(2180), + [sym_string_literal] = STATE(2255), + [sym_boolean_literal] = STATE(2255), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1042), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1044), - [sym_super] = ACTIONS(1044), - [sym_crate] = ACTIONS(1046), - [sym_metavariable] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), [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_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1783), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1782), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_type_binding] = STATE(1973), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [sym_block] = STATE(1973), + [sym__literal] = STATE(1973), + [sym_string_literal] = STATE(2255), + [sym_boolean_literal] = STATE(2255), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), [sym_block_comment] = ACTIONS(3), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_macro_rules_BANG] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1056), - [anon_sym_u8] = ACTIONS(1058), - [anon_sym_i8] = ACTIONS(1058), - [anon_sym_u16] = ACTIONS(1058), - [anon_sym_i16] = ACTIONS(1058), - [anon_sym_u32] = ACTIONS(1058), - [anon_sym_i32] = ACTIONS(1058), - [anon_sym_u64] = ACTIONS(1058), - [anon_sym_i64] = ACTIONS(1058), - [anon_sym_u128] = ACTIONS(1058), - [anon_sym_i128] = ACTIONS(1058), - [anon_sym_isize] = ACTIONS(1058), - [anon_sym_usize] = ACTIONS(1058), - [anon_sym_f32] = ACTIONS(1058), - [anon_sym_f64] = ACTIONS(1058), - [anon_sym_bool] = ACTIONS(1058), - [anon_sym_str] = ACTIONS(1058), - [anon_sym_char] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_async] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_const] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_default] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1058), - [anon_sym_fn] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_impl] = ACTIONS(1058), - [anon_sym_let] = ACTIONS(1058), - [anon_sym_loop] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1058), - [anon_sym_mod] = ACTIONS(1058), - [anon_sym_pub] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1058), - [anon_sym_struct] = ACTIONS(1058), - [anon_sym_trait] = ACTIONS(1058), - [anon_sym_type] = ACTIONS(1058), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1058), - [anon_sym_use] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_COLON_COLON] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_DOT_DOT] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PIPE] = ACTIONS(1056), - [anon_sym_yield] = ACTIONS(1058), - [anon_sym_move] = ACTIONS(1058), - [sym_integer_literal] = ACTIONS(1056), - [aux_sym_string_literal_token1] = ACTIONS(1056), - [sym_char_literal] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1058), - [sym_super] = ACTIONS(1058), - [sym_crate] = ACTIONS(1058), - [sym_metavariable] = ACTIONS(1056), - [sym_raw_string_literal] = ACTIONS(1056), - [sym_float_literal] = ACTIONS(1056), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1813), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1814), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_type_binding] = STATE(2085), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [sym_block] = STATE(2085), + [sym__literal] = STATE(2085), + [sym_string_literal] = STATE(2255), + [sym_boolean_literal] = STATE(2255), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), [sym_block_comment] = ACTIONS(3), }, [247] = { - [ts_builtin_sym_end] = ACTIONS(1060), - [sym_identifier] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_macro_rules_BANG] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_u8] = ACTIONS(1062), - [anon_sym_i8] = ACTIONS(1062), - [anon_sym_u16] = ACTIONS(1062), - [anon_sym_i16] = ACTIONS(1062), - [anon_sym_u32] = ACTIONS(1062), - [anon_sym_i32] = ACTIONS(1062), - [anon_sym_u64] = ACTIONS(1062), - [anon_sym_i64] = ACTIONS(1062), - [anon_sym_u128] = ACTIONS(1062), - [anon_sym_i128] = ACTIONS(1062), - [anon_sym_isize] = ACTIONS(1062), - [anon_sym_usize] = ACTIONS(1062), - [anon_sym_f32] = ACTIONS(1062), - [anon_sym_f64] = ACTIONS(1062), - [anon_sym_bool] = ACTIONS(1062), - [anon_sym_str] = ACTIONS(1062), - [anon_sym_char] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_async] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_fn] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_impl] = ACTIONS(1062), - [anon_sym_let] = ACTIONS(1062), - [anon_sym_loop] = ACTIONS(1062), - [anon_sym_match] = ACTIONS(1062), - [anon_sym_mod] = ACTIONS(1062), - [anon_sym_pub] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_trait] = ACTIONS(1062), - [anon_sym_type] = ACTIONS(1062), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_unsafe] = ACTIONS(1062), - [anon_sym_use] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(1060), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_COLON_COLON] = ACTIONS(1060), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_DOT_DOT] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_yield] = ACTIONS(1062), - [anon_sym_move] = ACTIONS(1062), - [sym_integer_literal] = ACTIONS(1060), - [aux_sym_string_literal_token1] = ACTIONS(1060), - [sym_char_literal] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1062), - [sym_super] = ACTIONS(1062), - [sym_crate] = ACTIONS(1062), - [sym_metavariable] = ACTIONS(1060), - [sym_raw_string_literal] = ACTIONS(1060), - [sym_float_literal] = ACTIONS(1060), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1880), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1882), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_type_binding] = STATE(2180), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [sym_block] = STATE(2180), + [sym__literal] = STATE(2180), + [sym_string_literal] = STATE(2255), + [sym_boolean_literal] = STATE(2255), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), [sym_block_comment] = ACTIONS(3), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(1064), - [sym_identifier] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_macro_rules_BANG] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_u8] = ACTIONS(1066), - [anon_sym_i8] = ACTIONS(1066), - [anon_sym_u16] = ACTIONS(1066), - [anon_sym_i16] = ACTIONS(1066), - [anon_sym_u32] = ACTIONS(1066), - [anon_sym_i32] = ACTIONS(1066), - [anon_sym_u64] = ACTIONS(1066), - [anon_sym_i64] = ACTIONS(1066), - [anon_sym_u128] = ACTIONS(1066), - [anon_sym_i128] = ACTIONS(1066), - [anon_sym_isize] = ACTIONS(1066), - [anon_sym_usize] = ACTIONS(1066), - [anon_sym_f32] = ACTIONS(1066), - [anon_sym_f64] = ACTIONS(1066), - [anon_sym_bool] = ACTIONS(1066), - [anon_sym_str] = ACTIONS(1066), - [anon_sym_char] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_async] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_default] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1066), - [anon_sym_fn] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_impl] = ACTIONS(1066), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_loop] = ACTIONS(1066), - [anon_sym_match] = ACTIONS(1066), - [anon_sym_mod] = ACTIONS(1066), - [anon_sym_pub] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_trait] = ACTIONS(1066), - [anon_sym_type] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1066), - [anon_sym_unsafe] = ACTIONS(1066), - [anon_sym_use] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1064), - [anon_sym_COLON_COLON] = ACTIONS(1064), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_yield] = ACTIONS(1066), - [anon_sym_move] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1064), - [aux_sym_string_literal_token1] = ACTIONS(1064), - [sym_char_literal] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), + [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(2567), + [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(1523), + [sym_visibility_modifier] = STATE(1348), + [sym_bracketed_type] = STATE(2382), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym_macro_invocation] = STATE(250), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_macro_rules_BANG] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_u8] = ACTIONS(912), + [anon_sym_i8] = ACTIONS(912), + [anon_sym_u16] = ACTIONS(912), + [anon_sym_i16] = ACTIONS(912), + [anon_sym_u32] = ACTIONS(912), + [anon_sym_i32] = ACTIONS(912), + [anon_sym_u64] = ACTIONS(912), + [anon_sym_i64] = ACTIONS(912), + [anon_sym_u128] = ACTIONS(912), + [anon_sym_i128] = ACTIONS(912), + [anon_sym_isize] = ACTIONS(912), + [anon_sym_usize] = ACTIONS(912), + [anon_sym_f32] = ACTIONS(912), + [anon_sym_f64] = ACTIONS(912), + [anon_sym_bool] = ACTIONS(912), + [anon_sym_str] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(914), + [anon_sym_default] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_fn] = ACTIONS(920), + [anon_sym_impl] = ACTIONS(922), + [anon_sym_let] = ACTIONS(924), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_trait] = ACTIONS(932), + [anon_sym_type] = ACTIONS(934), + [anon_sym_union] = ACTIONS(936), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_use] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(946), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1066), - [sym_super] = ACTIONS(1066), - [sym_crate] = ACTIONS(1066), - [sym_metavariable] = ACTIONS(1064), - [sym_raw_string_literal] = ACTIONS(1064), - [sym_float_literal] = ACTIONS(1064), + [sym_self] = ACTIONS(948), + [sym_super] = ACTIONS(948), + [sym_crate] = ACTIONS(950), + [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, [249] = { - [ts_builtin_sym_end] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_macro_rules_BANG] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_async] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_default] = ACTIONS(1070), - [anon_sym_enum] = ACTIONS(1070), - [anon_sym_fn] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_impl] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_mod] = ACTIONS(1070), - [anon_sym_pub] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_struct] = ACTIONS(1070), - [anon_sym_trait] = ACTIONS(1070), - [anon_sym_type] = ACTIONS(1070), - [anon_sym_union] = ACTIONS(1070), - [anon_sym_unsafe] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_COLON_COLON] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_yield] = ACTIONS(1070), - [anon_sym_move] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1068), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1070), - [sym_super] = ACTIONS(1070), - [sym_crate] = ACTIONS(1070), - [sym_metavariable] = ACTIONS(1068), - [sym_raw_string_literal] = ACTIONS(1068), - [sym_float_literal] = ACTIONS(1068), + [sym_empty_statement] = STATE(248), + [sym_macro_definition] = STATE(248), + [sym_attribute_item] = STATE(248), + [sym_inner_attribute_item] = STATE(248), + [sym_mod_item] = STATE(248), + [sym_foreign_mod_item] = STATE(248), + [sym_struct_item] = STATE(248), + [sym_union_item] = STATE(248), + [sym_enum_item] = STATE(248), + [sym_extern_crate_declaration] = STATE(248), + [sym_const_item] = STATE(248), + [sym_static_item] = STATE(248), + [sym_type_item] = STATE(248), + [sym_function_item] = STATE(248), + [sym_function_signature_item] = STATE(248), + [sym_function_modifiers] = STATE(2567), + [sym_impl_item] = STATE(248), + [sym_trait_item] = STATE(248), + [sym_associated_type] = STATE(248), + [sym_let_declaration] = STATE(248), + [sym_use_declaration] = STATE(248), + [sym_extern_modifier] = STATE(1523), + [sym_visibility_modifier] = STATE(1348), + [sym_bracketed_type] = STATE(2382), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym_macro_invocation] = STATE(248), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(248), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_macro_rules_BANG] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_u8] = ACTIONS(912), + [anon_sym_i8] = ACTIONS(912), + [anon_sym_u16] = ACTIONS(912), + [anon_sym_i16] = ACTIONS(912), + [anon_sym_u32] = ACTIONS(912), + [anon_sym_i32] = ACTIONS(912), + [anon_sym_u64] = ACTIONS(912), + [anon_sym_i64] = ACTIONS(912), + [anon_sym_u128] = ACTIONS(912), + [anon_sym_i128] = ACTIONS(912), + [anon_sym_isize] = ACTIONS(912), + [anon_sym_usize] = ACTIONS(912), + [anon_sym_f32] = ACTIONS(912), + [anon_sym_f64] = ACTIONS(912), + [anon_sym_bool] = ACTIONS(912), + [anon_sym_str] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(914), + [anon_sym_default] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_fn] = ACTIONS(920), + [anon_sym_impl] = ACTIONS(922), + [anon_sym_let] = ACTIONS(924), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_trait] = ACTIONS(932), + [anon_sym_type] = ACTIONS(934), + [anon_sym_union] = ACTIONS(936), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_use] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(946), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_macro_rules_BANG] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1072), - [anon_sym_u8] = ACTIONS(1074), - [anon_sym_i8] = ACTIONS(1074), - [anon_sym_u16] = ACTIONS(1074), - [anon_sym_i16] = ACTIONS(1074), - [anon_sym_u32] = ACTIONS(1074), - [anon_sym_i32] = ACTIONS(1074), - [anon_sym_u64] = ACTIONS(1074), - [anon_sym_i64] = ACTIONS(1074), - [anon_sym_u128] = ACTIONS(1074), - [anon_sym_i128] = ACTIONS(1074), - [anon_sym_isize] = ACTIONS(1074), - [anon_sym_usize] = ACTIONS(1074), - [anon_sym_f32] = ACTIONS(1074), - [anon_sym_f64] = ACTIONS(1074), - [anon_sym_bool] = ACTIONS(1074), - [anon_sym_str] = ACTIONS(1074), - [anon_sym_char] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_async] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_default] = ACTIONS(1074), - [anon_sym_enum] = ACTIONS(1074), - [anon_sym_fn] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_impl] = ACTIONS(1074), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_loop] = ACTIONS(1074), - [anon_sym_match] = ACTIONS(1074), - [anon_sym_mod] = ACTIONS(1074), - [anon_sym_pub] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_struct] = ACTIONS(1074), - [anon_sym_trait] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_union] = ACTIONS(1074), - [anon_sym_unsafe] = ACTIONS(1074), - [anon_sym_use] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_POUND] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(1072), - [anon_sym_COLON_COLON] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1072), - [anon_sym_DOT_DOT] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1074), - [anon_sym_move] = ACTIONS(1074), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1072), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1074), - [anon_sym_false] = ACTIONS(1074), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1074), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1072), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [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(2567), + [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(1523), + [sym_visibility_modifier] = STATE(1348), + [sym_bracketed_type] = STATE(2382), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym_macro_invocation] = STATE(250), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_macro_rules_BANG] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_u8] = ACTIONS(967), + [anon_sym_i8] = ACTIONS(967), + [anon_sym_u16] = ACTIONS(967), + [anon_sym_i16] = ACTIONS(967), + [anon_sym_u32] = ACTIONS(967), + [anon_sym_i32] = ACTIONS(967), + [anon_sym_u64] = ACTIONS(967), + [anon_sym_i64] = ACTIONS(967), + [anon_sym_u128] = ACTIONS(967), + [anon_sym_i128] = ACTIONS(967), + [anon_sym_isize] = ACTIONS(967), + [anon_sym_usize] = ACTIONS(967), + [anon_sym_f32] = ACTIONS(967), + [anon_sym_f64] = ACTIONS(967), + [anon_sym_bool] = ACTIONS(967), + [anon_sym_str] = ACTIONS(967), + [anon_sym_char] = ACTIONS(967), + [anon_sym_async] = ACTIONS(970), + [anon_sym_const] = ACTIONS(973), + [anon_sym_default] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_fn] = ACTIONS(982), + [anon_sym_impl] = ACTIONS(985), + [anon_sym_let] = ACTIONS(988), + [anon_sym_mod] = ACTIONS(991), + [anon_sym_pub] = ACTIONS(994), + [anon_sym_static] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_trait] = ACTIONS(1003), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_unsafe] = ACTIONS(1012), + [anon_sym_use] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(1027), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1030), + [sym_super] = ACTIONS(1030), + [sym_crate] = ACTIONS(1033), + [sym_metavariable] = ACTIONS(1036), [sym_block_comment] = ACTIONS(3), }, [251] = { - [ts_builtin_sym_end] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_macro_rules_BANG] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1076), - [anon_sym_u8] = ACTIONS(1078), - [anon_sym_i8] = ACTIONS(1078), - [anon_sym_u16] = ACTIONS(1078), - [anon_sym_i16] = ACTIONS(1078), - [anon_sym_u32] = ACTIONS(1078), - [anon_sym_i32] = ACTIONS(1078), - [anon_sym_u64] = ACTIONS(1078), - [anon_sym_i64] = ACTIONS(1078), - [anon_sym_u128] = ACTIONS(1078), - [anon_sym_i128] = ACTIONS(1078), - [anon_sym_isize] = ACTIONS(1078), - [anon_sym_usize] = ACTIONS(1078), - [anon_sym_f32] = ACTIONS(1078), - [anon_sym_f64] = ACTIONS(1078), - [anon_sym_bool] = ACTIONS(1078), - [anon_sym_str] = ACTIONS(1078), - [anon_sym_char] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_default] = ACTIONS(1078), - [anon_sym_enum] = ACTIONS(1078), - [anon_sym_fn] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_impl] = ACTIONS(1078), - [anon_sym_let] = ACTIONS(1078), - [anon_sym_loop] = ACTIONS(1078), - [anon_sym_match] = ACTIONS(1078), - [anon_sym_mod] = ACTIONS(1078), - [anon_sym_pub] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1078), - [anon_sym_struct] = ACTIONS(1078), - [anon_sym_trait] = ACTIONS(1078), - [anon_sym_type] = ACTIONS(1078), - [anon_sym_union] = ACTIONS(1078), - [anon_sym_unsafe] = ACTIONS(1078), - [anon_sym_use] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(1076), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_move] = ACTIONS(1078), - [sym_integer_literal] = ACTIONS(1076), - [aux_sym_string_literal_token1] = ACTIONS(1076), - [sym_char_literal] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1078), - [anon_sym_false] = ACTIONS(1078), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1078), - [sym_crate] = ACTIONS(1078), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1076), - [sym_float_literal] = ACTIONS(1076), + [sym_empty_statement] = STATE(252), + [sym_macro_definition] = STATE(252), + [sym_attribute_item] = STATE(252), + [sym_inner_attribute_item] = STATE(252), + [sym_mod_item] = STATE(252), + [sym_foreign_mod_item] = STATE(252), + [sym_struct_item] = STATE(252), + [sym_union_item] = STATE(252), + [sym_enum_item] = STATE(252), + [sym_extern_crate_declaration] = STATE(252), + [sym_const_item] = STATE(252), + [sym_static_item] = STATE(252), + [sym_type_item] = STATE(252), + [sym_function_item] = STATE(252), + [sym_function_signature_item] = STATE(252), + [sym_function_modifiers] = STATE(2567), + [sym_impl_item] = STATE(252), + [sym_trait_item] = STATE(252), + [sym_associated_type] = STATE(252), + [sym_let_declaration] = STATE(252), + [sym_use_declaration] = STATE(252), + [sym_extern_modifier] = STATE(1523), + [sym_visibility_modifier] = STATE(1348), + [sym_bracketed_type] = STATE(2382), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym_macro_invocation] = STATE(252), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(252), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_macro_rules_BANG] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(912), + [anon_sym_i8] = ACTIONS(912), + [anon_sym_u16] = ACTIONS(912), + [anon_sym_i16] = ACTIONS(912), + [anon_sym_u32] = ACTIONS(912), + [anon_sym_i32] = ACTIONS(912), + [anon_sym_u64] = ACTIONS(912), + [anon_sym_i64] = ACTIONS(912), + [anon_sym_u128] = ACTIONS(912), + [anon_sym_i128] = ACTIONS(912), + [anon_sym_isize] = ACTIONS(912), + [anon_sym_usize] = ACTIONS(912), + [anon_sym_f32] = ACTIONS(912), + [anon_sym_f64] = ACTIONS(912), + [anon_sym_bool] = ACTIONS(912), + [anon_sym_str] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(914), + [anon_sym_default] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_fn] = ACTIONS(920), + [anon_sym_impl] = ACTIONS(922), + [anon_sym_let] = ACTIONS(924), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_trait] = ACTIONS(932), + [anon_sym_type] = ACTIONS(934), + [anon_sym_union] = ACTIONS(936), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_use] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(946), + [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), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(1080), - [sym_identifier] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_macro_rules_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1080), - [anon_sym_u8] = ACTIONS(1082), - [anon_sym_i8] = ACTIONS(1082), - [anon_sym_u16] = ACTIONS(1082), - [anon_sym_i16] = ACTIONS(1082), - [anon_sym_u32] = ACTIONS(1082), - [anon_sym_i32] = ACTIONS(1082), - [anon_sym_u64] = ACTIONS(1082), - [anon_sym_i64] = ACTIONS(1082), - [anon_sym_u128] = ACTIONS(1082), - [anon_sym_i128] = ACTIONS(1082), - [anon_sym_isize] = ACTIONS(1082), - [anon_sym_usize] = ACTIONS(1082), - [anon_sym_f32] = ACTIONS(1082), - [anon_sym_f64] = ACTIONS(1082), - [anon_sym_bool] = ACTIONS(1082), - [anon_sym_str] = ACTIONS(1082), - [anon_sym_char] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_async] = ACTIONS(1082), - [anon_sym_break] = ACTIONS(1082), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_continue] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1082), - [anon_sym_enum] = ACTIONS(1082), - [anon_sym_fn] = ACTIONS(1082), - [anon_sym_for] = ACTIONS(1082), - [anon_sym_if] = ACTIONS(1082), - [anon_sym_impl] = ACTIONS(1082), - [anon_sym_let] = ACTIONS(1082), - [anon_sym_loop] = ACTIONS(1082), - [anon_sym_match] = ACTIONS(1082), - [anon_sym_mod] = ACTIONS(1082), - [anon_sym_pub] = ACTIONS(1082), - [anon_sym_return] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1082), - [anon_sym_struct] = ACTIONS(1082), - [anon_sym_trait] = ACTIONS(1082), - [anon_sym_type] = ACTIONS(1082), - [anon_sym_union] = ACTIONS(1082), - [anon_sym_unsafe] = ACTIONS(1082), - [anon_sym_use] = ACTIONS(1082), - [anon_sym_while] = ACTIONS(1082), - [anon_sym_POUND] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_COLON_COLON] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_DOT_DOT] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_yield] = ACTIONS(1082), - [anon_sym_move] = ACTIONS(1082), - [sym_integer_literal] = ACTIONS(1080), - [aux_sym_string_literal_token1] = ACTIONS(1080), - [sym_char_literal] = ACTIONS(1080), - [anon_sym_true] = ACTIONS(1082), - [anon_sym_false] = ACTIONS(1082), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1082), - [sym_super] = ACTIONS(1082), - [sym_crate] = ACTIONS(1082), - [sym_metavariable] = ACTIONS(1080), - [sym_raw_string_literal] = ACTIONS(1080), - [sym_float_literal] = ACTIONS(1080), + [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(2567), + [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(1523), + [sym_visibility_modifier] = STATE(1348), + [sym_bracketed_type] = STATE(2382), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym_macro_invocation] = STATE(250), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_macro_rules_BANG] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(912), + [anon_sym_i8] = ACTIONS(912), + [anon_sym_u16] = ACTIONS(912), + [anon_sym_i16] = ACTIONS(912), + [anon_sym_u32] = ACTIONS(912), + [anon_sym_i32] = ACTIONS(912), + [anon_sym_u64] = ACTIONS(912), + [anon_sym_i64] = ACTIONS(912), + [anon_sym_u128] = ACTIONS(912), + [anon_sym_i128] = ACTIONS(912), + [anon_sym_isize] = ACTIONS(912), + [anon_sym_usize] = ACTIONS(912), + [anon_sym_f32] = ACTIONS(912), + [anon_sym_f64] = ACTIONS(912), + [anon_sym_bool] = ACTIONS(912), + [anon_sym_str] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(914), + [anon_sym_default] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_fn] = ACTIONS(920), + [anon_sym_impl] = ACTIONS(922), + [anon_sym_let] = ACTIONS(924), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_trait] = ACTIONS(932), + [anon_sym_type] = ACTIONS(934), + [anon_sym_union] = ACTIONS(936), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_use] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(946), + [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), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(1084), - [sym_identifier] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_macro_rules_BANG] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1084), - [anon_sym_RBRACE] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_u8] = ACTIONS(1086), - [anon_sym_i8] = ACTIONS(1086), - [anon_sym_u16] = ACTIONS(1086), - [anon_sym_i16] = ACTIONS(1086), - [anon_sym_u32] = ACTIONS(1086), - [anon_sym_i32] = ACTIONS(1086), - [anon_sym_u64] = ACTIONS(1086), - [anon_sym_i64] = ACTIONS(1086), - [anon_sym_u128] = ACTIONS(1086), - [anon_sym_i128] = ACTIONS(1086), - [anon_sym_isize] = ACTIONS(1086), - [anon_sym_usize] = ACTIONS(1086), - [anon_sym_f32] = ACTIONS(1086), - [anon_sym_f64] = ACTIONS(1086), - [anon_sym_bool] = ACTIONS(1086), - [anon_sym_str] = ACTIONS(1086), - [anon_sym_char] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_break] = ACTIONS(1086), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_continue] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1086), - [anon_sym_enum] = ACTIONS(1086), - [anon_sym_fn] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_if] = ACTIONS(1086), - [anon_sym_impl] = ACTIONS(1086), - [anon_sym_let] = ACTIONS(1086), - [anon_sym_loop] = ACTIONS(1086), - [anon_sym_match] = ACTIONS(1086), - [anon_sym_mod] = ACTIONS(1086), - [anon_sym_pub] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_struct] = ACTIONS(1086), - [anon_sym_trait] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_union] = ACTIONS(1086), - [anon_sym_unsafe] = ACTIONS(1086), - [anon_sym_use] = ACTIONS(1086), - [anon_sym_while] = ACTIONS(1086), - [anon_sym_POUND] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_COLON_COLON] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_DOT_DOT] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PIPE] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_move] = ACTIONS(1086), - [sym_integer_literal] = ACTIONS(1084), - [aux_sym_string_literal_token1] = ACTIONS(1084), - [sym_char_literal] = ACTIONS(1084), - [anon_sym_true] = ACTIONS(1086), - [anon_sym_false] = ACTIONS(1086), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1086), - [sym_super] = ACTIONS(1086), - [sym_crate] = ACTIONS(1086), - [sym_metavariable] = ACTIONS(1084), - [sym_raw_string_literal] = ACTIONS(1084), - [sym_float_literal] = ACTIONS(1084), + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [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), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(1088), - [sym_identifier] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_macro_rules_BANG] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1090), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1090), - [anon_sym_const] = ACTIONS(1090), - [anon_sym_continue] = ACTIONS(1090), - [anon_sym_default] = ACTIONS(1090), - [anon_sym_enum] = ACTIONS(1090), - [anon_sym_fn] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_impl] = ACTIONS(1090), - [anon_sym_let] = ACTIONS(1090), - [anon_sym_loop] = ACTIONS(1090), - [anon_sym_match] = ACTIONS(1090), - [anon_sym_mod] = ACTIONS(1090), - [anon_sym_pub] = ACTIONS(1090), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_static] = ACTIONS(1090), - [anon_sym_struct] = ACTIONS(1090), - [anon_sym_trait] = ACTIONS(1090), - [anon_sym_type] = ACTIONS(1090), - [anon_sym_union] = ACTIONS(1090), - [anon_sym_unsafe] = ACTIONS(1090), - [anon_sym_use] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_COLON_COLON] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_DOT_DOT] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_yield] = ACTIONS(1090), - [anon_sym_move] = ACTIONS(1090), - [sym_integer_literal] = ACTIONS(1088), - [aux_sym_string_literal_token1] = ACTIONS(1088), - [sym_char_literal] = ACTIONS(1088), - [anon_sym_true] = ACTIONS(1090), - [anon_sym_false] = ACTIONS(1090), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1088), - [sym_raw_string_literal] = ACTIONS(1088), - [sym_float_literal] = ACTIONS(1088), + [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), }, [255] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_identifier] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_macro_rules_BANG] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1092), - [anon_sym_u8] = ACTIONS(1094), - [anon_sym_i8] = ACTIONS(1094), - [anon_sym_u16] = ACTIONS(1094), - [anon_sym_i16] = ACTIONS(1094), - [anon_sym_u32] = ACTIONS(1094), - [anon_sym_i32] = ACTIONS(1094), - [anon_sym_u64] = ACTIONS(1094), - [anon_sym_i64] = ACTIONS(1094), - [anon_sym_u128] = ACTIONS(1094), - [anon_sym_i128] = ACTIONS(1094), - [anon_sym_isize] = ACTIONS(1094), - [anon_sym_usize] = ACTIONS(1094), - [anon_sym_f32] = ACTIONS(1094), - [anon_sym_f64] = ACTIONS(1094), - [anon_sym_bool] = ACTIONS(1094), - [anon_sym_str] = ACTIONS(1094), - [anon_sym_char] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1094), - [anon_sym_break] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1094), - [anon_sym_continue] = ACTIONS(1094), - [anon_sym_default] = ACTIONS(1094), - [anon_sym_enum] = ACTIONS(1094), - [anon_sym_fn] = ACTIONS(1094), - [anon_sym_for] = ACTIONS(1094), - [anon_sym_if] = ACTIONS(1094), - [anon_sym_impl] = ACTIONS(1094), - [anon_sym_let] = ACTIONS(1094), - [anon_sym_loop] = ACTIONS(1094), - [anon_sym_match] = ACTIONS(1094), - [anon_sym_mod] = ACTIONS(1094), - [anon_sym_pub] = ACTIONS(1094), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1094), - [anon_sym_struct] = ACTIONS(1094), - [anon_sym_trait] = ACTIONS(1094), - [anon_sym_type] = ACTIONS(1094), - [anon_sym_union] = ACTIONS(1094), - [anon_sym_unsafe] = ACTIONS(1094), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_while] = ACTIONS(1094), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1094), - [anon_sym_LT] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1092), - [anon_sym_DOT_DOT] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_yield] = ACTIONS(1094), - [anon_sym_move] = ACTIONS(1094), - [sym_integer_literal] = ACTIONS(1092), - [aux_sym_string_literal_token1] = ACTIONS(1092), - [sym_char_literal] = ACTIONS(1092), - [anon_sym_true] = ACTIONS(1094), - [anon_sym_false] = ACTIONS(1094), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(1092), - [sym_float_literal] = ACTIONS(1092), + [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), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(1096), - [sym_identifier] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1096), - [anon_sym_macro_rules_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1096), - [anon_sym_RBRACE] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1096), - [anon_sym_u8] = ACTIONS(1098), - [anon_sym_i8] = ACTIONS(1098), - [anon_sym_u16] = ACTIONS(1098), - [anon_sym_i16] = ACTIONS(1098), - [anon_sym_u32] = ACTIONS(1098), - [anon_sym_i32] = ACTIONS(1098), - [anon_sym_u64] = ACTIONS(1098), - [anon_sym_i64] = ACTIONS(1098), - [anon_sym_u128] = ACTIONS(1098), - [anon_sym_i128] = ACTIONS(1098), - [anon_sym_isize] = ACTIONS(1098), - [anon_sym_usize] = ACTIONS(1098), - [anon_sym_f32] = ACTIONS(1098), - [anon_sym_f64] = ACTIONS(1098), - [anon_sym_bool] = ACTIONS(1098), - [anon_sym_str] = ACTIONS(1098), - [anon_sym_char] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_async] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_fn] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_impl] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_pub] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_trait] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_unsafe] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_DOT_DOT] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_yield] = ACTIONS(1098), - [anon_sym_move] = ACTIONS(1098), - [sym_integer_literal] = ACTIONS(1096), - [aux_sym_string_literal_token1] = ACTIONS(1096), - [sym_char_literal] = ACTIONS(1096), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1098), - [sym_super] = ACTIONS(1098), - [sym_crate] = ACTIONS(1098), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(1096), - [sym_float_literal] = ACTIONS(1096), + [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), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(1100), - [sym_identifier] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_macro_rules_BANG] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_u8] = ACTIONS(1102), - [anon_sym_i8] = ACTIONS(1102), - [anon_sym_u16] = ACTIONS(1102), - [anon_sym_i16] = ACTIONS(1102), - [anon_sym_u32] = ACTIONS(1102), - [anon_sym_i32] = ACTIONS(1102), - [anon_sym_u64] = ACTIONS(1102), - [anon_sym_i64] = ACTIONS(1102), - [anon_sym_u128] = ACTIONS(1102), - [anon_sym_i128] = ACTIONS(1102), - [anon_sym_isize] = ACTIONS(1102), - [anon_sym_usize] = ACTIONS(1102), - [anon_sym_f32] = ACTIONS(1102), - [anon_sym_f64] = ACTIONS(1102), - [anon_sym_bool] = ACTIONS(1102), - [anon_sym_str] = ACTIONS(1102), - [anon_sym_char] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_async] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_impl] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_pub] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_trait] = ACTIONS(1102), - [anon_sym_type] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_COLON_COLON] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_DOT_DOT] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_move] = ACTIONS(1102), - [sym_integer_literal] = ACTIONS(1100), - [aux_sym_string_literal_token1] = ACTIONS(1100), - [sym_char_literal] = ACTIONS(1100), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1102), - [sym_super] = ACTIONS(1102), - [sym_crate] = ACTIONS(1102), - [sym_metavariable] = ACTIONS(1100), - [sym_raw_string_literal] = ACTIONS(1100), - [sym_float_literal] = ACTIONS(1100), + [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), }, [258] = { - [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(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), }, [259] = { - [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(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), }, [260] = { - [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(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), }, [261] = { - [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(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), }, [262] = { - [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(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), }, [263] = { - [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(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), }, [264] = { - [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(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), }, [265] = { - [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(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), }, [266] = { - [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(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), }, [267] = { - [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(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), }, [268] = { - [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(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), }, [269] = { - [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(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), }, [270] = { - [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(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), }, [271] = { - [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(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), }, [272] = { - [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(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), }, [273] = { - [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(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), }, [274] = { - [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(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), }, [275] = { - [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(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), }, [276] = { - [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(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), }, [277] = { - [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(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), }, [278] = { - [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(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), }, [279] = { - [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(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), }, [280] = { - [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(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), }, [281] = { - [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(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), }, [282] = { - [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(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), }, [283] = { - [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(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), }, [284] = { - [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(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), }, [285] = { - [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(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), }, [286] = { - [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(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), }, [287] = { - [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(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), }, [288] = { - [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), + [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), }, [289] = { - [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), + [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), }, [290] = { - [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), + [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), }, [291] = { - [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), + [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), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym_raw_string_literal] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), + [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), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym_raw_string_literal] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [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), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_macro_rules_BANG] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_u8] = ACTIONS(1250), - [anon_sym_i8] = ACTIONS(1250), - [anon_sym_u16] = ACTIONS(1250), - [anon_sym_i16] = ACTIONS(1250), - [anon_sym_u32] = ACTIONS(1250), - [anon_sym_i32] = ACTIONS(1250), - [anon_sym_u64] = ACTIONS(1250), - [anon_sym_i64] = ACTIONS(1250), - [anon_sym_u128] = ACTIONS(1250), - [anon_sym_i128] = ACTIONS(1250), - [anon_sym_isize] = ACTIONS(1250), - [anon_sym_usize] = ACTIONS(1250), - [anon_sym_f32] = ACTIONS(1250), - [anon_sym_f64] = ACTIONS(1250), - [anon_sym_bool] = ACTIONS(1250), - [anon_sym_str] = ACTIONS(1250), - [anon_sym_char] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_fn] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_impl] = ACTIONS(1250), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_loop] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_mod] = ACTIONS(1250), - [anon_sym_pub] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_trait] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_unsafe] = ACTIONS(1250), - [anon_sym_use] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_POUND] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_COLON_COLON] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_move] = ACTIONS(1250), - [sym_integer_literal] = ACTIONS(1248), - [aux_sym_string_literal_token1] = ACTIONS(1248), - [sym_char_literal] = ACTIONS(1248), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1250), - [sym_super] = ACTIONS(1250), - [sym_crate] = ACTIONS(1250), - [sym_metavariable] = ACTIONS(1248), - [sym_raw_string_literal] = ACTIONS(1248), - [sym_float_literal] = ACTIONS(1248), + [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), }, [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), + [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), }, [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(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), + [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), }, [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_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), + [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), + [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_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), }, [298] = { - [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), + [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_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), }, [299] = { - [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), + [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_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), }, [300] = { - [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), + [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), }, [301] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_macro_rules_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_u8] = ACTIONS(1264), + [anon_sym_i8] = ACTIONS(1264), + [anon_sym_u16] = ACTIONS(1264), + [anon_sym_i16] = ACTIONS(1264), + [anon_sym_u32] = ACTIONS(1264), + [anon_sym_i32] = ACTIONS(1264), + [anon_sym_u64] = ACTIONS(1264), + [anon_sym_i64] = ACTIONS(1264), + [anon_sym_u128] = ACTIONS(1264), + [anon_sym_i128] = ACTIONS(1264), + [anon_sym_isize] = ACTIONS(1264), + [anon_sym_usize] = ACTIONS(1264), + [anon_sym_f32] = ACTIONS(1264), + [anon_sym_f64] = ACTIONS(1264), + [anon_sym_bool] = ACTIONS(1264), + [anon_sym_str] = ACTIONS(1264), + [anon_sym_char] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_async] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_fn] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_impl] = ACTIONS(1264), + [anon_sym_let] = ACTIONS(1264), + [anon_sym_loop] = ACTIONS(1264), + [anon_sym_match] = ACTIONS(1264), + [anon_sym_mod] = ACTIONS(1264), + [anon_sym_pub] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_trait] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_unsafe] = ACTIONS(1264), + [anon_sym_use] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_COLON_COLON] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_yield] = ACTIONS(1264), + [anon_sym_move] = ACTIONS(1264), + [sym_integer_literal] = ACTIONS(1262), + [aux_sym_string_literal_token1] = ACTIONS(1262), + [sym_char_literal] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1264), + [anon_sym_false] = ACTIONS(1264), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_crate] = ACTIONS(1264), + [sym_metavariable] = ACTIONS(1262), + [sym_raw_string_literal] = ACTIONS(1262), + [sym_float_literal] = ACTIONS(1262), [sym_block_comment] = ACTIONS(3), }, [302] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_macro_rules_BANG] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_u8] = ACTIONS(1268), + [anon_sym_i8] = ACTIONS(1268), + [anon_sym_u16] = ACTIONS(1268), + [anon_sym_i16] = ACTIONS(1268), + [anon_sym_u32] = ACTIONS(1268), + [anon_sym_i32] = ACTIONS(1268), + [anon_sym_u64] = ACTIONS(1268), + [anon_sym_i64] = ACTIONS(1268), + [anon_sym_u128] = ACTIONS(1268), + [anon_sym_i128] = ACTIONS(1268), + [anon_sym_isize] = ACTIONS(1268), + [anon_sym_usize] = ACTIONS(1268), + [anon_sym_f32] = ACTIONS(1268), + [anon_sym_f64] = ACTIONS(1268), + [anon_sym_bool] = ACTIONS(1268), + [anon_sym_str] = ACTIONS(1268), + [anon_sym_char] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_fn] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_impl] = ACTIONS(1268), + [anon_sym_let] = ACTIONS(1268), + [anon_sym_loop] = ACTIONS(1268), + [anon_sym_match] = ACTIONS(1268), + [anon_sym_mod] = ACTIONS(1268), + [anon_sym_pub] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_trait] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_unsafe] = ACTIONS(1268), + [anon_sym_use] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_COLON_COLON] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_DOT_DOT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1268), + [anon_sym_move] = ACTIONS(1268), + [sym_integer_literal] = ACTIONS(1266), + [aux_sym_string_literal_token1] = ACTIONS(1266), + [sym_char_literal] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1268), + [anon_sym_false] = ACTIONS(1268), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1268), + [sym_super] = ACTIONS(1268), + [sym_crate] = ACTIONS(1268), + [sym_metavariable] = ACTIONS(1266), + [sym_raw_string_literal] = ACTIONS(1266), + [sym_float_literal] = ACTIONS(1266), [sym_block_comment] = ACTIONS(3), }, [303] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_identifier] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_macro_rules_BANG] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_async] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_fn] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_impl] = ACTIONS(1272), + [anon_sym_let] = ACTIONS(1272), + [anon_sym_loop] = ACTIONS(1272), + [anon_sym_match] = ACTIONS(1272), + [anon_sym_mod] = ACTIONS(1272), + [anon_sym_pub] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_trait] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_unsafe] = ACTIONS(1272), + [anon_sym_use] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_POUND] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1270), + [anon_sym_COLON_COLON] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_DOT_DOT] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PIPE] = ACTIONS(1270), + [anon_sym_yield] = ACTIONS(1272), + [anon_sym_move] = ACTIONS(1272), + [sym_integer_literal] = ACTIONS(1270), + [aux_sym_string_literal_token1] = ACTIONS(1270), + [sym_char_literal] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1272), + [anon_sym_false] = ACTIONS(1272), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1272), + [sym_super] = ACTIONS(1272), + [sym_crate] = ACTIONS(1272), + [sym_metavariable] = ACTIONS(1270), + [sym_raw_string_literal] = ACTIONS(1270), + [sym_float_literal] = ACTIONS(1270), [sym_block_comment] = ACTIONS(3), }, [304] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [305] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [306] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [307] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [308] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [309] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [310] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [311] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [312] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [313] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [314] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [315] = { - [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), + [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), + [sym_block_comment] = ACTIONS(3), + }, + [316] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_macro_rules_BANG] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_u8] = ACTIONS(1324), + [anon_sym_i8] = ACTIONS(1324), + [anon_sym_u16] = ACTIONS(1324), + [anon_sym_i16] = ACTIONS(1324), + [anon_sym_u32] = ACTIONS(1324), + [anon_sym_i32] = ACTIONS(1324), + [anon_sym_u64] = ACTIONS(1324), + [anon_sym_i64] = ACTIONS(1324), + [anon_sym_u128] = ACTIONS(1324), + [anon_sym_i128] = ACTIONS(1324), + [anon_sym_isize] = ACTIONS(1324), + [anon_sym_usize] = ACTIONS(1324), + [anon_sym_f32] = ACTIONS(1324), + [anon_sym_f64] = ACTIONS(1324), + [anon_sym_bool] = ACTIONS(1324), + [anon_sym_str] = ACTIONS(1324), + [anon_sym_char] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_async] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_fn] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1324), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_loop] = ACTIONS(1324), + [anon_sym_match] = ACTIONS(1324), + [anon_sym_mod] = ACTIONS(1324), + [anon_sym_pub] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_trait] = ACTIONS(1324), + [anon_sym_type] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1324), + [anon_sym_use] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_POUND] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_COLON_COLON] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_DOT_DOT] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_yield] = ACTIONS(1324), + [anon_sym_move] = ACTIONS(1324), + [sym_integer_literal] = ACTIONS(1322), + [aux_sym_string_literal_token1] = ACTIONS(1322), + [sym_char_literal] = ACTIONS(1322), + [anon_sym_true] = ACTIONS(1324), + [anon_sym_false] = ACTIONS(1324), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1324), + [sym_crate] = ACTIONS(1324), + [sym_metavariable] = ACTIONS(1322), + [sym_raw_string_literal] = ACTIONS(1322), + [sym_float_literal] = ACTIONS(1322), + [sym_block_comment] = ACTIONS(3), + }, + [317] = { + [sym_attribute_item] = STATE(556), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2553), + [sym_match_pattern] = STATE(2347), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2007), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_enum_variant_list_repeat1] = STATE(556), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1330), [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), @@ -48530,288 +48960,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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_const] = ACTIONS(1336), [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(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_POUND] = ACTIONS(383), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), [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), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [318] = { - [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(1348), [sym_identifier] = ACTIONS(1350), [anon_sym_SEMI] = ACTIONS(1348), @@ -48888,7 +49063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1348), [sym_block_comment] = ACTIONS(3), }, - [320] = { + [319] = { [ts_builtin_sym_end] = ACTIONS(1352), [sym_identifier] = ACTIONS(1354), [anon_sym_SEMI] = ACTIONS(1352), @@ -48965,7 +49140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1352), [sym_block_comment] = ACTIONS(3), }, - [321] = { + [320] = { [ts_builtin_sym_end] = ACTIONS(1356), [sym_identifier] = ACTIONS(1358), [anon_sym_SEMI] = ACTIONS(1356), @@ -49042,7 +49217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1356), [sym_block_comment] = ACTIONS(3), }, - [322] = { + [321] = { [ts_builtin_sym_end] = ACTIONS(1360), [sym_identifier] = ACTIONS(1362), [anon_sym_SEMI] = ACTIONS(1360), @@ -49119,7 +49294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1360), [sym_block_comment] = ACTIONS(3), }, - [323] = { + [322] = { [ts_builtin_sym_end] = ACTIONS(1364), [sym_identifier] = ACTIONS(1366), [anon_sym_SEMI] = ACTIONS(1364), @@ -49196,7 +49371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1364), [sym_block_comment] = ACTIONS(3), }, - [324] = { + [323] = { [ts_builtin_sym_end] = ACTIONS(1368), [sym_identifier] = ACTIONS(1370), [anon_sym_SEMI] = ACTIONS(1368), @@ -49273,7 +49448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1368), [sym_block_comment] = ACTIONS(3), }, - [325] = { + [324] = { [ts_builtin_sym_end] = ACTIONS(1372), [sym_identifier] = ACTIONS(1374), [anon_sym_SEMI] = ACTIONS(1372), @@ -49350,7 +49525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1372), [sym_block_comment] = ACTIONS(3), }, - [326] = { + [325] = { [ts_builtin_sym_end] = ACTIONS(1376), [sym_identifier] = ACTIONS(1378), [anon_sym_SEMI] = ACTIONS(1376), @@ -49427,7 +49602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1376), [sym_block_comment] = ACTIONS(3), }, - [327] = { + [326] = { [ts_builtin_sym_end] = ACTIONS(1380), [sym_identifier] = ACTIONS(1382), [anon_sym_SEMI] = ACTIONS(1380), @@ -49504,7 +49679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1380), [sym_block_comment] = ACTIONS(3), }, - [328] = { + [327] = { [ts_builtin_sym_end] = ACTIONS(1384), [sym_identifier] = ACTIONS(1386), [anon_sym_SEMI] = ACTIONS(1384), @@ -49581,7 +49756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1384), [sym_block_comment] = ACTIONS(3), }, - [329] = { + [328] = { [ts_builtin_sym_end] = ACTIONS(1388), [sym_identifier] = ACTIONS(1390), [anon_sym_SEMI] = ACTIONS(1388), @@ -49658,84 +49833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1388), [sym_block_comment] = ACTIONS(3), }, - [330] = { - [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] = { + [329] = { [ts_builtin_sym_end] = ACTIONS(1392), [sym_identifier] = ACTIONS(1394), [anon_sym_SEMI] = ACTIONS(1392), @@ -49812,7 +49910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1392), [sym_block_comment] = ACTIONS(3), }, - [332] = { + [330] = { [ts_builtin_sym_end] = ACTIONS(1396), [sym_identifier] = ACTIONS(1398), [anon_sym_SEMI] = ACTIONS(1396), @@ -49889,7 +49987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1396), [sym_block_comment] = ACTIONS(3), }, - [333] = { + [331] = { [ts_builtin_sym_end] = ACTIONS(1400), [sym_identifier] = ACTIONS(1402), [anon_sym_SEMI] = ACTIONS(1400), @@ -49966,7 +50064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1400), [sym_block_comment] = ACTIONS(3), }, - [334] = { + [332] = { [ts_builtin_sym_end] = ACTIONS(1404), [sym_identifier] = ACTIONS(1406), [anon_sym_SEMI] = ACTIONS(1404), @@ -50043,7 +50141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1404), [sym_block_comment] = ACTIONS(3), }, - [335] = { + [333] = { [ts_builtin_sym_end] = ACTIONS(1408), [sym_identifier] = ACTIONS(1410), [anon_sym_SEMI] = ACTIONS(1408), @@ -50120,7 +50218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1408), [sym_block_comment] = ACTIONS(3), }, - [336] = { + [334] = { [ts_builtin_sym_end] = ACTIONS(1412), [sym_identifier] = ACTIONS(1414), [anon_sym_SEMI] = ACTIONS(1412), @@ -50197,84 +50295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1412), [sym_block_comment] = ACTIONS(3), }, - [337] = { - [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] = { + [335] = { [ts_builtin_sym_end] = ACTIONS(1416), [sym_identifier] = ACTIONS(1418), [anon_sym_SEMI] = ACTIONS(1416), @@ -50351,7 +50372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1416), [sym_block_comment] = ACTIONS(3), }, - [339] = { + [336] = { [ts_builtin_sym_end] = ACTIONS(1420), [sym_identifier] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(1420), @@ -50428,7 +50449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1420), [sym_block_comment] = ACTIONS(3), }, - [340] = { + [337] = { [ts_builtin_sym_end] = ACTIONS(1424), [sym_identifier] = ACTIONS(1426), [anon_sym_SEMI] = ACTIONS(1424), @@ -50505,7 +50526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1424), [sym_block_comment] = ACTIONS(3), }, - [341] = { + [338] = { [ts_builtin_sym_end] = ACTIONS(1428), [sym_identifier] = ACTIONS(1430), [anon_sym_SEMI] = ACTIONS(1428), @@ -50582,7 +50603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1428), [sym_block_comment] = ACTIONS(3), }, - [342] = { + [339] = { [ts_builtin_sym_end] = ACTIONS(1432), [sym_identifier] = ACTIONS(1434), [anon_sym_SEMI] = ACTIONS(1432), @@ -50659,7 +50680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1432), [sym_block_comment] = ACTIONS(3), }, - [343] = { + [340] = { [ts_builtin_sym_end] = ACTIONS(1436), [sym_identifier] = ACTIONS(1438), [anon_sym_SEMI] = ACTIONS(1436), @@ -50736,7 +50757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1436), [sym_block_comment] = ACTIONS(3), }, - [344] = { + [341] = { [ts_builtin_sym_end] = ACTIONS(1440), [sym_identifier] = ACTIONS(1442), [anon_sym_SEMI] = ACTIONS(1440), @@ -50813,7 +50834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1440), [sym_block_comment] = ACTIONS(3), }, - [345] = { + [342] = { [ts_builtin_sym_end] = ACTIONS(1444), [sym_identifier] = ACTIONS(1446), [anon_sym_SEMI] = ACTIONS(1444), @@ -50890,7 +50911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1444), [sym_block_comment] = ACTIONS(3), }, - [346] = { + [343] = { [ts_builtin_sym_end] = ACTIONS(1448), [sym_identifier] = ACTIONS(1450), [anon_sym_SEMI] = ACTIONS(1448), @@ -50967,7 +50988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1448), [sym_block_comment] = ACTIONS(3), }, - [347] = { + [344] = { [ts_builtin_sym_end] = ACTIONS(1452), [sym_identifier] = ACTIONS(1454), [anon_sym_SEMI] = ACTIONS(1452), @@ -51044,7 +51065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1452), [sym_block_comment] = ACTIONS(3), }, - [348] = { + [345] = { [ts_builtin_sym_end] = ACTIONS(1456), [sym_identifier] = ACTIONS(1458), [anon_sym_SEMI] = ACTIONS(1456), @@ -51121,7 +51142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1456), [sym_block_comment] = ACTIONS(3), }, - [349] = { + [346] = { [ts_builtin_sym_end] = ACTIONS(1460), [sym_identifier] = ACTIONS(1462), [anon_sym_SEMI] = ACTIONS(1460), @@ -51198,7 +51219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1460), [sym_block_comment] = ACTIONS(3), }, - [350] = { + [347] = { [ts_builtin_sym_end] = ACTIONS(1464), [sym_identifier] = ACTIONS(1466), [anon_sym_SEMI] = ACTIONS(1464), @@ -51275,7 +51296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1464), [sym_block_comment] = ACTIONS(3), }, - [351] = { + [348] = { [ts_builtin_sym_end] = ACTIONS(1468), [sym_identifier] = ACTIONS(1470), [anon_sym_SEMI] = ACTIONS(1468), @@ -51352,7 +51373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1468), [sym_block_comment] = ACTIONS(3), }, - [352] = { + [349] = { [ts_builtin_sym_end] = ACTIONS(1472), [sym_identifier] = ACTIONS(1474), [anon_sym_SEMI] = ACTIONS(1472), @@ -51429,7 +51450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1472), [sym_block_comment] = ACTIONS(3), }, - [353] = { + [350] = { [ts_builtin_sym_end] = ACTIONS(1476), [sym_identifier] = ACTIONS(1478), [anon_sym_SEMI] = ACTIONS(1476), @@ -51506,7 +51527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1476), [sym_block_comment] = ACTIONS(3), }, - [354] = { + [351] = { [ts_builtin_sym_end] = ACTIONS(1480), [sym_identifier] = ACTIONS(1482), [anon_sym_SEMI] = ACTIONS(1480), @@ -51583,7 +51604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1480), [sym_block_comment] = ACTIONS(3), }, - [355] = { + [352] = { [ts_builtin_sym_end] = ACTIONS(1484), [sym_identifier] = ACTIONS(1486), [anon_sym_SEMI] = ACTIONS(1484), @@ -51660,7 +51681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1484), [sym_block_comment] = ACTIONS(3), }, - [356] = { + [353] = { [ts_builtin_sym_end] = ACTIONS(1488), [sym_identifier] = ACTIONS(1490), [anon_sym_SEMI] = ACTIONS(1488), @@ -51737,7 +51758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1488), [sym_block_comment] = ACTIONS(3), }, - [357] = { + [354] = { [ts_builtin_sym_end] = ACTIONS(1492), [sym_identifier] = ACTIONS(1494), [anon_sym_SEMI] = ACTIONS(1492), @@ -51814,7 +51835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1492), [sym_block_comment] = ACTIONS(3), }, - [358] = { + [355] = { [ts_builtin_sym_end] = ACTIONS(1496), [sym_identifier] = ACTIONS(1498), [anon_sym_SEMI] = ACTIONS(1496), @@ -51891,7 +51912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1496), [sym_block_comment] = ACTIONS(3), }, - [359] = { + [356] = { [ts_builtin_sym_end] = ACTIONS(1500), [sym_identifier] = ACTIONS(1502), [anon_sym_SEMI] = ACTIONS(1500), @@ -51968,7 +51989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1500), [sym_block_comment] = ACTIONS(3), }, - [360] = { + [357] = { [ts_builtin_sym_end] = ACTIONS(1504), [sym_identifier] = ACTIONS(1506), [anon_sym_SEMI] = ACTIONS(1504), @@ -52045,7 +52066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1504), [sym_block_comment] = ACTIONS(3), }, - [361] = { + [358] = { [ts_builtin_sym_end] = ACTIONS(1508), [sym_identifier] = ACTIONS(1510), [anon_sym_SEMI] = ACTIONS(1508), @@ -52122,7 +52143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1508), [sym_block_comment] = ACTIONS(3), }, - [362] = { + [359] = { [ts_builtin_sym_end] = ACTIONS(1512), [sym_identifier] = ACTIONS(1514), [anon_sym_SEMI] = ACTIONS(1512), @@ -52199,7 +52220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1512), [sym_block_comment] = ACTIONS(3), }, - [363] = { + [360] = { [ts_builtin_sym_end] = ACTIONS(1516), [sym_identifier] = ACTIONS(1518), [anon_sym_SEMI] = ACTIONS(1516), @@ -52276,7 +52297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1516), [sym_block_comment] = ACTIONS(3), }, - [364] = { + [361] = { [ts_builtin_sym_end] = ACTIONS(1520), [sym_identifier] = ACTIONS(1522), [anon_sym_SEMI] = ACTIONS(1520), @@ -52353,40 +52374,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [362] = { + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_macro_rules_BANG] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_fn] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_impl] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_mod] = ACTIONS(1526), + [anon_sym_pub] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_trait] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_unsafe] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_move] = ACTIONS(1526), + [sym_integer_literal] = ACTIONS(1524), + [aux_sym_string_literal_token1] = ACTIONS(1524), + [sym_char_literal] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1526), + [anon_sym_false] = ACTIONS(1526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1526), + [sym_super] = ACTIONS(1526), + [sym_crate] = ACTIONS(1526), + [sym_metavariable] = ACTIONS(1524), + [sym_raw_string_literal] = ACTIONS(1524), + [sym_float_literal] = ACTIONS(1524), + [sym_block_comment] = ACTIONS(3), + }, + [363] = { + [sym_attribute_item] = STATE(556), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_match_arm] = STATE(507), + [sym_last_match_arm] = STATE(2331), + [sym_match_pattern] = STATE(2347), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2007), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_enum_variant_list_repeat1] = STATE(556), + [aux_sym_match_block_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(383), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), + [sym_block_comment] = ACTIONS(3), + }, + [364] = { + [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), @@ -52404,2035 +52555,2521 @@ 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_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_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), + }, + [365] = { + [sym_attribute_item] = STATE(556), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_match_arm] = STATE(508), + [sym_last_match_arm] = STATE(2344), + [sym_match_pattern] = STATE(2347), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2007), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_enum_variant_list_repeat1] = STATE(556), + [aux_sym_match_block_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(383), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [366] = { - [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(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(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(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), }, [368] = { - [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(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), }, [369] = { - [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(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), }, [370] = { - [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(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), }, [371] = { - [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(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), }, [372] = { - [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(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), }, [373] = { - [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(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), }, [374] = { - [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(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), }, [375] = { - [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(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), }, [376] = { - [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(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), }, [377] = { - [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(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), }, [378] = { - [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(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), }, [379] = { - [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(421), + [sym_identifier] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_macro_rules_BANG] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_u8] = ACTIONS(423), + [anon_sym_i8] = ACTIONS(423), + [anon_sym_u16] = ACTIONS(423), + [anon_sym_i16] = ACTIONS(423), + [anon_sym_u32] = ACTIONS(423), + [anon_sym_i32] = ACTIONS(423), + [anon_sym_u64] = ACTIONS(423), + [anon_sym_i64] = ACTIONS(423), + [anon_sym_u128] = ACTIONS(423), + [anon_sym_i128] = ACTIONS(423), + [anon_sym_isize] = ACTIONS(423), + [anon_sym_usize] = ACTIONS(423), + [anon_sym_f32] = ACTIONS(423), + [anon_sym_f64] = ACTIONS(423), + [anon_sym_bool] = ACTIONS(423), + [anon_sym_str] = ACTIONS(423), + [anon_sym_char] = ACTIONS(423), + [anon_sym_SQUOTE] = ACTIONS(423), + [anon_sym_async] = ACTIONS(423), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(423), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(423), + [anon_sym_enum] = ACTIONS(423), + [anon_sym_fn] = ACTIONS(423), + [anon_sym_for] = ACTIONS(423), + [anon_sym_if] = ACTIONS(423), + [anon_sym_impl] = ACTIONS(423), + [anon_sym_let] = ACTIONS(423), + [anon_sym_loop] = ACTIONS(423), + [anon_sym_match] = ACTIONS(423), + [anon_sym_mod] = ACTIONS(423), + [anon_sym_pub] = ACTIONS(423), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(423), + [anon_sym_struct] = ACTIONS(423), + [anon_sym_trait] = ACTIONS(423), + [anon_sym_type] = ACTIONS(423), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(423), + [anon_sym_use] = ACTIONS(423), + [anon_sym_while] = ACTIONS(423), + [anon_sym_POUND] = ACTIONS(421), + [anon_sym_BANG] = ACTIONS(421), + [anon_sym_extern] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_COLON_COLON] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_yield] = ACTIONS(423), + [anon_sym_move] = ACTIONS(423), + [sym_integer_literal] = ACTIONS(421), + [aux_sym_string_literal_token1] = ACTIONS(421), + [sym_char_literal] = ACTIONS(421), + [anon_sym_true] = ACTIONS(423), + [anon_sym_false] = ACTIONS(423), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(423), + [sym_super] = ACTIONS(423), + [sym_crate] = ACTIONS(423), + [sym_metavariable] = ACTIONS(421), + [sym_raw_string_literal] = ACTIONS(421), + [sym_float_literal] = ACTIONS(421), [sym_block_comment] = ACTIONS(3), }, [380] = { - [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(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), }, [381] = { - [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(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), }, [382] = { - [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(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), }, [383] = { - [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(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), }, [384] = { - [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(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), }, [385] = { - [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(417), + [sym_identifier] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_macro_rules_BANG] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [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(419), + [anon_sym_async] = ACTIONS(419), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(419), + [anon_sym_default] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(419), + [anon_sym_fn] = ACTIONS(419), + [anon_sym_for] = ACTIONS(419), + [anon_sym_if] = ACTIONS(419), + [anon_sym_impl] = ACTIONS(419), + [anon_sym_let] = ACTIONS(419), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(419), + [anon_sym_mod] = ACTIONS(419), + [anon_sym_pub] = ACTIONS(419), + [anon_sym_return] = ACTIONS(419), + [anon_sym_static] = ACTIONS(419), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_trait] = ACTIONS(419), + [anon_sym_type] = ACTIONS(419), + [anon_sym_union] = ACTIONS(419), + [anon_sym_unsafe] = ACTIONS(419), + [anon_sym_use] = ACTIONS(419), + [anon_sym_while] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_extern] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_COLON_COLON] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_yield] = ACTIONS(419), + [anon_sym_move] = ACTIONS(419), + [sym_integer_literal] = ACTIONS(417), + [aux_sym_string_literal_token1] = ACTIONS(417), + [sym_char_literal] = ACTIONS(417), + [anon_sym_true] = ACTIONS(419), + [anon_sym_false] = ACTIONS(419), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(419), + [sym_super] = ACTIONS(419), + [sym_crate] = ACTIONS(419), + [sym_metavariable] = ACTIONS(417), + [sym_raw_string_literal] = ACTIONS(417), + [sym_float_literal] = ACTIONS(417), [sym_block_comment] = ACTIONS(3), }, [386] = { - [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(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), }, [387] = { - [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(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), }, [388] = { - [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(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), }, [389] = { - [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(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), }, [390] = { - [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(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), }, [391] = { - [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), + [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), }, [392] = { + [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), + }, + [393] = { + [ts_builtin_sym_end] = ACTIONS(425), + [sym_identifier] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_macro_rules_BANG] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_u8] = ACTIONS(427), + [anon_sym_i8] = ACTIONS(427), + [anon_sym_u16] = ACTIONS(427), + [anon_sym_i16] = ACTIONS(427), + [anon_sym_u32] = ACTIONS(427), + [anon_sym_i32] = ACTIONS(427), + [anon_sym_u64] = ACTIONS(427), + [anon_sym_i64] = ACTIONS(427), + [anon_sym_u128] = ACTIONS(427), + [anon_sym_i128] = ACTIONS(427), + [anon_sym_isize] = ACTIONS(427), + [anon_sym_usize] = ACTIONS(427), + [anon_sym_f32] = ACTIONS(427), + [anon_sym_f64] = ACTIONS(427), + [anon_sym_bool] = ACTIONS(427), + [anon_sym_str] = ACTIONS(427), + [anon_sym_char] = ACTIONS(427), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(427), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_fn] = ACTIONS(427), + [anon_sym_for] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_impl] = ACTIONS(427), + [anon_sym_let] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(427), + [anon_sym_match] = ACTIONS(427), + [anon_sym_mod] = ACTIONS(427), + [anon_sym_pub] = ACTIONS(427), + [anon_sym_return] = ACTIONS(427), + [anon_sym_static] = ACTIONS(427), + [anon_sym_struct] = ACTIONS(427), + [anon_sym_trait] = ACTIONS(427), + [anon_sym_type] = ACTIONS(427), + [anon_sym_union] = ACTIONS(427), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_use] = ACTIONS(427), + [anon_sym_while] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_extern] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_move] = ACTIONS(427), + [sym_integer_literal] = ACTIONS(425), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_char_literal] = ACTIONS(425), + [anon_sym_true] = ACTIONS(427), + [anon_sym_false] = ACTIONS(427), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(427), + [sym_super] = ACTIONS(427), + [sym_crate] = ACTIONS(427), + [sym_metavariable] = ACTIONS(425), + [sym_raw_string_literal] = ACTIONS(425), + [sym_float_literal] = ACTIONS(425), + [sym_block_comment] = ACTIONS(3), + }, + [394] = { + [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), + }, + [395] = { + [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), + }, + [396] = { + [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), + }, + [397] = { [ts_builtin_sym_end] = ACTIONS(1648), [sym_identifier] = ACTIONS(1650), [anon_sym_SEMI] = ACTIONS(1648), @@ -54509,7 +55146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1648), [sym_block_comment] = ACTIONS(3), }, - [393] = { + [398] = { [ts_builtin_sym_end] = ACTIONS(1652), [sym_identifier] = ACTIONS(1654), [anon_sym_SEMI] = ACTIONS(1652), @@ -54586,7 +55223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1652), [sym_block_comment] = ACTIONS(3), }, - [394] = { + [399] = { [ts_builtin_sym_end] = ACTIONS(1656), [sym_identifier] = ACTIONS(1658), [anon_sym_SEMI] = ACTIONS(1656), @@ -54663,7 +55300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1656), [sym_block_comment] = ACTIONS(3), }, - [395] = { + [400] = { [ts_builtin_sym_end] = ACTIONS(1660), [sym_identifier] = ACTIONS(1662), [anon_sym_SEMI] = ACTIONS(1660), @@ -54740,7 +55377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1660), [sym_block_comment] = ACTIONS(3), }, - [396] = { + [401] = { [ts_builtin_sym_end] = ACTIONS(1664), [sym_identifier] = ACTIONS(1666), [anon_sym_SEMI] = ACTIONS(1664), @@ -54817,7 +55454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1664), [sym_block_comment] = ACTIONS(3), }, - [397] = { + [402] = { [ts_builtin_sym_end] = ACTIONS(1668), [sym_identifier] = ACTIONS(1670), [anon_sym_SEMI] = ACTIONS(1668), @@ -54894,7 +55531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1668), [sym_block_comment] = ACTIONS(3), }, - [398] = { + [403] = { [ts_builtin_sym_end] = ACTIONS(1672), [sym_identifier] = ACTIONS(1674), [anon_sym_SEMI] = ACTIONS(1672), @@ -54971,7 +55608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1672), [sym_block_comment] = ACTIONS(3), }, - [399] = { + [404] = { [ts_builtin_sym_end] = ACTIONS(1676), [sym_identifier] = ACTIONS(1678), [anon_sym_SEMI] = ACTIONS(1676), @@ -55048,7 +55685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1676), [sym_block_comment] = ACTIONS(3), }, - [400] = { + [405] = { [ts_builtin_sym_end] = ACTIONS(1680), [sym_identifier] = ACTIONS(1682), [anon_sym_SEMI] = ACTIONS(1680), @@ -55125,7 +55762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1680), [sym_block_comment] = ACTIONS(3), }, - [401] = { + [406] = { [ts_builtin_sym_end] = ACTIONS(1684), [sym_identifier] = ACTIONS(1686), [anon_sym_SEMI] = ACTIONS(1684), @@ -55202,7 +55839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1684), [sym_block_comment] = ACTIONS(3), }, - [402] = { + [407] = { [ts_builtin_sym_end] = ACTIONS(1688), [sym_identifier] = ACTIONS(1690), [anon_sym_SEMI] = ACTIONS(1688), @@ -55279,7 +55916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1688), [sym_block_comment] = ACTIONS(3), }, - [403] = { + [408] = { [ts_builtin_sym_end] = ACTIONS(1692), [sym_identifier] = ACTIONS(1694), [anon_sym_SEMI] = ACTIONS(1692), @@ -55356,7 +55993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1692), [sym_block_comment] = ACTIONS(3), }, - [404] = { + [409] = { [ts_builtin_sym_end] = ACTIONS(1696), [sym_identifier] = ACTIONS(1698), [anon_sym_SEMI] = ACTIONS(1696), @@ -55433,7 +56070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1696), [sym_block_comment] = ACTIONS(3), }, - [405] = { + [410] = { [ts_builtin_sym_end] = ACTIONS(1700), [sym_identifier] = ACTIONS(1702), [anon_sym_SEMI] = ACTIONS(1700), @@ -55510,7 +56147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1700), [sym_block_comment] = ACTIONS(3), }, - [406] = { + [411] = { [ts_builtin_sym_end] = ACTIONS(1704), [sym_identifier] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1704), @@ -55587,7 +56224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1704), [sym_block_comment] = ACTIONS(3), }, - [407] = { + [412] = { [ts_builtin_sym_end] = ACTIONS(1708), [sym_identifier] = ACTIONS(1710), [anon_sym_SEMI] = ACTIONS(1708), @@ -55664,7 +56301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1708), [sym_block_comment] = ACTIONS(3), }, - [408] = { + [413] = { [ts_builtin_sym_end] = ACTIONS(1712), [sym_identifier] = ACTIONS(1714), [anon_sym_SEMI] = ACTIONS(1712), @@ -55741,7 +56378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1712), [sym_block_comment] = ACTIONS(3), }, - [409] = { + [414] = { [ts_builtin_sym_end] = ACTIONS(1716), [sym_identifier] = ACTIONS(1718), [anon_sym_SEMI] = ACTIONS(1716), @@ -55818,7 +56455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1716), [sym_block_comment] = ACTIONS(3), }, - [410] = { + [415] = { [ts_builtin_sym_end] = ACTIONS(1720), [sym_identifier] = ACTIONS(1722), [anon_sym_SEMI] = ACTIONS(1720), @@ -55895,7 +56532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1720), [sym_block_comment] = ACTIONS(3), }, - [411] = { + [416] = { [ts_builtin_sym_end] = ACTIONS(1724), [sym_identifier] = ACTIONS(1726), [anon_sym_SEMI] = ACTIONS(1724), @@ -55972,7 +56609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1724), [sym_block_comment] = ACTIONS(3), }, - [412] = { + [417] = { [ts_builtin_sym_end] = ACTIONS(1728), [sym_identifier] = ACTIONS(1730), [anon_sym_SEMI] = ACTIONS(1728), @@ -56049,7 +56686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1728), [sym_block_comment] = ACTIONS(3), }, - [413] = { + [418] = { [ts_builtin_sym_end] = ACTIONS(1732), [sym_identifier] = ACTIONS(1734), [anon_sym_SEMI] = ACTIONS(1732), @@ -56126,7 +56763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1732), [sym_block_comment] = ACTIONS(3), }, - [414] = { + [419] = { [ts_builtin_sym_end] = ACTIONS(1736), [sym_identifier] = ACTIONS(1738), [anon_sym_SEMI] = ACTIONS(1736), @@ -56203,7 +56840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1736), [sym_block_comment] = ACTIONS(3), }, - [415] = { + [420] = { [ts_builtin_sym_end] = ACTIONS(1740), [sym_identifier] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1740), @@ -56280,7 +56917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1740), [sym_block_comment] = ACTIONS(3), }, - [416] = { + [421] = { [ts_builtin_sym_end] = ACTIONS(1744), [sym_identifier] = ACTIONS(1746), [anon_sym_SEMI] = ACTIONS(1744), @@ -56357,7 +56994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1744), [sym_block_comment] = ACTIONS(3), }, - [417] = { + [422] = { [ts_builtin_sym_end] = ACTIONS(1748), [sym_identifier] = ACTIONS(1750), [anon_sym_SEMI] = ACTIONS(1748), @@ -56434,7 +57071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1748), [sym_block_comment] = ACTIONS(3), }, - [418] = { + [423] = { [ts_builtin_sym_end] = ACTIONS(1752), [sym_identifier] = ACTIONS(1754), [anon_sym_SEMI] = ACTIONS(1752), @@ -56511,7 +57148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1752), [sym_block_comment] = ACTIONS(3), }, - [419] = { + [424] = { [ts_builtin_sym_end] = ACTIONS(1756), [sym_identifier] = ACTIONS(1758), [anon_sym_SEMI] = ACTIONS(1756), @@ -56588,7 +57225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1756), [sym_block_comment] = ACTIONS(3), }, - [420] = { + [425] = { [ts_builtin_sym_end] = ACTIONS(1760), [sym_identifier] = ACTIONS(1762), [anon_sym_SEMI] = ACTIONS(1760), @@ -56665,7 +57302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1760), [sym_block_comment] = ACTIONS(3), }, - [421] = { + [426] = { [ts_builtin_sym_end] = ACTIONS(1764), [sym_identifier] = ACTIONS(1766), [anon_sym_SEMI] = ACTIONS(1764), @@ -56742,7 +57379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1764), [sym_block_comment] = ACTIONS(3), }, - [422] = { + [427] = { [ts_builtin_sym_end] = ACTIONS(1768), [sym_identifier] = ACTIONS(1770), [anon_sym_SEMI] = ACTIONS(1768), @@ -56819,7 +57456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1768), [sym_block_comment] = ACTIONS(3), }, - [423] = { + [428] = { [ts_builtin_sym_end] = ACTIONS(1772), [sym_identifier] = ACTIONS(1774), [anon_sym_SEMI] = ACTIONS(1772), @@ -56896,7 +57533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1772), [sym_block_comment] = ACTIONS(3), }, - [424] = { + [429] = { [ts_builtin_sym_end] = ACTIONS(1776), [sym_identifier] = ACTIONS(1778), [anon_sym_SEMI] = ACTIONS(1776), @@ -56973,7 +57610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1776), [sym_block_comment] = ACTIONS(3), }, - [425] = { + [430] = { [ts_builtin_sym_end] = ACTIONS(1780), [sym_identifier] = ACTIONS(1782), [anon_sym_SEMI] = ACTIONS(1780), @@ -57050,7 +57687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1780), [sym_block_comment] = ACTIONS(3), }, - [426] = { + [431] = { [ts_builtin_sym_end] = ACTIONS(1784), [sym_identifier] = ACTIONS(1786), [anon_sym_SEMI] = ACTIONS(1784), @@ -57127,7 +57764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1784), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [432] = { [ts_builtin_sym_end] = ACTIONS(1788), [sym_identifier] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1788), @@ -57204,7 +57841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1788), [sym_block_comment] = ACTIONS(3), }, - [428] = { + [433] = { [ts_builtin_sym_end] = ACTIONS(1792), [sym_identifier] = ACTIONS(1794), [anon_sym_SEMI] = ACTIONS(1792), @@ -57281,7 +57918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1792), [sym_block_comment] = ACTIONS(3), }, - [429] = { + [434] = { [ts_builtin_sym_end] = ACTIONS(1796), [sym_identifier] = ACTIONS(1798), [anon_sym_SEMI] = ACTIONS(1796), @@ -57358,7 +57995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1796), [sym_block_comment] = ACTIONS(3), }, - [430] = { + [435] = { [ts_builtin_sym_end] = ACTIONS(1800), [sym_identifier] = ACTIONS(1802), [anon_sym_SEMI] = ACTIONS(1800), @@ -57435,7 +58072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, - [431] = { + [436] = { [ts_builtin_sym_end] = ACTIONS(1804), [sym_identifier] = ACTIONS(1806), [anon_sym_SEMI] = ACTIONS(1804), @@ -57512,7 +58149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, - [432] = { + [437] = { [ts_builtin_sym_end] = ACTIONS(1808), [sym_identifier] = ACTIONS(1810), [anon_sym_SEMI] = ACTIONS(1808), @@ -57589,7 +58226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, - [433] = { + [438] = { [ts_builtin_sym_end] = ACTIONS(1812), [sym_identifier] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(1812), @@ -57666,7 +58303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, - [434] = { + [439] = { [ts_builtin_sym_end] = ACTIONS(1816), [sym_identifier] = ACTIONS(1818), [anon_sym_SEMI] = ACTIONS(1816), @@ -57743,7 +58380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [440] = { [ts_builtin_sym_end] = ACTIONS(1820), [sym_identifier] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(1820), @@ -57820,7 +58457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, - [436] = { + [441] = { [ts_builtin_sym_end] = ACTIONS(1824), [sym_identifier] = ACTIONS(1826), [anon_sym_SEMI] = ACTIONS(1824), @@ -57897,7 +58534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, - [437] = { + [442] = { [ts_builtin_sym_end] = ACTIONS(1828), [sym_identifier] = ACTIONS(1830), [anon_sym_SEMI] = ACTIONS(1828), @@ -57974,7 +58611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1828), [sym_block_comment] = ACTIONS(3), }, - [438] = { + [443] = { [ts_builtin_sym_end] = ACTIONS(1832), [sym_identifier] = ACTIONS(1834), [anon_sym_SEMI] = ACTIONS(1832), @@ -58051,7 +58688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1832), [sym_block_comment] = ACTIONS(3), }, - [439] = { + [444] = { [ts_builtin_sym_end] = ACTIONS(1836), [sym_identifier] = ACTIONS(1838), [anon_sym_SEMI] = ACTIONS(1836), @@ -58128,7 +58765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, - [440] = { + [445] = { [ts_builtin_sym_end] = ACTIONS(1840), [sym_identifier] = ACTIONS(1842), [anon_sym_SEMI] = ACTIONS(1840), @@ -58205,7 +58842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1840), [sym_block_comment] = ACTIONS(3), }, - [441] = { + [446] = { [ts_builtin_sym_end] = ACTIONS(1844), [sym_identifier] = ACTIONS(1846), [anon_sym_SEMI] = ACTIONS(1844), @@ -58282,7 +58919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, - [442] = { + [447] = { [ts_builtin_sym_end] = ACTIONS(1848), [sym_identifier] = ACTIONS(1850), [anon_sym_SEMI] = ACTIONS(1848), @@ -58359,7 +58996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, - [443] = { + [448] = { [ts_builtin_sym_end] = ACTIONS(1852), [sym_identifier] = ACTIONS(1854), [anon_sym_SEMI] = ACTIONS(1852), @@ -58436,7 +59073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, - [444] = { + [449] = { [ts_builtin_sym_end] = ACTIONS(1856), [sym_identifier] = ACTIONS(1858), [anon_sym_SEMI] = ACTIONS(1856), @@ -58513,7 +59150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, - [445] = { + [450] = { [ts_builtin_sym_end] = ACTIONS(1860), [sym_identifier] = ACTIONS(1862), [anon_sym_SEMI] = ACTIONS(1860), @@ -58590,7 +59227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, - [446] = { + [451] = { [ts_builtin_sym_end] = ACTIONS(1864), [sym_identifier] = ACTIONS(1866), [anon_sym_SEMI] = ACTIONS(1864), @@ -58667,7 +59304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1864), [sym_block_comment] = ACTIONS(3), }, - [447] = { + [452] = { [ts_builtin_sym_end] = ACTIONS(1868), [sym_identifier] = ACTIONS(1870), [anon_sym_SEMI] = ACTIONS(1868), @@ -58744,7 +59381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1868), [sym_block_comment] = ACTIONS(3), }, - [448] = { + [453] = { [ts_builtin_sym_end] = ACTIONS(1872), [sym_identifier] = ACTIONS(1874), [anon_sym_SEMI] = ACTIONS(1872), @@ -58821,7 +59458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1872), [sym_block_comment] = ACTIONS(3), }, - [449] = { + [454] = { [ts_builtin_sym_end] = ACTIONS(1876), [sym_identifier] = ACTIONS(1878), [anon_sym_SEMI] = ACTIONS(1876), @@ -58898,7 +59535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1876), [sym_block_comment] = ACTIONS(3), }, - [450] = { + [455] = { [ts_builtin_sym_end] = ACTIONS(1880), [sym_identifier] = ACTIONS(1882), [anon_sym_SEMI] = ACTIONS(1880), @@ -58975,7 +59612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1880), [sym_block_comment] = ACTIONS(3), }, - [451] = { + [456] = { [ts_builtin_sym_end] = ACTIONS(1884), [sym_identifier] = ACTIONS(1886), [anon_sym_SEMI] = ACTIONS(1884), @@ -59052,7 +59689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1884), [sym_block_comment] = ACTIONS(3), }, - [452] = { + [457] = { [ts_builtin_sym_end] = ACTIONS(1888), [sym_identifier] = ACTIONS(1890), [anon_sym_SEMI] = ACTIONS(1888), @@ -59129,7 +59766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1888), [sym_block_comment] = ACTIONS(3), }, - [453] = { + [458] = { [ts_builtin_sym_end] = ACTIONS(1892), [sym_identifier] = ACTIONS(1894), [anon_sym_SEMI] = ACTIONS(1892), @@ -59206,7 +59843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1892), [sym_block_comment] = ACTIONS(3), }, - [454] = { + [459] = { [ts_builtin_sym_end] = ACTIONS(1896), [sym_identifier] = ACTIONS(1898), [anon_sym_SEMI] = ACTIONS(1896), @@ -59283,7 +59920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1896), [sym_block_comment] = ACTIONS(3), }, - [455] = { + [460] = { [ts_builtin_sym_end] = ACTIONS(1900), [sym_identifier] = ACTIONS(1902), [anon_sym_SEMI] = ACTIONS(1900), @@ -59360,7 +59997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1900), [sym_block_comment] = ACTIONS(3), }, - [456] = { + [461] = { [ts_builtin_sym_end] = ACTIONS(1904), [sym_identifier] = ACTIONS(1906), [anon_sym_SEMI] = ACTIONS(1904), @@ -59437,7 +60074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, - [457] = { + [462] = { [ts_builtin_sym_end] = ACTIONS(1908), [sym_identifier] = ACTIONS(1910), [anon_sym_SEMI] = ACTIONS(1908), @@ -59514,7 +60151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, - [458] = { + [463] = { [ts_builtin_sym_end] = ACTIONS(1912), [sym_identifier] = ACTIONS(1914), [anon_sym_SEMI] = ACTIONS(1912), @@ -59591,7 +60228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1912), [sym_block_comment] = ACTIONS(3), }, - [459] = { + [464] = { [ts_builtin_sym_end] = ACTIONS(1916), [sym_identifier] = ACTIONS(1918), [anon_sym_SEMI] = ACTIONS(1916), @@ -59668,7 +60305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1916), [sym_block_comment] = ACTIONS(3), }, - [460] = { + [465] = { [ts_builtin_sym_end] = ACTIONS(1920), [sym_identifier] = ACTIONS(1922), [anon_sym_SEMI] = ACTIONS(1920), @@ -59745,7 +60382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1920), [sym_block_comment] = ACTIONS(3), }, - [461] = { + [466] = { [ts_builtin_sym_end] = ACTIONS(1924), [sym_identifier] = ACTIONS(1926), [anon_sym_SEMI] = ACTIONS(1924), @@ -59822,7 +60459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1924), [sym_block_comment] = ACTIONS(3), }, - [462] = { + [467] = { [ts_builtin_sym_end] = ACTIONS(1928), [sym_identifier] = ACTIONS(1930), [anon_sym_SEMI] = ACTIONS(1928), @@ -59899,7 +60536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1928), [sym_block_comment] = ACTIONS(3), }, - [463] = { + [468] = { [ts_builtin_sym_end] = ACTIONS(1932), [sym_identifier] = ACTIONS(1934), [anon_sym_SEMI] = ACTIONS(1932), @@ -59976,7 +60613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1932), [sym_block_comment] = ACTIONS(3), }, - [464] = { + [469] = { [ts_builtin_sym_end] = ACTIONS(1936), [sym_identifier] = ACTIONS(1938), [anon_sym_SEMI] = ACTIONS(1936), @@ -60053,7 +60690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1936), [sym_block_comment] = ACTIONS(3), }, - [465] = { + [470] = { [ts_builtin_sym_end] = ACTIONS(1940), [sym_identifier] = ACTIONS(1942), [anon_sym_SEMI] = ACTIONS(1940), @@ -60130,7 +60767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1940), [sym_block_comment] = ACTIONS(3), }, - [466] = { + [471] = { [ts_builtin_sym_end] = ACTIONS(1944), [sym_identifier] = ACTIONS(1946), [anon_sym_SEMI] = ACTIONS(1944), @@ -60207,7 +60844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1944), [sym_block_comment] = ACTIONS(3), }, - [467] = { + [472] = { [ts_builtin_sym_end] = ACTIONS(1948), [sym_identifier] = ACTIONS(1950), [anon_sym_SEMI] = ACTIONS(1948), @@ -60284,7 +60921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1948), [sym_block_comment] = ACTIONS(3), }, - [468] = { + [473] = { [ts_builtin_sym_end] = ACTIONS(1952), [sym_identifier] = ACTIONS(1954), [anon_sym_SEMI] = ACTIONS(1952), @@ -60361,945 +60998,863 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1952), [sym_block_comment] = ACTIONS(3), }, - [469] = { - [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), + [474] = { + [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(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] = { - [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), + [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), }, - [471] = { - [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), + [475] = { + [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), }, - [472] = { - [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), + [476] = { + [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), }, - [473] = { - [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), + [477] = { + [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), }, - [474] = { - [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), + [478] = { + [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), }, - [475] = { - [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), + [479] = { + [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), }, - [476] = { - [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), + [480] = { + [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), }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_macro_rules_BANG] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_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_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), + [481] = { + [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), }, - [478] = { - [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), + [482] = { + [ts_builtin_sym_end] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_macro_rules_BANG] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_u8] = ACTIONS(1990), + [anon_sym_i8] = ACTIONS(1990), + [anon_sym_u16] = ACTIONS(1990), + [anon_sym_i16] = ACTIONS(1990), + [anon_sym_u32] = ACTIONS(1990), + [anon_sym_i32] = ACTIONS(1990), + [anon_sym_u64] = ACTIONS(1990), + [anon_sym_i64] = ACTIONS(1990), + [anon_sym_u128] = ACTIONS(1990), + [anon_sym_i128] = ACTIONS(1990), + [anon_sym_isize] = ACTIONS(1990), + [anon_sym_usize] = ACTIONS(1990), + [anon_sym_f32] = ACTIONS(1990), + [anon_sym_f64] = ACTIONS(1990), + [anon_sym_bool] = ACTIONS(1990), + [anon_sym_str] = ACTIONS(1990), + [anon_sym_char] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_async] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_fn] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_impl] = ACTIONS(1990), + [anon_sym_let] = ACTIONS(1990), + [anon_sym_loop] = ACTIONS(1990), + [anon_sym_match] = ACTIONS(1990), + [anon_sym_mod] = ACTIONS(1990), + [anon_sym_pub] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_trait] = ACTIONS(1990), + [anon_sym_type] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsafe] = ACTIONS(1990), + [anon_sym_use] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_DOT_DOT] = ACTIONS(1988), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_yield] = ACTIONS(1990), + [anon_sym_move] = ACTIONS(1990), + [sym_integer_literal] = ACTIONS(1988), + [aux_sym_string_literal_token1] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1990), + [sym_super] = ACTIONS(1990), + [sym_crate] = ACTIONS(1990), + [sym_metavariable] = ACTIONS(1988), + [sym_raw_string_literal] = ACTIONS(1988), + [sym_float_literal] = ACTIONS(1988), [sym_block_comment] = ACTIONS(3), }, - [479] = { - [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), + [483] = { + [ts_builtin_sym_end] = ACTIONS(1992), + [sym_identifier] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_macro_rules_BANG] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_u8] = ACTIONS(1994), + [anon_sym_i8] = ACTIONS(1994), + [anon_sym_u16] = ACTIONS(1994), + [anon_sym_i16] = ACTIONS(1994), + [anon_sym_u32] = ACTIONS(1994), + [anon_sym_i32] = ACTIONS(1994), + [anon_sym_u64] = ACTIONS(1994), + [anon_sym_i64] = ACTIONS(1994), + [anon_sym_u128] = ACTIONS(1994), + [anon_sym_i128] = ACTIONS(1994), + [anon_sym_isize] = ACTIONS(1994), + [anon_sym_usize] = ACTIONS(1994), + [anon_sym_f32] = ACTIONS(1994), + [anon_sym_f64] = ACTIONS(1994), + [anon_sym_bool] = ACTIONS(1994), + [anon_sym_str] = ACTIONS(1994), + [anon_sym_char] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_impl] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_mod] = ACTIONS(1994), + [anon_sym_pub] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_trait] = ACTIONS(1994), + [anon_sym_type] = ACTIONS(1994), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsafe] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(1992), + [anon_sym_BANG] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1992), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_DOT_DOT] = ACTIONS(1992), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_yield] = ACTIONS(1994), + [anon_sym_move] = ACTIONS(1994), + [sym_integer_literal] = ACTIONS(1992), + [aux_sym_string_literal_token1] = ACTIONS(1992), + [sym_char_literal] = ACTIONS(1992), + [anon_sym_true] = ACTIONS(1994), + [anon_sym_false] = ACTIONS(1994), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1994), + [sym_super] = ACTIONS(1994), + [sym_crate] = ACTIONS(1994), + [sym_metavariable] = ACTIONS(1992), + [sym_raw_string_literal] = ACTIONS(1992), + [sym_float_literal] = ACTIONS(1992), [sym_block_comment] = ACTIONS(3), }, - [480] = { - [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), + [484] = { + [ts_builtin_sym_end] = ACTIONS(1996), + [sym_identifier] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_macro_rules_BANG] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_u8] = ACTIONS(1998), + [anon_sym_i8] = ACTIONS(1998), + [anon_sym_u16] = ACTIONS(1998), + [anon_sym_i16] = ACTIONS(1998), + [anon_sym_u32] = ACTIONS(1998), + [anon_sym_i32] = ACTIONS(1998), + [anon_sym_u64] = ACTIONS(1998), + [anon_sym_i64] = ACTIONS(1998), + [anon_sym_u128] = ACTIONS(1998), + [anon_sym_i128] = ACTIONS(1998), + [anon_sym_isize] = ACTIONS(1998), + [anon_sym_usize] = ACTIONS(1998), + [anon_sym_f32] = ACTIONS(1998), + [anon_sym_f64] = ACTIONS(1998), + [anon_sym_bool] = ACTIONS(1998), + [anon_sym_str] = ACTIONS(1998), + [anon_sym_char] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_async] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_default] = ACTIONS(1998), + [anon_sym_enum] = ACTIONS(1998), + [anon_sym_fn] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_impl] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_mod] = ACTIONS(1998), + [anon_sym_pub] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(1998), + [anon_sym_struct] = ACTIONS(1998), + [anon_sym_trait] = ACTIONS(1998), + [anon_sym_type] = ACTIONS(1998), + [anon_sym_union] = ACTIONS(1998), + [anon_sym_unsafe] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_LT] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1996), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_DOT_DOT] = ACTIONS(1996), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1996), + [anon_sym_yield] = ACTIONS(1998), + [anon_sym_move] = ACTIONS(1998), + [sym_integer_literal] = ACTIONS(1996), + [aux_sym_string_literal_token1] = ACTIONS(1996), + [sym_char_literal] = ACTIONS(1996), + [anon_sym_true] = ACTIONS(1998), + [anon_sym_false] = ACTIONS(1998), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1998), + [sym_super] = ACTIONS(1998), + [sym_crate] = ACTIONS(1998), + [sym_metavariable] = ACTIONS(1996), + [sym_raw_string_literal] = ACTIONS(1996), + [sym_float_literal] = ACTIONS(1996), [sym_block_comment] = ACTIONS(3), }, - [481] = { - [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), + [485] = { + [ts_builtin_sym_end] = ACTIONS(2000), [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_macro_rules_BANG] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2000), [anon_sym_u8] = ACTIONS(2002), [anon_sym_i8] = ACTIONS(2002), [anon_sym_u16] = ACTIONS(2002), @@ -61317,11 +61872,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2002), [anon_sym_str] = ACTIONS(2002), [anon_sym_char] = ACTIONS(2002), - [aux_sym__non_special_token_token1] = ACTIONS(2002), [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_as] = ACTIONS(2002), [anon_sym_async] = ACTIONS(2002), - [anon_sym_await] = ACTIONS(2002), [anon_sym_break] = ACTIONS(2002), [anon_sym_const] = ACTIONS(2002), [anon_sym_continue] = ACTIONS(2002), @@ -61344,418 +61896,963 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2002), [anon_sym_unsafe] = ACTIONS(2002), [anon_sym_use] = ACTIONS(2002), - [anon_sym_where] = ACTIONS(2002), [anon_sym_while] = ACTIONS(2002), - [sym_mutable_specifier] = ACTIONS(2002), - [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), + [anon_sym_POUND] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_DOT_DOT] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(2002), + [anon_sym_move] = ACTIONS(2002), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2000), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2002), + [anon_sym_false] = ACTIONS(2002), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2002), [sym_super] = ACTIONS(2002), [sym_crate] = ACTIONS(2002), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [sym_metavariable] = ACTIONS(2000), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [482] = { - [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), + [486] = { + [ts_builtin_sym_end] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_macro_rules_BANG] = ACTIONS(2004), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2022), - [anon_sym_i8] = ACTIONS(2022), - [anon_sym_u16] = ACTIONS(2022), - [anon_sym_i16] = ACTIONS(2022), - [anon_sym_u32] = ACTIONS(2022), - [anon_sym_i32] = ACTIONS(2022), - [anon_sym_u64] = ACTIONS(2022), - [anon_sym_i64] = ACTIONS(2022), - [anon_sym_u128] = ACTIONS(2022), - [anon_sym_i128] = ACTIONS(2022), - [anon_sym_isize] = ACTIONS(2022), - [anon_sym_usize] = ACTIONS(2022), - [anon_sym_f32] = ACTIONS(2022), - [anon_sym_f64] = ACTIONS(2022), - [anon_sym_bool] = ACTIONS(2022), - [anon_sym_str] = ACTIONS(2022), - [anon_sym_char] = ACTIONS(2022), - [aux_sym__non_special_token_token1] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2022), - [anon_sym_as] = ACTIONS(2022), - [anon_sym_async] = ACTIONS(2022), - [anon_sym_await] = ACTIONS(2022), - [anon_sym_break] = ACTIONS(2022), - [anon_sym_const] = ACTIONS(2022), - [anon_sym_continue] = ACTIONS(2022), - [anon_sym_default] = ACTIONS(2022), - [anon_sym_enum] = ACTIONS(2022), - [anon_sym_fn] = ACTIONS(2022), - [anon_sym_for] = ACTIONS(2022), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_impl] = ACTIONS(2022), - [anon_sym_let] = ACTIONS(2022), - [anon_sym_loop] = ACTIONS(2022), - [anon_sym_match] = ACTIONS(2022), - [anon_sym_mod] = ACTIONS(2022), - [anon_sym_pub] = ACTIONS(2022), - [anon_sym_return] = ACTIONS(2022), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_struct] = ACTIONS(2022), - [anon_sym_trait] = ACTIONS(2022), - [anon_sym_type] = ACTIONS(2022), - [anon_sym_union] = ACTIONS(2022), - [anon_sym_unsafe] = ACTIONS(2022), - [anon_sym_use] = ACTIONS(2022), - [anon_sym_where] = ACTIONS(2022), - [anon_sym_while] = ACTIONS(2022), - [sym_mutable_specifier] = ACTIONS(2022), - [sym_integer_literal] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2004), + [anon_sym_u8] = ACTIONS(2006), + [anon_sym_i8] = ACTIONS(2006), + [anon_sym_u16] = ACTIONS(2006), + [anon_sym_i16] = ACTIONS(2006), + [anon_sym_u32] = ACTIONS(2006), + [anon_sym_i32] = ACTIONS(2006), + [anon_sym_u64] = ACTIONS(2006), + [anon_sym_i64] = ACTIONS(2006), + [anon_sym_u128] = ACTIONS(2006), + [anon_sym_i128] = ACTIONS(2006), + [anon_sym_isize] = ACTIONS(2006), + [anon_sym_usize] = ACTIONS(2006), + [anon_sym_f32] = ACTIONS(2006), + [anon_sym_f64] = ACTIONS(2006), + [anon_sym_bool] = ACTIONS(2006), + [anon_sym_str] = ACTIONS(2006), + [anon_sym_char] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_async] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_const] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_default] = ACTIONS(2006), + [anon_sym_enum] = ACTIONS(2006), + [anon_sym_fn] = ACTIONS(2006), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_impl] = ACTIONS(2006), + [anon_sym_let] = ACTIONS(2006), + [anon_sym_loop] = ACTIONS(2006), + [anon_sym_match] = ACTIONS(2006), + [anon_sym_mod] = ACTIONS(2006), + [anon_sym_pub] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2006), + [anon_sym_struct] = ACTIONS(2006), + [anon_sym_trait] = ACTIONS(2006), + [anon_sym_type] = ACTIONS(2006), + [anon_sym_union] = ACTIONS(2006), + [anon_sym_unsafe] = ACTIONS(2006), + [anon_sym_use] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_LT] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_DOT_DOT] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_yield] = ACTIONS(2006), + [anon_sym_move] = ACTIONS(2006), + [sym_integer_literal] = ACTIONS(2004), + [aux_sym_string_literal_token1] = ACTIONS(2004), + [sym_char_literal] = ACTIONS(2004), + [anon_sym_true] = ACTIONS(2006), + [anon_sym_false] = ACTIONS(2006), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2006), + [sym_super] = ACTIONS(2006), + [sym_crate] = ACTIONS(2006), + [sym_metavariable] = ACTIONS(2004), + [sym_raw_string_literal] = ACTIONS(2004), + [sym_float_literal] = ACTIONS(2004), + [sym_block_comment] = ACTIONS(3), + }, + [487] = { + [ts_builtin_sym_end] = ACTIONS(2008), + [sym_identifier] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_macro_rules_BANG] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_u8] = ACTIONS(2010), + [anon_sym_i8] = ACTIONS(2010), + [anon_sym_u16] = ACTIONS(2010), + [anon_sym_i16] = ACTIONS(2010), + [anon_sym_u32] = ACTIONS(2010), + [anon_sym_i32] = ACTIONS(2010), + [anon_sym_u64] = ACTIONS(2010), + [anon_sym_i64] = ACTIONS(2010), + [anon_sym_u128] = ACTIONS(2010), + [anon_sym_i128] = ACTIONS(2010), + [anon_sym_isize] = ACTIONS(2010), + [anon_sym_usize] = ACTIONS(2010), + [anon_sym_f32] = ACTIONS(2010), + [anon_sym_f64] = ACTIONS(2010), + [anon_sym_bool] = ACTIONS(2010), + [anon_sym_str] = ACTIONS(2010), + [anon_sym_char] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_default] = ACTIONS(2010), + [anon_sym_enum] = ACTIONS(2010), + [anon_sym_fn] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_impl] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_mod] = ACTIONS(2010), + [anon_sym_pub] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_struct] = ACTIONS(2010), + [anon_sym_trait] = ACTIONS(2010), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_union] = ACTIONS(2010), + [anon_sym_unsafe] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2008), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_yield] = ACTIONS(2010), + [anon_sym_move] = ACTIONS(2010), + [sym_integer_literal] = ACTIONS(2008), + [aux_sym_string_literal_token1] = ACTIONS(2008), + [sym_char_literal] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2010), + [sym_super] = ACTIONS(2010), + [sym_crate] = ACTIONS(2010), + [sym_metavariable] = ACTIONS(2008), + [sym_raw_string_literal] = ACTIONS(2008), + [sym_float_literal] = ACTIONS(2008), + [sym_block_comment] = ACTIONS(3), + }, + [488] = { + [ts_builtin_sym_end] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_macro_rules_BANG] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2014), + [anon_sym_i8] = ACTIONS(2014), + [anon_sym_u16] = ACTIONS(2014), + [anon_sym_i16] = ACTIONS(2014), + [anon_sym_u32] = ACTIONS(2014), + [anon_sym_i32] = ACTIONS(2014), + [anon_sym_u64] = ACTIONS(2014), + [anon_sym_i64] = ACTIONS(2014), + [anon_sym_u128] = ACTIONS(2014), + [anon_sym_i128] = ACTIONS(2014), + [anon_sym_isize] = ACTIONS(2014), + [anon_sym_usize] = ACTIONS(2014), + [anon_sym_f32] = ACTIONS(2014), + [anon_sym_f64] = ACTIONS(2014), + [anon_sym_bool] = ACTIONS(2014), + [anon_sym_str] = ACTIONS(2014), + [anon_sym_char] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_async] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_default] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_impl] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_mod] = ACTIONS(2014), + [anon_sym_pub] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2014), + [anon_sym_trait] = ACTIONS(2014), + [anon_sym_type] = ACTIONS(2014), + [anon_sym_union] = ACTIONS(2014), + [anon_sym_unsafe] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_DOT_DOT] = ACTIONS(2012), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_yield] = ACTIONS(2014), + [anon_sym_move] = ACTIONS(2014), + [sym_integer_literal] = ACTIONS(2012), + [aux_sym_string_literal_token1] = ACTIONS(2012), + [sym_char_literal] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2014), + [sym_super] = ACTIONS(2014), + [sym_crate] = ACTIONS(2014), + [sym_metavariable] = ACTIONS(2012), + [sym_raw_string_literal] = ACTIONS(2012), + [sym_float_literal] = ACTIONS(2012), + [sym_block_comment] = ACTIONS(3), + }, + [489] = { + [ts_builtin_sym_end] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_macro_rules_BANG] = ACTIONS(2016), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2018), + [anon_sym_i8] = ACTIONS(2018), + [anon_sym_u16] = ACTIONS(2018), + [anon_sym_i16] = ACTIONS(2018), + [anon_sym_u32] = ACTIONS(2018), + [anon_sym_i32] = ACTIONS(2018), + [anon_sym_u64] = ACTIONS(2018), + [anon_sym_i64] = ACTIONS(2018), + [anon_sym_u128] = ACTIONS(2018), + [anon_sym_i128] = ACTIONS(2018), + [anon_sym_isize] = ACTIONS(2018), + [anon_sym_usize] = ACTIONS(2018), + [anon_sym_f32] = ACTIONS(2018), + [anon_sym_f64] = ACTIONS(2018), + [anon_sym_bool] = ACTIONS(2018), + [anon_sym_str] = ACTIONS(2018), + [anon_sym_char] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_default] = ACTIONS(2018), + [anon_sym_enum] = ACTIONS(2018), + [anon_sym_fn] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_impl] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_mod] = ACTIONS(2018), + [anon_sym_pub] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_struct] = ACTIONS(2018), + [anon_sym_trait] = ACTIONS(2018), + [anon_sym_type] = ACTIONS(2018), + [anon_sym_union] = ACTIONS(2018), + [anon_sym_unsafe] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_DOT_DOT] = ACTIONS(2016), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_yield] = ACTIONS(2018), + [anon_sym_move] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2016), [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), + [sym_char_literal] = ACTIONS(2016), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), - [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_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), + [sym_metavariable] = ACTIONS(2016), + [sym_raw_string_literal] = ACTIONS(2016), + [sym_float_literal] = ACTIONS(2016), [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(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), - [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(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_raw_string_literal] = ACTIONS(2043), - [sym_float_literal] = ACTIONS(2043), + [490] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_RBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_u8] = ACTIONS(2020), + [anon_sym_i8] = ACTIONS(2020), + [anon_sym_u16] = ACTIONS(2020), + [anon_sym_i16] = ACTIONS(2020), + [anon_sym_u32] = ACTIONS(2020), + [anon_sym_i32] = ACTIONS(2020), + [anon_sym_u64] = ACTIONS(2020), + [anon_sym_i64] = ACTIONS(2020), + [anon_sym_u128] = ACTIONS(2020), + [anon_sym_i128] = ACTIONS(2020), + [anon_sym_isize] = ACTIONS(2020), + [anon_sym_usize] = ACTIONS(2020), + [anon_sym_f32] = ACTIONS(2020), + [anon_sym_f64] = ACTIONS(2020), + [anon_sym_bool] = ACTIONS(2020), + [anon_sym_str] = ACTIONS(2020), + [anon_sym_char] = ACTIONS(2020), + [aux_sym__non_special_token_token1] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_as] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(2020), + [anon_sym_await] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_fn] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_impl] = ACTIONS(2020), + [anon_sym_let] = ACTIONS(2020), + [anon_sym_loop] = ACTIONS(2020), + [anon_sym_match] = ACTIONS(2020), + [anon_sym_mod] = ACTIONS(2020), + [anon_sym_pub] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_trait] = ACTIONS(2020), + [anon_sym_type] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_unsafe] = ACTIONS(2020), + [anon_sym_use] = ACTIONS(2020), + [anon_sym_where] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [sym_mutable_specifier] = ACTIONS(2020), + [sym_integer_literal] = ACTIONS(2037), + [aux_sym_string_literal_token1] = ACTIONS(2040), + [sym_char_literal] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2020), + [sym_super] = ACTIONS(2020), + [sym_crate] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2046), + [sym_raw_string_literal] = ACTIONS(2037), + [sym_float_literal] = ACTIONS(2037), [sym_block_comment] = ACTIONS(3), }, - [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(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(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), + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_RBRACK] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [aux_sym__non_special_token_token1] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_where] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [sym_mutable_specifier] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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), + [492] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2069), + [anon_sym_i8] = ACTIONS(2069), + [anon_sym_u16] = ACTIONS(2069), + [anon_sym_i16] = ACTIONS(2069), + [anon_sym_u32] = ACTIONS(2069), + [anon_sym_i32] = ACTIONS(2069), + [anon_sym_u64] = ACTIONS(2069), + [anon_sym_i64] = ACTIONS(2069), + [anon_sym_u128] = ACTIONS(2069), + [anon_sym_i128] = ACTIONS(2069), + [anon_sym_isize] = ACTIONS(2069), + [anon_sym_usize] = ACTIONS(2069), + [anon_sym_f32] = ACTIONS(2069), + [anon_sym_f64] = ACTIONS(2069), + [anon_sym_bool] = ACTIONS(2069), + [anon_sym_str] = ACTIONS(2069), + [anon_sym_char] = ACTIONS(2069), + [aux_sym__non_special_token_token1] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_as] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_await] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_impl] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_mod] = ACTIONS(2069), + [anon_sym_pub] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_where] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [sym_mutable_specifier] = ACTIONS(2069), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2069), + [sym_super] = ACTIONS(2069), + [sym_crate] = ACTIONS(2069), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [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(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(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), + [493] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [aux_sym__non_special_token_token1] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_where] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [sym_mutable_specifier] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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), + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [aux_sym__non_special_token_token1] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_where] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [sym_mutable_specifier] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [sym_block_comment] = ACTIONS(3), + }, + [495] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [aux_sym__non_special_token_token1] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_where] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [sym_mutable_specifier] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [sym_block_comment] = ACTIONS(3), + }, + [496] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [aux_sym__non_special_token_token1] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_where] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [sym_mutable_specifier] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [sym_block_comment] = ACTIONS(3), + }, + [498] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(493), [sym_identifier] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2083), - [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), [anon_sym_u8] = ACTIONS(2081), [anon_sym_i8] = ACTIONS(2081), [anon_sym_u16] = ACTIONS(2081), @@ -61803,1315 +62900,941 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), [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_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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(2083), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [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(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), - }, - [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_DOLLAR] = ACTIONS(2012), - [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(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [499] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2059), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_crate] = ACTIONS(2083), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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), + [500] = { + [sym_attribute_item] = STATE(556), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_match_arm] = STATE(509), + [sym_last_match_arm] = STATE(2512), + [sym_match_pattern] = STATE(2347), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2007), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_enum_variant_list_repeat1] = STATE(556), + [aux_sym_match_block_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(383), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, - [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(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(2085), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [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(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [501] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [aux_sym__non_special_token_token1] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_where] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [sym_mutable_specifier] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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), + [502] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [aux_sym__non_special_token_token1] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_where] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [sym_mutable_specifier] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [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(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(2089), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [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(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [503] = { + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_RBRACK] = ACTIONS(2091), + [anon_sym_DOLLAR] = ACTIONS(2099), + [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(2102), + [aux_sym_string_literal_token1] = ACTIONS(2105), + [sym_char_literal] = ACTIONS(2102), + [anon_sym_true] = ACTIONS(2108), + [anon_sym_false] = ACTIONS(2108), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_crate] = ACTIONS(2085), + [sym_raw_string_literal] = ACTIONS(2102), + [sym_float_literal] = ACTIONS(2102), [sym_block_comment] = ACTIONS(3), }, - [494] = { + [504] = { [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(585), - [sym_boolean_literal] = STATE(585), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), [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(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_identifier] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_RBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2111), + [anon_sym_i8] = ACTIONS(2111), + [anon_sym_u16] = ACTIONS(2111), + [anon_sym_i16] = ACTIONS(2111), + [anon_sym_u32] = ACTIONS(2111), + [anon_sym_i32] = ACTIONS(2111), + [anon_sym_u64] = ACTIONS(2111), + [anon_sym_i64] = ACTIONS(2111), + [anon_sym_u128] = ACTIONS(2111), + [anon_sym_i128] = ACTIONS(2111), + [anon_sym_isize] = ACTIONS(2111), + [anon_sym_usize] = ACTIONS(2111), + [anon_sym_f32] = ACTIONS(2111), + [anon_sym_f64] = ACTIONS(2111), + [anon_sym_bool] = ACTIONS(2111), + [anon_sym_str] = ACTIONS(2111), + [anon_sym_char] = ACTIONS(2111), + [aux_sym__non_special_token_token1] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_fn] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_impl] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_loop] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_mod] = ACTIONS(2111), + [anon_sym_pub] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_trait] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_use] = ACTIONS(2111), + [anon_sym_where] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [sym_mutable_specifier] = ACTIONS(2111), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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(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_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2012), - [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(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), - }, - [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(2095), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [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(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), - }, - [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(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(2089), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [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(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), + [505] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(497), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2115), + [anon_sym_i8] = ACTIONS(2115), + [anon_sym_u16] = ACTIONS(2115), + [anon_sym_i16] = ACTIONS(2115), + [anon_sym_u32] = ACTIONS(2115), + [anon_sym_i32] = ACTIONS(2115), + [anon_sym_u64] = ACTIONS(2115), + [anon_sym_i64] = ACTIONS(2115), + [anon_sym_u128] = ACTIONS(2115), + [anon_sym_i128] = ACTIONS(2115), + [anon_sym_isize] = ACTIONS(2115), + [anon_sym_usize] = ACTIONS(2115), + [anon_sym_f32] = ACTIONS(2115), + [anon_sym_f64] = ACTIONS(2115), + [anon_sym_bool] = ACTIONS(2115), + [anon_sym_str] = ACTIONS(2115), + [anon_sym_char] = ACTIONS(2115), + [aux_sym__non_special_token_token1] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_default] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_impl] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_loop] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_mod] = ACTIONS(2115), + [anon_sym_pub] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_trait] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_use] = ACTIONS(2115), + [anon_sym_where] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [sym_mutable_specifier] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2115), + [sym_super] = ACTIONS(2115), + [sym_crate] = ACTIONS(2115), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [499] = { - [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(2095), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2099), - [anon_sym_i8] = ACTIONS(2099), - [anon_sym_u16] = ACTIONS(2099), - [anon_sym_i16] = ACTIONS(2099), - [anon_sym_u32] = ACTIONS(2099), - [anon_sym_i32] = ACTIONS(2099), - [anon_sym_u64] = ACTIONS(2099), - [anon_sym_i64] = ACTIONS(2099), - [anon_sym_u128] = ACTIONS(2099), - [anon_sym_i128] = ACTIONS(2099), - [anon_sym_isize] = ACTIONS(2099), - [anon_sym_usize] = ACTIONS(2099), - [anon_sym_f32] = ACTIONS(2099), - [anon_sym_f64] = ACTIONS(2099), - [anon_sym_bool] = ACTIONS(2099), - [anon_sym_str] = ACTIONS(2099), - [anon_sym_char] = ACTIONS(2099), - [aux_sym__non_special_token_token1] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2099), - [anon_sym_as] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [anon_sym_fn] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_impl] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_loop] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_mod] = ACTIONS(2099), - [anon_sym_pub] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2099), - [anon_sym_trait] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_union] = ACTIONS(2099), - [anon_sym_unsafe] = ACTIONS(2099), - [anon_sym_use] = ACTIONS(2099), - [anon_sym_where] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [sym_mutable_specifier] = ACTIONS(2099), - [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(2099), - [sym_super] = ACTIONS(2099), - [sym_crate] = ACTIONS(2099), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [506] = { + [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(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_pattern_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2117), + [anon_sym_i8] = ACTIONS(2117), + [anon_sym_u16] = ACTIONS(2117), + [anon_sym_i16] = ACTIONS(2117), + [anon_sym_u32] = ACTIONS(2117), + [anon_sym_i32] = ACTIONS(2117), + [anon_sym_u64] = ACTIONS(2117), + [anon_sym_i64] = ACTIONS(2117), + [anon_sym_u128] = ACTIONS(2117), + [anon_sym_i128] = ACTIONS(2117), + [anon_sym_isize] = ACTIONS(2117), + [anon_sym_usize] = ACTIONS(2117), + [anon_sym_f32] = ACTIONS(2117), + [anon_sym_f64] = ACTIONS(2117), + [anon_sym_bool] = ACTIONS(2117), + [anon_sym_str] = ACTIONS(2117), + [anon_sym_char] = ACTIONS(2117), + [aux_sym__non_special_token_token1] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2117), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_fn] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_impl] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_mod] = ACTIONS(2117), + [anon_sym_pub] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_trait] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_unsafe] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_where] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [sym_mutable_specifier] = ACTIONS(2117), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_crate] = ACTIONS(2117), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [500] = { - [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(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), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_u8] = ACTIONS(2110), - [anon_sym_i8] = ACTIONS(2110), - [anon_sym_u16] = ACTIONS(2110), - [anon_sym_i16] = ACTIONS(2110), - [anon_sym_u32] = ACTIONS(2110), - [anon_sym_i32] = ACTIONS(2110), - [anon_sym_u64] = ACTIONS(2110), - [anon_sym_i64] = ACTIONS(2110), - [anon_sym_u128] = ACTIONS(2110), - [anon_sym_i128] = ACTIONS(2110), - [anon_sym_isize] = ACTIONS(2110), - [anon_sym_usize] = ACTIONS(2110), - [anon_sym_f32] = ACTIONS(2110), - [anon_sym_f64] = ACTIONS(2110), - [anon_sym_bool] = ACTIONS(2110), - [anon_sym_str] = ACTIONS(2110), - [anon_sym_char] = ACTIONS(2110), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_union] = ACTIONS(2116), - [anon_sym_POUND] = ACTIONS(2119), - [anon_sym_ref] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_COLON_COLON] = ACTIONS(2128), - [anon_sym__] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2134), - [sym_mutable_specifier] = ACTIONS(2137), - [anon_sym_DOT_DOT] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2143), - [sym_integer_literal] = ACTIONS(2146), - [aux_sym_string_literal_token1] = ACTIONS(2149), - [sym_char_literal] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2155), - [sym_super] = ACTIONS(2155), - [sym_crate] = ACTIONS(2155), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2146), - [sym_float_literal] = ACTIONS(2146), + [507] = { + [sym_attribute_item] = STATE(556), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_match_arm] = STATE(509), + [sym_last_match_arm] = STATE(2333), + [sym_match_pattern] = STATE(2347), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2007), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_enum_variant_list_repeat1] = STATE(556), + [aux_sym_match_block_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(383), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, - [501] = { - [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(2167), - [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), + [508] = { + [sym_attribute_item] = STATE(556), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_match_arm] = STATE(509), + [sym_last_match_arm] = STATE(2447), + [sym_match_pattern] = STATE(2347), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2007), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_enum_variant_list_repeat1] = STATE(556), + [aux_sym_match_block_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(383), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, - [502] = { - [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(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [509] = { + [sym_attribute_item] = STATE(554), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_match_arm] = STATE(509), + [sym_match_pattern] = STATE(2536), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2007), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_enum_variant_list_repeat1] = STATE(554), + [aux_sym_match_block_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2128), + [anon_sym_i8] = ACTIONS(2128), + [anon_sym_u16] = ACTIONS(2128), + [anon_sym_i16] = ACTIONS(2128), + [anon_sym_u32] = ACTIONS(2128), + [anon_sym_i32] = ACTIONS(2128), + [anon_sym_u64] = ACTIONS(2128), + [anon_sym_i64] = ACTIONS(2128), + [anon_sym_u128] = ACTIONS(2128), + [anon_sym_i128] = ACTIONS(2128), + [anon_sym_isize] = ACTIONS(2128), + [anon_sym_usize] = ACTIONS(2128), + [anon_sym_f32] = ACTIONS(2128), + [anon_sym_f64] = ACTIONS(2128), + [anon_sym_bool] = ACTIONS(2128), + [anon_sym_str] = ACTIONS(2128), + [anon_sym_char] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_ref] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym__] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2152), + [sym_mutable_specifier] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2164), + [aux_sym_string_literal_token1] = ACTIONS(2167), + [sym_char_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2170), + [anon_sym_false] = ACTIONS(2170), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_crate] = ACTIONS(2173), + [sym_metavariable] = ACTIONS(2176), + [sym_raw_string_literal] = ACTIONS(2164), + [sym_float_literal] = ACTIONS(2164), [sym_block_comment] = ACTIONS(3), }, - [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), + [510] = { + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = 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(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, - [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(2195), - [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), - }, - [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), + [511] = { + [sym_delim_token_tree] = STATE(538), + [sym__delim_tokens] = STATE(538), + [sym__non_delim_token] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(538), [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), [anon_sym_RBRACK] = ACTIONS(2199), [anon_sym_DOLLAR] = ACTIONS(2201), [anon_sym_u8] = ACTIONS(2197), @@ -63161,106 +63884,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2197), [sym_super] = ACTIONS(2197), [sym_crate] = ACTIONS(2197), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [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(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), - }, - [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), + [512] = { + [sym_delim_token_tree] = STATE(551), + [sym__delim_tokens] = STATE(551), + [sym__non_delim_token] = STATE(551), + [sym__literal] = STATE(551), + [sym_string_literal] = STATE(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(551), [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_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2187), [anon_sym_DOLLAR] = ACTIONS(2207), [anon_sym_u8] = ACTIONS(2203), [anon_sym_i8] = ACTIONS(2203), @@ -63309,33 +63958,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2203), [sym_super] = ACTIONS(2203), [sym_crate] = ACTIONS(2203), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [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), + [513] = { + [sym_token_tree] = STATE(550), + [sym_token_repetition] = STATE(550), + [sym__literal] = STATE(550), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(550), [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_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), [anon_sym_u8] = ACTIONS(2209), [anon_sym_i8] = ACTIONS(2209), [anon_sym_u16] = ACTIONS(2209), @@ -63383,476 +64031,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2209), [anon_sym_while] = ACTIONS(2209), [sym_mutable_specifier] = ACTIONS(2209), - [sym_integer_literal] = ACTIONS(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_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2209), [sym_super] = ACTIONS(2209), [sym_crate] = ACTIONS(2209), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [sym_metavariable] = ACTIONS(2221), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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), + [514] = { + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(552), + [sym_identifier] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2181), [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(2217), - [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), - }, - [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(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [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), - [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(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_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2225), + [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(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_crate] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, - [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(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [515] = { + [sym_token_tree] = STATE(549), + [sym_token_repetition] = STATE(549), + [sym__literal] = STATE(549), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(549), + [sym_identifier] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(2229), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2217), - [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), + [516] = { + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [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), + [517] = { + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), [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(2225), - [sym_super] = ACTIONS(2225), - [sym_crate] = ACTIONS(2225), - [sym_metavariable] = ACTIONS(2229), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, - [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), + [518] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(490), [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_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), [anon_sym_u8] = ACTIONS(2231), [anon_sym_i8] = ACTIONS(2231), [anon_sym_u16] = ACTIONS(2231), @@ -63900,108 +64401,108 @@ 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(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_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), [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_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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(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), - [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(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(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2237), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [519] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [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), + [520] = { + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(516), [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), [anon_sym_u8] = ACTIONS(2239), [anon_sym_i8] = ACTIONS(2239), [anon_sym_u16] = ACTIONS(2239), @@ -64049,180 +64550,32 @@ 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(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_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2239), [sym_super] = ACTIONS(2239), [sym_crate] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, - [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(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), - }, - [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(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2195), - [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_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, - [520] = { - [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), + [521] = { + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(517), [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_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2187), [anon_sym_DOLLAR] = ACTIONS(2247), [anon_sym_u8] = ACTIONS(2245), [anon_sym_i8] = ACTIONS(2245), @@ -64271,33 +64624,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2245), [sym_super] = ACTIONS(2245), [sym_crate] = ACTIONS(2245), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, - [521] = { - [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), + [522] = { + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(510), [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_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2251), [anon_sym_u8] = ACTIONS(2249), [anon_sym_i8] = ACTIONS(2249), [anon_sym_u16] = ACTIONS(2249), @@ -64345,625 +64698,698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), [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(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(2255), - [sym_super] = ACTIONS(2255), - [sym_crate] = ACTIONS(2255), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [523] = { - [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(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(2261), - [sym_super] = ACTIONS(2261), - [sym_crate] = ACTIONS(2261), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, [524] = { - [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(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(528), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [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(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [525] = { - [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), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(529), + [sym_identifier] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2181), [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(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2261), + [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(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [526] = { - [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_delim_token_tree] = STATE(530), + [sym__delim_tokens] = STATE(530), + [sym__non_delim_token] = STATE(530), + [sym__literal] = STATE(530), + [sym_string_literal] = STATE(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(530), + [sym_identifier] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2265), + [anon_sym_u8] = ACTIONS(2263), + [anon_sym_i8] = ACTIONS(2263), + [anon_sym_u16] = ACTIONS(2263), + [anon_sym_i16] = ACTIONS(2263), + [anon_sym_u32] = ACTIONS(2263), + [anon_sym_i32] = ACTIONS(2263), + [anon_sym_u64] = ACTIONS(2263), + [anon_sym_i64] = ACTIONS(2263), + [anon_sym_u128] = ACTIONS(2263), + [anon_sym_i128] = ACTIONS(2263), + [anon_sym_isize] = ACTIONS(2263), + [anon_sym_usize] = ACTIONS(2263), + [anon_sym_f32] = ACTIONS(2263), + [anon_sym_f64] = ACTIONS(2263), + [anon_sym_bool] = ACTIONS(2263), + [anon_sym_str] = ACTIONS(2263), + [anon_sym_char] = ACTIONS(2263), + [aux_sym__non_special_token_token1] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_as] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [anon_sym_fn] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_impl] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_loop] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2263), + [anon_sym_mod] = ACTIONS(2263), + [anon_sym_pub] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2263), + [anon_sym_trait] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_union] = ACTIONS(2263), + [anon_sym_unsafe] = ACTIONS(2263), + [anon_sym_use] = ACTIONS(2263), + [anon_sym_where] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [sym_mutable_specifier] = ACTIONS(2263), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_crate] = ACTIONS(2263), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [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_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [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(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [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(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(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [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_delim_token_tree] = STATE(503), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2269), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), + [sym_block_comment] = ACTIONS(3), + }, + [531] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + [sym_block_comment] = ACTIONS(3), + }, + [532] = { + [sym_token_tree] = STATE(527), + [sym_token_repetition] = STATE(527), + [sym__literal] = STATE(527), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(527), [sym_identifier] = ACTIONS(2271), - [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_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), [anon_sym_u8] = ACTIONS(2271), [anon_sym_i8] = ACTIONS(2271), [anon_sym_u16] = ACTIONS(2271), @@ -65011,180 +65437,107 @@ 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(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_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2271), [sym_super] = ACTIONS(2271), [sym_crate] = ACTIONS(2271), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, - [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(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), - [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(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(2173), - [sym_float_literal] = ACTIONS(2173), + [sym_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [532] = { - [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(2279), - [sym_super] = ACTIONS(2279), - [sym_crate] = ACTIONS(2279), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [533] = { + [sym_token_tree] = STATE(531), + [sym_token_repetition] = STATE(531), + [sym__literal] = STATE(531), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_crate] = ACTIONS(2277), + [sym_metavariable] = ACTIONS(2281), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [533] = { - [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), + [534] = { + [sym_token_tree] = STATE(523), + [sym_token_repetition] = STATE(523), + [sym__literal] = STATE(523), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(523), [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(2191), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), [anon_sym_u8] = ACTIONS(2283), [anon_sym_i8] = ACTIONS(2283), [anon_sym_u16] = ACTIONS(2283), @@ -65232,773 +65585,626 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2283), [anon_sym_while] = ACTIONS(2283), [sym_mutable_specifier] = ACTIONS(2283), - [sym_integer_literal] = ACTIONS(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_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), [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(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(2289), - [sym_super] = ACTIONS(2289), - [sym_crate] = ACTIONS(2289), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [sym_metavariable] = ACTIONS(2285), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, [535] = { - [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(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_token_tree] = STATE(519), + [sym_token_repetition] = STATE(519), + [sym__literal] = STATE(519), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2287), + [sym_super] = ACTIONS(2287), + [sym_crate] = ACTIONS(2287), + [sym_metavariable] = ACTIONS(2289), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, [536] = { - [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(2167), - [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_delim_token_tree] = STATE(503), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2291), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [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), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), [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(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [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), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), [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), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [539] = { - [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), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), [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(2299), - [sym_super] = ACTIONS(2299), - [sym_crate] = ACTIONS(2299), - [sym_metavariable] = ACTIONS(2303), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [540] = { - [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(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [541] = { - [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(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_token_tree] = STATE(518), + [sym_token_repetition] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(518), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(2297), + [anon_sym_i8] = ACTIONS(2297), + [anon_sym_u16] = ACTIONS(2297), + [anon_sym_i16] = ACTIONS(2297), + [anon_sym_u32] = ACTIONS(2297), + [anon_sym_i32] = ACTIONS(2297), + [anon_sym_u64] = ACTIONS(2297), + [anon_sym_i64] = ACTIONS(2297), + [anon_sym_u128] = ACTIONS(2297), + [anon_sym_i128] = ACTIONS(2297), + [anon_sym_isize] = ACTIONS(2297), + [anon_sym_usize] = ACTIONS(2297), + [anon_sym_f32] = ACTIONS(2297), + [anon_sym_f64] = ACTIONS(2297), + [anon_sym_bool] = ACTIONS(2297), + [anon_sym_str] = ACTIONS(2297), + [anon_sym_char] = ACTIONS(2297), + [aux_sym__non_special_token_token1] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_impl] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_mod] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_where] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [sym_mutable_specifier] = ACTIONS(2297), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_crate] = ACTIONS(2297), + [sym_metavariable] = ACTIONS(2299), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, [542] = { - [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(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2187), + [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(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_crate] = ACTIONS(2301), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [543] = { - [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(2179), - [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), - }, - [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_delim_token_tree] = STATE(540), + [sym__delim_tokens] = STATE(540), + [sym__non_delim_token] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(540), [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2199), [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2307), [anon_sym_u8] = ACTIONS(2305), [anon_sym_i8] = ACTIONS(2305), [anon_sym_u16] = ACTIONS(2305), @@ -66045,1381 +66251,1554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_mutable_specifier] = ACTIONS(2305), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), [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_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, - [545] = { - [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(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), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(548), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(2181), [anon_sym_RPAREN] = ACTIONS(2311), - [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_pub] = ACTIONS(2315), - [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(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(2321), - [sym_metavariable] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2313), + [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(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_crate] = ACTIONS(2309), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), + [sym_block_comment] = ACTIONS(3), + }, + [545] = { + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [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_delim_token_tree] = STATE(545), + [sym__delim_tokens] = STATE(545), + [sym__non_delim_token] = STATE(545), + [sym__literal] = STATE(545), + [sym_string_literal] = STATE(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2317), + [anon_sym_u8] = ACTIONS(2315), + [anon_sym_i8] = ACTIONS(2315), + [anon_sym_u16] = ACTIONS(2315), + [anon_sym_i16] = ACTIONS(2315), + [anon_sym_u32] = ACTIONS(2315), + [anon_sym_i32] = ACTIONS(2315), + [anon_sym_u64] = ACTIONS(2315), + [anon_sym_i64] = ACTIONS(2315), + [anon_sym_u128] = ACTIONS(2315), + [anon_sym_i128] = ACTIONS(2315), + [anon_sym_isize] = ACTIONS(2315), + [anon_sym_usize] = ACTIONS(2315), + [anon_sym_f32] = ACTIONS(2315), + [anon_sym_f64] = ACTIONS(2315), + [anon_sym_bool] = ACTIONS(2315), + [anon_sym_str] = ACTIONS(2315), + [anon_sym_char] = ACTIONS(2315), + [aux_sym__non_special_token_token1] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_async] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_default] = ACTIONS(2315), + [anon_sym_enum] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_impl] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_mod] = ACTIONS(2315), + [anon_sym_pub] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_static] = ACTIONS(2315), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_trait] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2315), + [anon_sym_union] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_where] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [sym_mutable_specifier] = ACTIONS(2315), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2315), + [sym_super] = ACTIONS(2315), + [sym_crate] = ACTIONS(2315), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [547] = { - [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(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_delim_token_tree] = STATE(537), + [sym__delim_tokens] = STATE(537), + [sym__non_delim_token] = STATE(537), + [sym__literal] = STATE(537), + [sym_string_literal] = STATE(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(537), + [sym_identifier] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_u8] = ACTIONS(2319), + [anon_sym_i8] = ACTIONS(2319), + [anon_sym_u16] = ACTIONS(2319), + [anon_sym_i16] = ACTIONS(2319), + [anon_sym_u32] = ACTIONS(2319), + [anon_sym_i32] = ACTIONS(2319), + [anon_sym_u64] = ACTIONS(2319), + [anon_sym_i64] = ACTIONS(2319), + [anon_sym_u128] = ACTIONS(2319), + [anon_sym_i128] = ACTIONS(2319), + [anon_sym_isize] = ACTIONS(2319), + [anon_sym_usize] = ACTIONS(2319), + [anon_sym_f32] = ACTIONS(2319), + [anon_sym_f64] = ACTIONS(2319), + [anon_sym_bool] = ACTIONS(2319), + [anon_sym_str] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [aux_sym__non_special_token_token1] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_enum] = ACTIONS(2319), + [anon_sym_fn] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_impl] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_loop] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_mod] = ACTIONS(2319), + [anon_sym_pub] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2319), + [anon_sym_trait] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_union] = ACTIONS(2319), + [anon_sym_unsafe] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_where] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [sym_mutable_specifier] = ACTIONS(2319), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2319), + [sym_super] = ACTIONS(2319), + [sym_crate] = ACTIONS(2319), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [548] = { - [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(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(856), - [anon_sym_RPAREN] = ACTIONS(2323), - [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_pub] = ACTIONS(2315), - [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(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(2321), - [sym_metavariable] = ACTIONS(878), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [549] = { - [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(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(856), - [anon_sym_RPAREN] = ACTIONS(2325), - [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_pub] = ACTIONS(2315), - [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(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(2321), - [sym_metavariable] = ACTIONS(878), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2233), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, [550] = { - [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(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(856), - [anon_sym_RPAREN] = ACTIONS(2327), - [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_pub] = ACTIONS(2315), - [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(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(2321), - [sym_metavariable] = ACTIONS(878), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(593), + [sym_boolean_literal] = STATE(593), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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(2061), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, [551] = { - [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(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(856), - [anon_sym_RPAREN] = ACTIONS(2329), - [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_pub] = ACTIONS(2315), - [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(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(2321), - [sym_metavariable] = ACTIONS(878), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [552] = { - [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(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(856), - [anon_sym_RPAREN] = ACTIONS(2331), - [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_pub] = ACTIONS(2315), - [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(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(2321), - [sym_metavariable] = ACTIONS(878), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [aux_sym__non_special_token_token1] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_where] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [sym_mutable_specifier] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [553] = { - [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(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(856), - [anon_sym_RPAREN] = ACTIONS(2333), - [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_pub] = ACTIONS(2315), - [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(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(2321), - [sym_metavariable] = ACTIONS(878), + [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(628), + [sym_boolean_literal] = STATE(628), + [aux_sym_delim_token_tree_repeat1] = STATE(536), + [sym_identifier] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2325), + [anon_sym_u8] = ACTIONS(2323), + [anon_sym_i8] = ACTIONS(2323), + [anon_sym_u16] = ACTIONS(2323), + [anon_sym_i16] = ACTIONS(2323), + [anon_sym_u32] = ACTIONS(2323), + [anon_sym_i32] = ACTIONS(2323), + [anon_sym_u64] = ACTIONS(2323), + [anon_sym_i64] = ACTIONS(2323), + [anon_sym_u128] = ACTIONS(2323), + [anon_sym_i128] = ACTIONS(2323), + [anon_sym_isize] = ACTIONS(2323), + [anon_sym_usize] = ACTIONS(2323), + [anon_sym_f32] = ACTIONS(2323), + [anon_sym_f64] = ACTIONS(2323), + [anon_sym_bool] = ACTIONS(2323), + [anon_sym_str] = ACTIONS(2323), + [anon_sym_char] = ACTIONS(2323), + [aux_sym__non_special_token_token1] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_as] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2323), + [anon_sym_enum] = ACTIONS(2323), + [anon_sym_fn] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_impl] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(2323), + [anon_sym_loop] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_mod] = ACTIONS(2323), + [anon_sym_pub] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_static] = ACTIONS(2323), + [anon_sym_struct] = ACTIONS(2323), + [anon_sym_trait] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_union] = ACTIONS(2323), + [anon_sym_unsafe] = ACTIONS(2323), + [anon_sym_use] = ACTIONS(2323), + [anon_sym_where] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [sym_mutable_specifier] = ACTIONS(2323), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2323), + [sym_super] = ACTIONS(2323), + [sym_crate] = ACTIONS(2323), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), [sym_block_comment] = ACTIONS(3), }, [554] = { - [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(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(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_pub] = ACTIONS(2315), - [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), + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_match_pattern] = STATE(2509), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2007), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(383), + [anon_sym_ref] = ACTIONS(701), [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(2321), - [sym_metavariable] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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(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_pub] = ACTIONS(2315), - [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), + [sym_attribute_item] = STATE(569), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(686), + [sym__type] = STATE(1847), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(569), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(699), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [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), + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_match_pattern] = STATE(2446), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2007), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(383), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [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(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(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_pub] = ACTIONS(2315), - [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), + [sym_attribute_item] = STATE(563), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(704), + [sym__type] = STATE(1936), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(563), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [558] = { - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), + [sym_attribute_item] = STATE(563), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(704), + [sym__type] = STATE(1936), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(563), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), [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), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), [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), + [sym_attribute_item] = STATE(563), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(704), + [sym__type] = STATE(1936), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(563), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [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), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [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_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [560] = { - [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), + [sym_attribute_item] = STATE(563), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(704), + [sym__type] = STATE(1936), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(563), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), [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_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [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), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [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_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [561] = { - [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), + [sym_attribute_item] = STATE(563), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(704), + [sym__type] = STATE(1936), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(563), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [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), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [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_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), [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), + [sym_attribute_item] = STATE(563), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(704), + [sym__type] = STATE(1936), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(563), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [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), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [563] = { - [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(912), - [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_attribute_item] = STATE(1140), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(695), + [sym__type] = STATE(2094), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(1140), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [564] = { + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1769), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_COMMA] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), + [sym_block_comment] = ACTIONS(3), + }, + [565] = { [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(2359), [anon_sym_RPAREN] = ACTIONS(2359), @@ -67427,6 +67806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2359), [anon_sym_LBRACK] = ACTIONS(2359), [anon_sym_RBRACK] = ACTIONS(2359), + [anon_sym_COLON] = ACTIONS(2361), [anon_sym_DOLLAR] = ACTIONS(2357), [anon_sym_u8] = ACTIONS(2357), [anon_sym_i8] = ACTIONS(2357), @@ -67480,7 +67860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2359), [anon_sym_true] = ACTIONS(2357), [anon_sym_false] = ACTIONS(2357), - [sym_line_comment] = ACTIONS(912), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2357), [sym_super] = ACTIONS(2357), [sym_crate] = ACTIONS(2357), @@ -67489,217 +67869,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2359), [sym_block_comment] = ACTIONS(3), }, - [565] = { - [sym_identifier] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), + [566] = { + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1828), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_RBRACK] = ACTIONS(795), + [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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), + [sym_block_comment] = ACTIONS(3), + }, + [567] = { + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1797), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), [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(912), - [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), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_COMMA] = ACTIONS(821), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, - [566] = { - [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), + [568] = { + [sym_attribute_item] = STATE(563), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(704), + [sym__type] = STATE(1936), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(563), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [569] = { + [sym_attribute_item] = STATE(1140), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym_visibility_modifier] = STATE(693), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_enum_variant_list_repeat1] = STATE(1140), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [570] = { + [sym_parameter] = STATE(1962), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1790), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), - }, - [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(2365), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, - [568] = { + [571] = { [sym_identifier] = ACTIONS(2371), [anon_sym_LPAREN] = ACTIONS(2373), [anon_sym_RPAREN] = ACTIONS(2373), @@ -67760,7 +68285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2373), [anon_sym_true] = ACTIONS(2371), [anon_sym_false] = ACTIONS(2371), - [sym_line_comment] = ACTIONS(912), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2371), [sym_super] = ACTIONS(2371), [sym_crate] = ACTIONS(2371), @@ -67769,147 +68294,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2373), [sym_block_comment] = ACTIONS(3), }, - [569] = { - [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), + [572] = { [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), + [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(1069), + [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), }, - [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), + [573] = { + [sym_identifier] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2381), [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(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), + [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(1069), + [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), }, - [571] = { + [574] = { [sym_identifier] = ACTIONS(2383), [anon_sym_LPAREN] = ACTIONS(2385), [anon_sym_RPAREN] = ACTIONS(2385), @@ -67970,7 +68495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2385), [anon_sym_true] = ACTIONS(2383), [anon_sym_false] = ACTIONS(2383), - [sym_line_comment] = ACTIONS(912), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2383), [sym_super] = ACTIONS(2383), [sym_crate] = ACTIONS(2383), @@ -67979,7 +68504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2385), [sym_block_comment] = ACTIONS(3), }, - [572] = { + [575] = { [sym_identifier] = ACTIONS(2387), [anon_sym_LPAREN] = ACTIONS(2389), [anon_sym_RPAREN] = ACTIONS(2389), @@ -68040,7 +68565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2389), [anon_sym_true] = ACTIONS(2387), [anon_sym_false] = ACTIONS(2387), - [sym_line_comment] = ACTIONS(912), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2387), [sym_super] = ACTIONS(2387), [sym_crate] = ACTIONS(2387), @@ -68049,77 +68574,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2389), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [576] = { + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(2391), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, - [574] = { + [577] = { [sym_identifier] = ACTIONS(2393), [anon_sym_LPAREN] = ACTIONS(2395), [anon_sym_RPAREN] = ACTIONS(2395), @@ -68180,7 +68705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2395), [anon_sym_true] = ACTIONS(2393), [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(912), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2393), [sym_super] = ACTIONS(2393), [sym_crate] = ACTIONS(2393), @@ -68189,984 +68714,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2395), [sym_block_comment] = ACTIONS(3), }, - [575] = { - [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(2397), - [anon_sym_u8] = ACTIONS(2397), - [anon_sym_i8] = ACTIONS(2397), - [anon_sym_u16] = ACTIONS(2397), - [anon_sym_i16] = ACTIONS(2397), - [anon_sym_u32] = ACTIONS(2397), - [anon_sym_i32] = ACTIONS(2397), - [anon_sym_u64] = ACTIONS(2397), - [anon_sym_i64] = ACTIONS(2397), - [anon_sym_u128] = ACTIONS(2397), - [anon_sym_i128] = ACTIONS(2397), - [anon_sym_isize] = ACTIONS(2397), - [anon_sym_usize] = ACTIONS(2397), - [anon_sym_f32] = ACTIONS(2397), - [anon_sym_f64] = ACTIONS(2397), - [anon_sym_bool] = ACTIONS(2397), - [anon_sym_str] = ACTIONS(2397), - [anon_sym_char] = ACTIONS(2397), - [aux_sym__non_special_token_token1] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2397), - [anon_sym_as] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_fn] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_impl] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_loop] = ACTIONS(2397), - [anon_sym_match] = ACTIONS(2397), - [anon_sym_mod] = ACTIONS(2397), - [anon_sym_pub] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_trait] = ACTIONS(2397), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_union] = ACTIONS(2397), - [anon_sym_unsafe] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_where] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [sym_mutable_specifier] = ACTIONS(2397), - [sym_integer_literal] = ACTIONS(2399), - [aux_sym_string_literal_token1] = ACTIONS(2399), - [sym_char_literal] = ACTIONS(2399), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2397), - [sym_super] = ACTIONS(2397), - [sym_crate] = ACTIONS(2397), - [sym_metavariable] = ACTIONS(2399), - [sym_raw_string_literal] = ACTIONS(2399), - [sym_float_literal] = ACTIONS(2399), - [sym_block_comment] = ACTIONS(3), - }, - [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(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), - }, - [577] = { - [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(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(912), - [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), - }, [578] = { - [sym_identifier] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_u8] = ACTIONS(2407), - [anon_sym_i8] = ACTIONS(2407), - [anon_sym_u16] = ACTIONS(2407), - [anon_sym_i16] = ACTIONS(2407), - [anon_sym_u32] = ACTIONS(2407), - [anon_sym_i32] = ACTIONS(2407), - [anon_sym_u64] = ACTIONS(2407), - [anon_sym_i64] = ACTIONS(2407), - [anon_sym_u128] = ACTIONS(2407), - [anon_sym_i128] = ACTIONS(2407), - [anon_sym_isize] = ACTIONS(2407), - [anon_sym_usize] = ACTIONS(2407), - [anon_sym_f32] = ACTIONS(2407), - [anon_sym_f64] = ACTIONS(2407), - [anon_sym_bool] = ACTIONS(2407), - [anon_sym_str] = ACTIONS(2407), - [anon_sym_char] = ACTIONS(2407), - [aux_sym__non_special_token_token1] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2407), - [anon_sym_fn] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_impl] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_mod] = ACTIONS(2407), - [anon_sym_pub] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_static] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(2407), - [anon_sym_trait] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(2407), - [anon_sym_unsafe] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_where] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [sym_mutable_specifier] = ACTIONS(2407), - [sym_integer_literal] = ACTIONS(2409), - [aux_sym_string_literal_token1] = ACTIONS(2409), - [sym_char_literal] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(912), - [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_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_RBRACK] = ACTIONS(2397), + [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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [579] = { - [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(912), - [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_function_modifiers] = STATE(2387), + [sym_const_parameter] = STATE(2001), + [sym_constrained_type_parameter] = STATE(1810), + [sym_optional_type_parameter] = STATE(2001), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(2391), + [sym_qualified_type] = STATE(2478), + [sym_lifetime] = STATE(1692), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(2403), [sym_block_comment] = ACTIONS(3), }, [580] = { - [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(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_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_RPAREN] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_u8] = ACTIONS(2405), + [anon_sym_i8] = ACTIONS(2405), + [anon_sym_u16] = ACTIONS(2405), + [anon_sym_i16] = ACTIONS(2405), + [anon_sym_u32] = ACTIONS(2405), + [anon_sym_i32] = ACTIONS(2405), + [anon_sym_u64] = ACTIONS(2405), + [anon_sym_i64] = ACTIONS(2405), + [anon_sym_u128] = ACTIONS(2405), + [anon_sym_i128] = ACTIONS(2405), + [anon_sym_isize] = ACTIONS(2405), + [anon_sym_usize] = ACTIONS(2405), + [anon_sym_f32] = ACTIONS(2405), + [anon_sym_f64] = ACTIONS(2405), + [anon_sym_bool] = ACTIONS(2405), + [anon_sym_str] = ACTIONS(2405), + [anon_sym_char] = ACTIONS(2405), + [aux_sym__non_special_token_token1] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_fn] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_impl] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_mod] = ACTIONS(2405), + [anon_sym_pub] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_unsafe] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_where] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [sym_mutable_specifier] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_metavariable] = ACTIONS(2407), + [sym_raw_string_literal] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), [sym_block_comment] = ACTIONS(3), }, [581] = { - [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(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_identifier] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_RBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [aux_sym__non_special_token_token1] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_fn] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_impl] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_mod] = ACTIONS(2409), + [anon_sym_pub] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_unsafe] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_where] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [sym_mutable_specifier] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_metavariable] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), [sym_block_comment] = ACTIONS(3), }, [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_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(1069), + [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), }, [583] = { - [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_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_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [584] = { - [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(2427), - [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_metavariable] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2429), - [sym_float_literal] = ACTIONS(2429), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [585] = { - [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(2431), - [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_metavariable] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), + [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(1069), + [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), }, [586] = { - [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(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), - }, - [587] = { - [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(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), - }, - [588] = { - [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_RBRACK] = ACTIONS(2425), + [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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, - [589] = { + [587] = { [sym_identifier] = ACTIONS(2427), [anon_sym_LPAREN] = ACTIONS(2429), [anon_sym_RPAREN] = ACTIONS(2429), @@ -69174,7 +69352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2429), [anon_sym_LBRACK] = ACTIONS(2429), [anon_sym_RBRACK] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2427), [anon_sym_u8] = ACTIONS(2427), [anon_sym_i8] = ACTIONS(2427), [anon_sym_u16] = ACTIONS(2427), @@ -69227,153 +69405,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2429), [anon_sym_true] = ACTIONS(2427), [anon_sym_false] = ACTIONS(2427), - [sym_line_comment] = ACTIONS(912), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2427), [sym_super] = ACTIONS(2427), [sym_crate] = ACTIONS(2427), + [sym_metavariable] = ACTIONS(2429), [sym_raw_string_literal] = ACTIONS(2429), [sym_float_literal] = ACTIONS(2429), [sym_block_comment] = ACTIONS(3), }, - [590] = { - [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(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(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(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), + [588] = { + [sym_parameter] = STATE(2300), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2061), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(2365), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, - [592] = { + [589] = { [sym_identifier] = ACTIONS(2431), [anon_sym_LPAREN] = ACTIONS(2433), [anon_sym_RPAREN] = ACTIONS(2433), @@ -69381,7 +69492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2433), [anon_sym_LBRACK] = ACTIONS(2433), [anon_sym_RBRACK] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2431), [anon_sym_u8] = ACTIONS(2431), [anon_sym_i8] = ACTIONS(2431), [anon_sym_u16] = ACTIONS(2431), @@ -69434,3153 +69545,3987 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2433), [anon_sym_true] = ACTIONS(2431), [anon_sym_false] = ACTIONS(2431), - [sym_line_comment] = ACTIONS(912), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2431), [sym_super] = ACTIONS(2431), [sym_crate] = ACTIONS(2431), + [sym_metavariable] = ACTIONS(2433), [sym_raw_string_literal] = ACTIONS(2433), [sym_float_literal] = ACTIONS(2433), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [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), + [590] = { + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), + [sym_block_comment] = ACTIONS(3), + }, + [591] = { + [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(1069), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_crate] = ACTIONS(2437), + [sym_metavariable] = ACTIONS(2439), + [sym_raw_string_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), + [sym_block_comment] = ACTIONS(3), + }, + [592] = { + [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(1069), + [sym_self] = ACTIONS(2441), + [sym_super] = ACTIONS(2441), + [sym_crate] = ACTIONS(2441), + [sym_metavariable] = ACTIONS(2443), + [sym_raw_string_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), + [sym_block_comment] = ACTIONS(3), + }, + [593] = { + [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(1069), + [sym_self] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_crate] = ACTIONS(2445), + [sym_metavariable] = ACTIONS(2447), + [sym_raw_string_literal] = ACTIONS(2447), + [sym_float_literal] = ACTIONS(2447), [sym_block_comment] = ACTIONS(3), }, [594] = { - [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(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_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(1069), + [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), }, [595] = { - [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(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), + [sym_function_modifiers] = STATE(2387), + [sym_higher_ranked_trait_bound] = STATE(1606), + [sym_removed_trait_bound] = STATE(1606), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1590), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1588), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [596] = { - [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2017), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [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), + [sym_function_modifiers] = STATE(2387), + [sym_higher_ranked_trait_bound] = STATE(1573), + [sym_removed_trait_bound] = STATE(1573), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1572), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1569), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [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), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [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_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1877), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [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), - [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1860), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2457), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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_identifier] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(629), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_u8] = ACTIONS(631), + [anon_sym_i8] = ACTIONS(631), + [anon_sym_u16] = ACTIONS(631), + [anon_sym_i16] = ACTIONS(631), + [anon_sym_u32] = ACTIONS(631), + [anon_sym_i32] = ACTIONS(631), + [anon_sym_u64] = ACTIONS(631), + [anon_sym_i64] = ACTIONS(631), + [anon_sym_u128] = ACTIONS(631), + [anon_sym_i128] = ACTIONS(631), + [anon_sym_isize] = ACTIONS(631), + [anon_sym_usize] = ACTIONS(631), + [anon_sym_f32] = ACTIONS(631), + [anon_sym_f64] = ACTIONS(631), + [anon_sym_bool] = ACTIONS(631), + [anon_sym_str] = ACTIONS(631), + [anon_sym_char] = ACTIONS(631), + [aux_sym__non_special_token_token1] = ACTIONS(631), + [anon_sym_SQUOTE] = ACTIONS(631), + [anon_sym_as] = ACTIONS(631), + [anon_sym_async] = ACTIONS(631), + [anon_sym_await] = ACTIONS(631), + [anon_sym_break] = ACTIONS(631), + [anon_sym_const] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(631), + [anon_sym_default] = ACTIONS(631), + [anon_sym_enum] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(631), + [anon_sym_for] = ACTIONS(631), + [anon_sym_if] = ACTIONS(631), + [anon_sym_impl] = ACTIONS(631), + [anon_sym_let] = ACTIONS(631), + [anon_sym_loop] = ACTIONS(631), + [anon_sym_match] = ACTIONS(631), + [anon_sym_mod] = ACTIONS(631), + [anon_sym_pub] = ACTIONS(631), + [anon_sym_return] = ACTIONS(631), + [anon_sym_static] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(631), + [anon_sym_trait] = ACTIONS(631), + [anon_sym_type] = ACTIONS(631), + [anon_sym_union] = ACTIONS(631), + [anon_sym_unsafe] = ACTIONS(631), + [anon_sym_use] = ACTIONS(631), + [anon_sym_where] = ACTIONS(631), + [anon_sym_while] = ACTIONS(631), + [sym_mutable_specifier] = ACTIONS(631), + [sym_integer_literal] = ACTIONS(629), + [aux_sym_string_literal_token1] = ACTIONS(629), + [sym_char_literal] = ACTIONS(629), + [anon_sym_true] = ACTIONS(631), + [anon_sym_false] = ACTIONS(631), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(631), + [sym_crate] = ACTIONS(631), + [sym_raw_string_literal] = ACTIONS(629), + [sym_float_literal] = ACTIONS(629), [sym_block_comment] = ACTIONS(3), }, [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(2367), - [sym_super] = ACTIONS(2367), - [sym_crate] = ACTIONS(2367), - [sym_raw_string_literal] = ACTIONS(2369), - [sym_float_literal] = ACTIONS(2369), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1451), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(2459), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2132), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [603] = { - [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(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(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_identifier] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_RBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [aux_sym__non_special_token_token1] = ACTIONS(569), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(567), + [aux_sym_string_literal_token1] = ACTIONS(567), + [sym_char_literal] = ACTIONS(567), + [anon_sym_true] = ACTIONS(569), + [anon_sym_false] = ACTIONS(569), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_raw_string_literal] = ACTIONS(567), + [sym_float_literal] = ACTIONS(567), [sym_block_comment] = ACTIONS(3), }, [604] = { - [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(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_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(1069), + [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), }, [605] = { - [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_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(1069), + [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), }, [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1760), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [608] = { - [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1755), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [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), - [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(2461), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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_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(2443), + [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(1069), + [sym_self] = ACTIONS(2441), + [sym_super] = ACTIONS(2441), + [sym_crate] = ACTIONS(2441), + [sym_raw_string_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2171), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [611] = { - [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2292), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [612] = { - [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1753), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [613] = { - [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), + [sym_function_modifiers] = STATE(2387), + [sym_higher_ranked_trait_bound] = STATE(1606), + [sym_removed_trait_bound] = STATE(1606), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1587), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1588), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [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), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [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_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [614] = { - [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(2397), - [sym_super] = ACTIONS(2397), - [sym_crate] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2399), - [sym_float_literal] = ACTIONS(2399), + [sym_function_modifiers] = STATE(2387), + [sym_higher_ranked_trait_bound] = STATE(1606), + [sym_removed_trait_bound] = STATE(1606), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1590), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(1591), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [615] = { - [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_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1459), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1466), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [anon_sym_LT] = ACTIONS(77), - [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), - [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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), - }, - [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), + [sym_block_comment] = ACTIONS(3), + }, + [618] = { + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1448), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [619] = { - [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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1720), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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(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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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(2451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2453), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2068), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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(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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2269), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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(2494), - [sym_super] = ACTIONS(2494), - [sym_crate] = ACTIONS(2494), - [sym_metavariable] = ACTIONS(2496), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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(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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1444), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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(2498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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(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_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(2164), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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_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(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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1860), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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(2506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2465), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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_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(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), + [sym_bracketed_type] = STATE(2439), + [sym_generic_type] = STATE(2435), + [sym_generic_type_with_turbofish] = STATE(2434), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(1351), + [sym_scoped_type_identifier] = STATE(2103), + [sym_const_block] = STATE(1440), + [sym__pattern] = STATE(1452), + [sym_tuple_pattern] = STATE(1440), + [sym_slice_pattern] = STATE(1440), + [sym_tuple_struct_pattern] = STATE(1440), + [sym_struct_pattern] = STATE(1440), + [sym_remaining_field_pattern] = STATE(1440), + [sym_mut_pattern] = STATE(1440), + [sym_range_pattern] = STATE(1440), + [sym_ref_pattern] = STATE(1440), + [sym_captured_pattern] = STATE(1440), + [sym_reference_pattern] = STATE(1440), + [sym_or_pattern] = STATE(1440), + [sym__literal_pattern] = STATE(1413), + [sym_negative_literal] = STATE(1411), + [sym_string_literal] = STATE(1411), + [sym_boolean_literal] = STATE(1411), + [sym_identifier] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_ref] = ACTIONS(701), [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(2508), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym__] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(719), + [aux_sym_string_literal_token1] = ACTIONS(721), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(723), + [anon_sym_false] = ACTIONS(723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), [sym_block_comment] = ACTIONS(3), }, [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(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(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_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(1069), + [sym_self] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_crate] = ACTIONS(2445), + [sym_raw_string_literal] = ACTIONS(2447), + [sym_float_literal] = ACTIONS(2447), [sym_block_comment] = ACTIONS(3), }, [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(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(2512), - [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_attribute_item] = STATE(629), + [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_RBRACK] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2467), + [anon_sym_i8] = ACTIONS(2467), + [anon_sym_u16] = ACTIONS(2467), + [anon_sym_i16] = ACTIONS(2467), + [anon_sym_u32] = ACTIONS(2467), + [anon_sym_i32] = ACTIONS(2467), + [anon_sym_u64] = ACTIONS(2467), + [anon_sym_i64] = ACTIONS(2467), + [anon_sym_u128] = ACTIONS(2467), + [anon_sym_i128] = ACTIONS(2467), + [anon_sym_isize] = ACTIONS(2467), + [anon_sym_usize] = ACTIONS(2467), + [anon_sym_f32] = ACTIONS(2467), + [anon_sym_f64] = ACTIONS(2467), + [anon_sym_bool] = ACTIONS(2467), + [anon_sym_str] = ACTIONS(2467), + [anon_sym_char] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_async] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_loop] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_COMMA] = ACTIONS(2469), + [anon_sym_ref] = ACTIONS(2467), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym__] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2469), + [sym_mutable_specifier] = ACTIONS(2467), + [anon_sym_DOT_DOT] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_move] = ACTIONS(2467), + [sym_integer_literal] = ACTIONS(2469), + [aux_sym_string_literal_token1] = ACTIONS(2469), + [sym_char_literal] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2467), + [anon_sym_false] = ACTIONS(2467), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2467), + [sym_super] = ACTIONS(2467), + [sym_crate] = ACTIONS(2467), + [sym_metavariable] = ACTIONS(2469), + [sym_raw_string_literal] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), [sym_block_comment] = ACTIONS(3), }, [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(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(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_function_modifiers] = STATE(2399), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(899), + [sym_bracketed_type] = STATE(2505), + [sym_lifetime] = STATE(2542), + [sym_array_type] = STATE(1117), + [sym_for_lifetimes] = STATE(1205), + [sym_function_type] = STATE(1117), + [sym_tuple_type] = STATE(1117), + [sym_unit_type] = STATE(1117), + [sym_generic_type] = STATE(794), + [sym_generic_type_with_turbofish] = STATE(2506), + [sym_bounded_type] = STATE(1117), + [sym_reference_type] = STATE(1117), + [sym_pointer_type] = STATE(1117), + [sym_empty_type] = STATE(1117), + [sym_abstract_type] = STATE(1117), + [sym_dynamic_type] = STATE(1117), + [sym_macro_invocation] = STATE(1117), + [sym_scoped_identifier] = STATE(2291), + [sym_scoped_type_identifier] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_u8] = ACTIONS(2484), + [anon_sym_i8] = ACTIONS(2484), + [anon_sym_u16] = ACTIONS(2484), + [anon_sym_i16] = ACTIONS(2484), + [anon_sym_u32] = ACTIONS(2484), + [anon_sym_i32] = ACTIONS(2484), + [anon_sym_u64] = ACTIONS(2484), + [anon_sym_i64] = ACTIONS(2484), + [anon_sym_u128] = ACTIONS(2484), + [anon_sym_i128] = ACTIONS(2484), + [anon_sym_isize] = ACTIONS(2484), + [anon_sym_usize] = ACTIONS(2484), + [anon_sym_f32] = ACTIONS(2484), + [anon_sym_f64] = ACTIONS(2484), + [anon_sym_bool] = ACTIONS(2484), + [anon_sym_str] = ACTIONS(2484), + [anon_sym_char] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_fn] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2498), + [anon_sym_dyn] = ACTIONS(2500), + [sym_mutable_specifier] = ACTIONS(2502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_crate] = ACTIONS(2504), + [sym_metavariable] = ACTIONS(2506), [sym_block_comment] = ACTIONS(3), }, [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(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(2516), - [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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1404), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(2510), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [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(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(2518), - [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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(2245), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(2512), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [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(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(2520), - [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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1404), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(2514), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(2516), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [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(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_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_function_modifiers] = STATE(2387), + [sym_type_parameters] = STATE(700), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1680), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1527), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [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_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(2391), + [sym_qualified_type] = STATE(2478), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [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), + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1886), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [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), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_crate] = ACTIONS(2494), - [sym_metavariable] = ACTIONS(2496), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [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_function_modifiers] = STATE(2387), + [sym_type_parameters] = STATE(748), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1624), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1651), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1528), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [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), + [sym_function_modifiers] = STATE(2387), + [sym_type_parameters] = STATE(652), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1682), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1707), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1512), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [639] = { + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1886), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), [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_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [640] = { + [sym_function_modifiers] = STATE(2387), + [sym_type_parameters] = STATE(685), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1689), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1656), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1522), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [641] = { + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1861), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [642] = { + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(2252), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(632), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(2536), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [643] = { + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1886), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [644] = { + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1406), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(631), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_mutable_specifier] = ACTIONS(2540), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [645] = { + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [646] = { + [sym_function_modifiers] = STATE(2399), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1028), + [sym_bracketed_type] = STATE(2505), + [sym_lifetime] = STATE(630), + [sym_array_type] = STATE(1117), + [sym_for_lifetimes] = STATE(1205), + [sym_function_type] = STATE(1117), + [sym_tuple_type] = STATE(1117), + [sym_unit_type] = STATE(1117), + [sym_generic_type] = STATE(794), + [sym_generic_type_with_turbofish] = STATE(2506), + [sym_bounded_type] = STATE(1117), + [sym_reference_type] = STATE(1117), + [sym_pointer_type] = STATE(1117), + [sym_empty_type] = STATE(1117), + [sym_abstract_type] = STATE(1117), + [sym_dynamic_type] = STATE(1117), + [sym_macro_invocation] = STATE(1117), + [sym_scoped_identifier] = STATE(2291), + [sym_scoped_type_identifier] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_u8] = ACTIONS(2484), + [anon_sym_i8] = ACTIONS(2484), + [anon_sym_u16] = ACTIONS(2484), + [anon_sym_i16] = ACTIONS(2484), + [anon_sym_u32] = ACTIONS(2484), + [anon_sym_i32] = ACTIONS(2484), + [anon_sym_u64] = ACTIONS(2484), + [anon_sym_i64] = ACTIONS(2484), + [anon_sym_u128] = ACTIONS(2484), + [anon_sym_i128] = ACTIONS(2484), + [anon_sym_isize] = ACTIONS(2484), + [anon_sym_usize] = ACTIONS(2484), + [anon_sym_f32] = ACTIONS(2484), + [anon_sym_f64] = ACTIONS(2484), + [anon_sym_bool] = ACTIONS(2484), + [anon_sym_str] = ACTIONS(2484), + [anon_sym_char] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_fn] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2498), + [anon_sym_dyn] = ACTIONS(2500), + [sym_mutable_specifier] = ACTIONS(2544), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_crate] = ACTIONS(2504), + [sym_metavariable] = ACTIONS(2506), + [sym_block_comment] = ACTIONS(3), + }, + [647] = { + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1556), + [sym__type] = STATE(1886), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2379), + [sym_array_type] = STATE(1412), + [sym_for_lifetimes] = STATE(1208), + [sym_function_type] = STATE(1412), + [sym_tuple_type] = STATE(1412), + [sym_unit_type] = STATE(1412), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1412), + [sym_reference_type] = STATE(1412), + [sym_pointer_type] = STATE(1412), + [sym_empty_type] = STATE(1412), + [sym_abstract_type] = STATE(1412), + [sym_dynamic_type] = STATE(1412), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(2313), + [sym_scoped_type_identifier] = STATE(1340), + [aux_sym_function_modifiers_repeat1] = STATE(1556), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_default] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(689), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_extern] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(886), + [anon_sym_dyn] = ACTIONS(711), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, }; @@ -72589,71 +73534,71 @@ static const uint16_t ts_small_parse_table[] = { [0] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1400), 1, + STATE(1668), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72665,7 +73610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72686,71 +73631,71 @@ static const uint16_t ts_small_parse_table[] = { [129] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2291), 1, + STATE(1927), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72762,7 +73707,50 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 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] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1652), 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(1654), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72780,74 +73768,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [258] = 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, + [329] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2038), 1, + STATE(1390), 1, sym__type, - STATE(2157), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2378), 1, - sym_bracketed_type, STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1556), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(679), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(890), 3, + sym_self, + sym_super, + sym_crate, + STATE(1412), 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(876), 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, + [458] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, + anon_sym_for, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, + anon_sym_extern, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, + anon_sym_LPAREN, + ACTIONS(874), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, + anon_sym_default, + ACTIONS(880), 1, + anon_sym_union, + ACTIONS(884), 1, + anon_sym_COLON_COLON, + ACTIONS(886), 1, + anon_sym_AMP, + ACTIONS(892), 1, + sym_metavariable, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2548), 1, + sym_identifier, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1511), 1, + sym_scoped_type_identifier, + STATE(1640), 1, + sym__type, + STATE(1675), 1, + sym_generic_type, + STATE(2313), 1, + sym_scoped_identifier, + STATE(2379), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72859,7 +73969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72877,74 +73987,74 @@ 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, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1663), 1, + STATE(1714), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72956,7 +74066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72974,74 +74084,74 @@ 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, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1613), 1, + STATE(2128), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73053,7 +74163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73071,74 +74181,74 @@ 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, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1383), 1, + STATE(1408), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73150,7 +74260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73168,74 +74278,74 @@ 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, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1883), 1, + STATE(2100), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73247,7 +74357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73265,74 +74375,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [903] = 32, + [1103] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1387), 1, + STATE(1715), 1, sym__type, - STATE(2157), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2378), 1, - sym_bracketed_type, STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1556), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(679), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(890), 3, + sym_self, + sym_super, + sym_crate, + STATE(1412), 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(876), 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, + [1232] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(687), 1, + anon_sym_for, + ACTIONS(699), 1, + anon_sym_extern, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, + anon_sym_LPAREN, + ACTIONS(2478), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, + anon_sym_default, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, + anon_sym_union, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, + anon_sym_COLON_COLON, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(794), 1, + sym_generic_type, + STATE(899), 1, + sym__type, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, + sym_scoped_identifier, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, + sym_bracketed_type, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + STATE(2542), 1, sym_lifetime, - STATE(2472), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1556), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(679), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2504), 3, + sym_self, + sym_super, + sym_crate, + STATE(1117), 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(2484), 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, + [1361] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(687), 1, + anon_sym_for, + ACTIONS(699), 1, + anon_sym_extern, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, + anon_sym_LPAREN, + ACTIONS(2478), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, + anon_sym_default, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, + anon_sym_union, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, + anon_sym_COLON_COLON, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(794), 1, + sym_generic_type, + STATE(1091), 1, + sym__type, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, + sym_scoped_identifier, + STATE(2399), 1, sym_function_modifiers, + STATE(2505), 1, + sym_bracketed_type, + STATE(2506), 1, + sym_generic_type_with_turbofish, + STATE(2542), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73344,7 +74648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73362,74 +74666,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, + [1490] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1879), 1, + STATE(1935), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73441,7 +74745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73459,74 +74763,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1161] = 32, + [1619] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1614), 1, + STATE(2245), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73538,7 +74842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73556,74 +74860,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 32, + [1748] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1385), 1, + STATE(2009), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73635,7 +74939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73653,171 +74957,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1419] = 32, + [1877] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2068), 1, + STATE(2188), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 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, - [1548] = 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(1811), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2378), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2392), 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, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73829,7 +75036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73847,74 +75054,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, + [2006] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1633), 1, + STATE(1417), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73926,7 +75133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73944,74 +75151,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, + [2135] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1398), 1, + STATE(1846), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74023,7 +75230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74041,74 +75248,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [2264] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1624), 1, + STATE(1643), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74120,7 +75327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74138,74 +75345,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [2393] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2104), 1, + STATE(2077), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74217,7 +75424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74235,74 +75442,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [2522] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2045), 1, + STATE(1667), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74314,7 +75521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74332,74 +75539,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [2651] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2117), 1, + STATE(1841), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74411,7 +75618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74429,171 +75636,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [2780] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1875), 1, + STATE(1781), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 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, - [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(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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2530), 1, - sym_identifier, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1491), 1, - sym_scoped_type_identifier, - STATE(1657), 1, - sym__type, - STATE(1679), 1, - sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2378), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2392), 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, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74605,7 +75715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74623,74 +75733,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [2909] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1869), 1, + STATE(2236), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74702,7 +75812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74720,74 +75830,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [3038] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1405), 1, + STATE(1647), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74799,7 +75909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74817,74 +75927,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [3167] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1625), 1, + STATE(2247), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74896,7 +76006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74914,74 +76024,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [3296] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1817), 1, + STATE(1648), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74993,7 +76103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75011,74 +76121,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [3425] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1379), 1, + STATE(2044), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75090,7 +76200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75108,74 +76218,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [3554] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1631), 1, + STATE(1886), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75187,7 +76297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75205,74 +76315,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [3683] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1394), 1, + STATE(2073), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75284,7 +76394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75302,74 +76412,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [3812] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1647), 1, + STATE(2153), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75381,7 +76491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75399,74 +76509,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [3941] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1874), 1, + STATE(1645), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75478,7 +76588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75496,74 +76606,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [4070] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1381), 1, + STATE(2227), 1, sym__type, - STATE(1382), 1, - sym_lifetime, - STATE(2157), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2378), 1, - sym_bracketed_type, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2472), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75575,7 +76685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75593,74 +76703,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [4199] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(935), 1, + STATE(2090), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75672,7 +76782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75690,74 +76800,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [4328] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(942), 1, + STATE(1639), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75769,7 +76879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75787,74 +76897,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, + [4457] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(951), 1, + STATE(1699), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75866,7 +76976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75884,74 +76994,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [4586] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2051), 1, + STATE(1581), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75963,7 +77073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75981,171 +77091,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 32, + [4715] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + ACTIONS(2550), 1, + sym_identifier, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1514), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1701), 1, + sym__type, + STATE(1713), 1, sym_generic_type, - STATE(2157), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2282), 1, - sym__type, - STATE(2378), 1, - sym_bracketed_type, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 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, - [4644] = 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(953), 1, - sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, - sym_scoped_identifier, - STATE(2386), 1, - sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76157,7 +77170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76175,74 +77188,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4773] = 32, + [4844] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1619), 1, + STATE(1815), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76254,7 +77267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76272,74 +77285,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4902] = 32, + [4973] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1936), 1, + STATE(2032), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76351,7 +77364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76369,74 +77382,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5031] = 32, + [5102] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1381), 1, + STATE(1396), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76448,7 +77461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76466,74 +77479,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5160] = 32, + [5231] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1670), 1, + STATE(1403), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76545,7 +77558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76563,74 +77576,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5289] = 32, + [5360] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1694), 1, + STATE(1644), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76642,7 +77655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76660,74 +77673,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5418] = 32, + [5489] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2025), 1, + STATE(1943), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76739,7 +77752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76757,74 +77770,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5547] = 32, + [5618] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1782), 1, + STATE(2120), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76836,7 +77849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76854,74 +77867,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5676] = 32, + [5747] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2031), 1, + STATE(1808), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76933,7 +77946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76951,74 +77964,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5805] = 32, + [5876] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1889), 1, + STATE(1979), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77030,7 +78043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77048,74 +78061,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5934] = 32, + [6005] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1636), 1, + STATE(1879), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77127,7 +78140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77145,74 +78158,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, + [6134] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1823), 1, + STATE(1404), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77224,7 +78237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77242,74 +78255,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, + [6263] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1655), 1, + STATE(1629), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77321,7 +78334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77339,74 +78352,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6321] = 32, + [6392] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(794), 1, sym_generic_type, - STATE(1684), 1, + STATE(886), 1, sym__type, - STATE(2157), 1, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + STATE(2542), 1, sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77418,7 +78431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77436,74 +78449,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, + [6521] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2177), 1, + STATE(2038), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77515,7 +78528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77533,74 +78546,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, + [6650] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + ACTIONS(2552), 1, + sym_identifier, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1521), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1669), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2252), 1, + STATE(1673), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77612,7 +78625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77630,74 +78643,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, + [6779] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1867), 1, + STATE(1388), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77709,7 +78722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77727,74 +78740,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, + [6908] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1840), 1, + STATE(1601), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77806,7 +78819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77824,74 +78837,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, + [7037] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1831), 1, + STATE(1706), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77903,7 +78916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77921,74 +78934,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 32, + [7166] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1671), 1, + STATE(2094), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78000,7 +79013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78018,74 +79031,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7224] = 32, + [7295] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1669), 1, + STATE(1684), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78097,7 +79110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78115,74 +79128,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7353] = 32, + [7424] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2017), 1, + STATE(2242), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78194,7 +79207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78212,74 +79225,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7482] = 32, + [7553] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1928), 1, + STATE(1399), 1, sym__type, - STATE(2157), 1, + STATE(1409), 1, + sym_lifetime, + STATE(2313), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2387), 1, + sym_function_modifiers, + STATE(2391), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2392), 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, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78291,7 +79304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78309,74 +79322,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7611] = 32, + [7682] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2192), 1, + STATE(2062), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78388,7 +79401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78406,74 +79419,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7740] = 32, + [7811] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(794), 1, sym_generic_type, - STATE(1678), 1, + STATE(902), 1, sym__type, - STATE(2157), 1, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + STATE(2542), 1, sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78485,7 +79498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78503,172 +79516,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7869] = 33, + [7940] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2478), 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, - ACTIONS(2532), 1, - sym_self, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, - sym_scoped_type_identifier, - STATE(1359), 1, - sym_generic_type, - STATE(1383), 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(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, + ACTIONS(2482), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(2486), 1, + anon_sym_default, + ACTIONS(2488), 1, anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, + ACTIONS(2490), 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, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(794), 1, sym_generic_type, - STATE(1985), 1, + STATE(1035), 1, sym__type, - STATE(2157), 1, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + STATE(2542), 1, sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78680,7 +79595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78698,74 +79613,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8129] = 32, + [8069] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1572), 1, + STATE(1631), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78777,7 +79692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78795,74 +79710,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8258] = 32, + [8198] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1701), 1, + STATE(1914), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78874,7 +79789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78892,74 +79807,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8387] = 32, + [8327] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2534), 1, + ACTIONS(2327), 1, sym_identifier, - STATE(1196), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, sym_for_lifetimes, - STATE(1497), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1637), 1, + STATE(1362), 1, sym_generic_type, - STATE(1640), 1, + STATE(2183), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78971,7 +79886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78989,74 +79904,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8516] = 32, + [8456] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1703), 1, + STATE(2265), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79068,7 +79983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79086,74 +80001,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8645] = 32, + [8585] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1999), 1, + STATE(1660), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79165,7 +80080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79183,74 +80098,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8774] = 32, + [8714] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2222), 1, + STATE(1399), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79262,7 +80177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79280,74 +80195,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8903] = 32, + [8843] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1692), 1, + STATE(1663), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79359,7 +80274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79377,74 +80292,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9032] = 32, + [8972] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1689), 1, + STATE(1685), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79456,7 +80371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79474,74 +80389,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9161] = 32, + [9101] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2230), 1, + STATE(1394), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79553,7 +80468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79571,74 +80486,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9290] = 32, + [9230] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2021), 1, + STATE(1410), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79650,7 +80565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79668,74 +80583,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9419] = 32, + [9359] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2536), 1, + ACTIONS(2327), 1, sym_identifier, - STATE(1196), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, sym_for_lifetimes, - STATE(1507), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1642), 1, - sym__type, - STATE(1643), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, + STATE(2071), 1, + sym__type, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79747,7 +80662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79765,74 +80680,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9548] = 32, + [9488] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1950), 1, + STATE(2065), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79844,7 +80759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79862,74 +80777,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9677] = 32, + [9617] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2009), 1, + STATE(1687), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79941,7 +80856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79959,74 +80874,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9806] = 32, + [9746] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1660), 1, + STATE(1405), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80038,7 +80953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80056,74 +80971,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9935] = 32, + [9875] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2203), 1, + STATE(1681), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80135,7 +81050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80153,74 +81068,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10064] = 32, + [10004] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1622), 1, + STATE(1776), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80232,7 +81147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80250,74 +81165,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10193] = 32, + [10133] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(856), 1, + STATE(2306), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80329,7 +81244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80347,74 +81262,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10322] = 32, + [10262] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1392), 1, + STATE(1897), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80426,7 +81341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80444,74 +81359,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10451] = 32, + [10391] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1402), 1, + STATE(1634), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80523,7 +81438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80541,74 +81456,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10580] = 32, + [10520] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1704), 1, + STATE(1895), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80620,7 +81535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80638,74 +81553,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10709] = 32, + [10649] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2180), 1, + STATE(2076), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80717,7 +81632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80735,74 +81650,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10838] = 32, + [10778] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2538), 1, - sym_identifier, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1483), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1685), 1, - sym__type, - STATE(1686), 1, + STATE(794), 1, sym_generic_type, - STATE(2157), 1, + STATE(869), 1, + sym__type, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + STATE(2542), 1, sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80814,7 +81729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80832,74 +81747,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10967] = 32, + [10907] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(862), 1, + STATE(1902), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80911,7 +81826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80929,74 +81844,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11096] = 32, + [11036] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(865), 1, + STATE(1686), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81008,7 +81923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81026,74 +81941,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11225] = 32, + [11165] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(867), 1, + STATE(1635), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81105,7 +82020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81123,74 +82038,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11354] = 32, + [11294] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2289), 1, + STATE(1702), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81202,7 +82117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81220,74 +82135,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11483] = 32, + [11423] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(687), 1, + anon_sym_for, + ACTIONS(699), 1, + anon_sym_extern, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, + anon_sym_LPAREN, + ACTIONS(2478), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(2486), 1, + anon_sym_default, + ACTIONS(2488), 1, anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, + ACTIONS(2490), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(2492), 1, + anon_sym_union, + ACTIONS(2494), 1, anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(2496), 1, + anon_sym_COLON_COLON, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2506), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(794), 1, + sym_generic_type, + STATE(871), 1, + sym__type, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, + sym_scoped_identifier, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, + sym_bracketed_type, + STATE(2506), 1, + sym_generic_type_with_turbofish, + STATE(2542), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1556), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(679), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2504), 3, + sym_self, + sym_super, + sym_crate, + STATE(1117), 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(2484), 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, + [11552] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(687), 1, + anon_sym_for, + ACTIONS(699), 1, + anon_sym_extern, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(794), 1, sym_generic_type, - STATE(1992), 1, + STATE(877), 1, sym__type, - STATE(2157), 1, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + STATE(2542), 1, sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81299,7 +82311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81317,74 +82329,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11612] = 32, + [11681] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1688), 1, + STATE(2203), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81396,7 +82408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81414,74 +82426,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11741] = 32, + [11810] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(1083), 1, + STATE(1690), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81493,7 +82505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81511,74 +82523,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11870] = 32, + [11939] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1919), 1, + STATE(1992), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81590,7 +82602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81608,142 +82620,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [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, + [12068] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1837), 1, + STATE(1646), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81755,7 +82699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81773,74 +82717,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [12197] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2279), 1, + STATE(1784), 1, sym__type, - STATE(2378), 1, - sym_bracketed_type, + STATE(2313), 1, + sym_scoped_identifier, STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, sym_lifetime, - STATE(2472), 1, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81852,7 +82796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81870,74 +82814,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [12326] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(794), 1, sym_generic_type, - STATE(1915), 1, + STATE(998), 1, sym__type, - STATE(2157), 1, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + STATE(2542), 1, sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81949,7 +82893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81967,74 +82911,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [12455] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(794), 1, sym_generic_type, - STATE(1617), 1, + STATE(997), 1, sym__type, - STATE(2157), 1, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + STATE(2542), 1, sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82046,7 +82990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82064,74 +83008,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [12584] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1621), 1, + STATE(1834), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82143,7 +83087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82161,74 +83105,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, + [12713] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(794), 1, sym_generic_type, - STATE(1846), 1, + STATE(890), 1, sym__type, - STATE(2157), 1, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2291), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2399), 1, + sym_function_modifiers, + STATE(2505), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + STATE(2542), 1, sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82240,7 +83184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82258,74 +83202,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + [12842] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + ACTIONS(2554), 1, + sym_identifier, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1533), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1703), 1, sym_generic_type, - STATE(1683), 1, + STATE(1704), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82337,7 +83281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82355,74 +83299,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12973] = 32, + [12971] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - ACTIONS(2464), 1, + ACTIONS(2474), 1, sym_identifier, - ACTIONS(2466), 1, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2482), 1, anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(2478), 1, + ACTIONS(2488), 1, anon_sym_fn, - ACTIONS(2480), 1, + ACTIONS(2490), 1, anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(2484), 1, + ACTIONS(2494), 1, anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(2490), 1, + ACTIONS(2500), 1, anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(2506), 1, sym_metavariable, - STATE(760), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(794), 1, sym_generic_type, - STATE(946), 1, + STATE(990), 1, sym__type, - STATE(1195), 1, + STATE(1205), 1, sym_for_lifetimes, - STATE(2216), 1, + STATE(2291), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2399), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2505), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2506), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, + STATE(2542), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1117), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82434,7 +83378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82452,74 +83396,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13102] = 32, + [13100] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2093), 1, + STATE(1693), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82531,7 +83475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82549,74 +83493,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13231] = 32, + [13229] = 33, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + ACTIONS(2556), 1, + sym_self, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1766), 1, + STATE(1388), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + ACTIONS(890), 2, + sym_super, + sym_crate, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, - sym_self, - sym_super, - sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82628,7 +83573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82649,71 +83594,71 @@ static const uint16_t ts_small_parse_table[] = { [13360] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(1595), 1, + STATE(2013), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82725,7 +83670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82746,71 +83691,71 @@ static const uint16_t ts_small_parse_table[] = { [13489] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(932), 1, + STATE(1824), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82822,7 +83767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82843,71 +83788,71 @@ static const uint16_t ts_small_parse_table[] = { [13618] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(685), 1, + anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(689), 1, + anon_sym_impl, + ACTIONS(695), 1, + anon_sym_BANG, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(711), 1, + anon_sym_dyn, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(892), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2327), 1, + sym_identifier, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1362), 1, sym_generic_type, - STATE(941), 1, + STATE(1970), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2313), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2379), 1, + sym_lifetime, + STATE(2387), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82919,7 +83864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82940,71 +83885,71 @@ static const uint16_t ts_small_parse_table[] = { [13747] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_impl, - ACTIONS(680), 1, + ACTIONS(695), 1, anon_sym_BANG, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(696), 1, + ACTIONS(711), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(874), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(878), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(880), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(886), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(892), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2327), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1340), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1362), 1, sym_generic_type, - STATE(2139), 1, + STATE(1712), 1, sym__type, - STATE(2157), 1, + STATE(2313), 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, + STATE(2387), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1412), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83016,7 +83961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(876), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83038,7 +83983,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2542), 17, + ACTIONS(2560), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -83056,7 +84001,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2540), 40, + ACTIONS(2558), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83101,25 +84046,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 17, + ACTIONS(455), 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(2544), 40, + ACTIONS(2562), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83151,7 +84097,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, @@ -83164,26 +84109,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(502), 18, + ACTIONS(2566), 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(2548), 39, + ACTIONS(2564), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83215,6 +84159,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, @@ -83227,7 +84172,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(842), 17, + ACTIONS(857), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -83245,7 +84190,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(840), 40, + ACTIONS(855), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83290,7 +84235,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 15, + ACTIONS(1652), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -83306,7 +84251,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83346,22 +84291,424 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [14202] = 9, - ACTIONS(2552), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2556), 1, + ACTIONS(2574), 1, anon_sym_BANG, - ACTIONS(2558), 1, + ACTIONS(2576), 1, + anon_sym_COLON_COLON, + ACTIONS(2578), 1, + anon_sym_LT2, + STATE(797), 1, + sym_parameters, + STATE(815), 1, + sym_type_arguments, + 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(2568), 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(2570), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, anon_sym_COLON_COLON, - ACTIONS(2560), 1, + ACTIONS(2578), 1, anon_sym_LT2, STATE(797), 1, + sym_parameters, + STATE(815), 1, + sym_type_arguments, + 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), 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, + [14341] = 8, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_COLON_COLON, + ACTIONS(2578), 1, + anon_sym_LT2, + STATE(797), 1, + sym_parameters, + STATE(815), 1, sym_type_arguments, - STATE(807), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + 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), 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] = 7, + ACTIONS(2574), 1, + anon_sym_BANG, + ACTIONS(2588), 1, + anon_sym_LBRACE, + ACTIONS(2590), 1, + anon_sym_COLON_COLON, + STATE(903), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(575), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(577), 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, + [14474] = 5, + ACTIONS(2596), 1, + anon_sym_BANG, + ACTIONS(2598), 1, + anon_sym_COLON_COLON, + 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), 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, + [14535] = 5, + ACTIONS(2604), 1, + anon_sym_BANG, + ACTIONS(2606), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 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(2600), 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, + [14596] = 7, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2578), 1, + anon_sym_LT2, + STATE(796), 1, sym_parameters, + STATE(818), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 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(2608), 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, + [14661] = 5, + ACTIONS(2616), 1, + anon_sym_BANG, + ACTIONS(2618), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2554), 17, + ACTIONS(2614), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83379,8 +84726,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2550), 27, + ACTIONS(2612), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83392,6 +84740,7 @@ 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, @@ -83407,21 +84756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14273] = 8, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(2558), 1, + [14722] = 5, + ACTIONS(2624), 1, + anon_sym_BANG, + ACTIONS(2626), 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(2564), 17, + ACTIONS(2622), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83439,8 +84782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2562), 27, + ACTIONS(2620), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83452,6 +84796,7 @@ 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, @@ -83467,21 +84812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14341] = 8, - ACTIONS(2552), 1, + [14783] = 7, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2558), 1, - anon_sym_COLON_COLON, - ACTIONS(2560), 1, + ACTIONS(2578), 1, anon_sym_LT2, - STATE(797), 1, - sym_type_arguments, - STATE(807), 1, + STATE(796), 1, sym_parameters, + STATE(818), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 17, + ACTIONS(2630), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83499,7 +84842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2566), 27, + ACTIONS(2628), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -83527,15 +84870,19 @@ static const uint16_t ts_small_parse_table[] = { 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, + [14848] = 7, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2578), 1, + anon_sym_LT2, + STATE(796), 1, + sym_parameters, + STATE(818), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 17, + ACTIONS(2634), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83553,9 +84900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2570), 29, + ACTIONS(2632), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83567,7 +84913,6 @@ 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, @@ -83583,17 +84928,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14470] = 5, - ACTIONS(2582), 1, - anon_sym_BANG, - ACTIONS(2584), 1, + [14913] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1900), 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(1902), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_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] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 17, + ACTIONS(1202), 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(1204), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15025] = 4, + ACTIONS(2636), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83602,18 +85052,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(2578), 29, + ACTIONS(2618), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83622,13 +85069,14 @@ 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, @@ -83638,22 +85086,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, - [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, + [15083] = 4, + ACTIONS(2638), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 17, + ACTIONS(2604), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83662,17 +85106,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(2586), 27, + ACTIONS(2606), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83681,12 +85123,14 @@ 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, @@ -83696,22 +85140,71 @@ 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, - [14596] = 7, - ACTIONS(2556), 1, - anon_sym_BANG, - ACTIONS(2590), 1, - anon_sym_LBRACE, - ACTIONS(2592), 1, + [15141] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1972), 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, - STATE(1121), 1, - sym_field_initializer_list, + sym_metavariable, + ACTIONS(1974), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15197] = 4, + ACTIONS(2640), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2596), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83725,7 +85218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 29, + ACTIONS(2598), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83737,6 +85230,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, @@ -83755,19 +85249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [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, + [15255] = 5, + ACTIONS(2642), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 17, + STATE(780), 2, + sym_else_clause, + aux_sym_if_expression_repeat1, + ACTIONS(397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83778,15 +85269,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(2594), 27, + ACTIONS(395), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83796,13 +85286,13 @@ 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, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83812,22 +85302,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, - [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, + [15315] = 4, + ACTIONS(2644), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 17, + ACTIONS(2624), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83836,17 +85322,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(2598), 27, + ACTIONS(2626), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83855,12 +85339,14 @@ 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, @@ -83870,16 +85356,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, - [14791] = 5, - ACTIONS(2606), 1, - anon_sym_BANG, - ACTIONS(2608), 1, - anon_sym_COLON_COLON, + [15373] = 5, + ACTIONS(2642), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 17, + STATE(781), 2, + sym_else_clause, + aux_sym_if_expression_repeat1, + ACTIONS(377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83890,14 +85378,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(2602), 29, + ACTIONS(375), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83909,14 +85395,13 @@ 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_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, @@ -83926,16 +85411,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, - [14852] = 5, - ACTIONS(2614), 1, - anon_sym_BANG, - ACTIONS(2616), 1, - anon_sym_COLON_COLON, + [15433] = 5, + ACTIONS(2646), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 17, + STATE(781), 2, + sym_else_clause, + aux_sym_if_expression_repeat1, + ACTIONS(370), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83946,14 +85433,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(2610), 29, + ACTIONS(368), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83965,14 +85450,13 @@ 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_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, @@ -83982,70 +85466,19 @@ 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, - [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, + [15493] = 5, + ACTIONS(2653), 1, + anon_sym_SQUOTE, + STATE(878), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 16, + ACTIONS(2651), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84059,10 +85492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 30, + ACTIONS(2649), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84071,7 +85505,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, @@ -84090,22 +85523,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15027] = 6, - ACTIONS(2626), 1, + [15553] = 6, + ACTIONS(2661), 1, anon_sym_BANG, - ACTIONS(2628), 1, + ACTIONS(2663), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - ACTIONS(2622), 16, + ACTIONS(2657), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_as, @@ -84122,7 +85555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 23, + ACTIONS(2655), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -84146,13 +85579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15089] = 4, - ACTIONS(2630), 1, - anon_sym_LBRACE, + [15615] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2604), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -84169,10 +85600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 30, + ACTIONS(2606), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84200,11 +85632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15147] = 3, + [15671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 9, + ACTIONS(1720), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84214,7 +85646,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1722), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1404), 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(1406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84253,69 +85738,16 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15203] = 3, + [15783] = 4, 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, + ACTIONS(2667), 2, anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 16, + anon_sym_COLON_COLON, + ACTIONS(2669), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84329,7 +85761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2608), 30, + ACTIONS(2665), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84341,7 +85773,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, @@ -84360,15 +85791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15317] = 5, - ACTIONS(2638), 1, - anon_sym_SQUOTE, - STATE(1073), 1, - sym_loop_label, + [15840] = 4, + ACTIONS(2675), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(2673), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84384,7 +85813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 30, + ACTIONS(2671), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84415,14 +85844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15377] = 3, + [15897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 16, + ACTIONS(2679), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84436,7 +85864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 31, + ACTIONS(2677), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84468,16 +85896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15433] = 4, - ACTIONS(2640), 1, - anon_sym_LBRACE, + [15952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 16, + ACTIONS(2683), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84491,10 +85916,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 30, + ACTIONS(2681), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84502,8 +85928,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, @@ -84522,117 +85948,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15491] = 3, + [16007] = 4, + ACTIONS(2685), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1096), 9, + ACTIONS(2634), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2632), 30, anon_sym_SEMI, - anon_sym_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_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, + [16064] = 4, + ACTIONS(2687), 1, 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(1376), 9, + ACTIONS(2634), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2632), 30, anon_sym_SEMI, - anon_sym_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_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, + [16121] = 5, + ACTIONS(2574), 1, + anon_sym_BANG, + ACTIONS(2689), 1, 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(2644), 15, + ACTIONS(575), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84648,11 +86078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2642), 31, + ACTIONS(577), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84660,7 +86089,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, @@ -84680,11 +86108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15658] = 3, + [16180] = 4, + ACTIONS(2691), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(2634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84700,7 +86130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 31, + ACTIONS(2632), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84712,7 +86142,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, @@ -84732,15 +86161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15713] = 5, - ACTIONS(2652), 1, - anon_sym_LPAREN, - STATE(1081), 1, - sym_arguments, + [16237] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 15, + ACTIONS(2693), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2669), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84756,10 +86184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2650), 29, + ACTIONS(2665), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84786,13 +86214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15772] = 4, - ACTIONS(2656), 1, - anon_sym_COLON_COLON, + [16294] = 4, + ACTIONS(2699), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2697), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84808,7 +86236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 30, + ACTIONS(2695), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84839,13 +86267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15829] = 4, - ACTIONS(2662), 1, + [16351] = 4, + ACTIONS(2705), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + ACTIONS(2703), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84861,7 +86289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 30, + ACTIONS(2701), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84892,15 +86320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15886] = 5, - ACTIONS(2628), 1, - anon_sym_COLON_COLON, - ACTIONS(2664), 1, - anon_sym_BANG, + [16408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + ACTIONS(2709), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84916,10 +86340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 29, + ACTIONS(2707), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84928,6 +86353,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, @@ -84946,13 +86372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15945] = 4, - ACTIONS(2670), 1, - anon_sym_DASH_GT, + [16463] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, + ACTIONS(2713), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84968,7 +86392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2666), 30, + ACTIONS(2711), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84981,6 +86405,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, @@ -84999,11 +86424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16002] = 3, + [16518] = 4, + ACTIONS(2715), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2674), 15, + ACTIONS(575), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85019,7 +86446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2672), 31, + ACTIONS(577), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85032,7 +86459,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, @@ -85051,13 +86477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16057] = 4, - ACTIONS(2680), 1, - anon_sym_DASH_GT, + [16575] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 15, + ACTIONS(825), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85073,7 +86497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2676), 30, + ACTIONS(827), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85082,6 +86506,7 @@ 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, @@ -85104,11 +86529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16114] = 3, + [16630] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(814), 15, + ACTIONS(2719), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85124,7 +86549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(816), 31, + ACTIONS(2717), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85133,11 +86558,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, @@ -85156,11 +86581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16169] = 3, + [16685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2723), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85176,7 +86601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2682), 31, + ACTIONS(2721), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85188,8 +86613,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, @@ -85208,13 +86633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16224] = 4, - ACTIONS(2686), 1, + [16740] = 4, + ACTIONS(2691), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(2630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85230,7 +86655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 30, + ACTIONS(2628), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85261,13 +86686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16281] = 4, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, + [16797] = 5, + ACTIONS(2727), 1, + anon_sym_LPAREN, + STATE(908), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2729), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85283,9 +86710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 30, + ACTIONS(2725), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85314,13 +86740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16338] = 4, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, + [16856] = 4, + ACTIONS(2735), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2733), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85336,7 +86762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 30, + ACTIONS(2731), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85367,11 +86793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16395] = 3, + [16913] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 17, + ACTIONS(2739), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85382,14 +86808,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(2578), 29, + ACTIONS(2737), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85401,14 +86825,15 @@ 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, @@ -85418,14 +86843,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, - [16450] = 4, - ACTIONS(2686), 1, - anon_sym_COLON_COLON, + [16968] = 4, + ACTIONS(2745), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2743), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85441,7 +86867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 30, + ACTIONS(2741), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85472,11 +86898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16507] = 3, + [17025] = 4, + ACTIONS(2691), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 15, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85492,7 +86920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2692), 31, + ACTIONS(2608), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85504,7 +86932,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, @@ -85524,15 +86951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16562] = 5, - ACTIONS(2556), 1, - anon_sym_BANG, - ACTIONS(2696), 1, - anon_sym_COLON_COLON, + [17082] = 4, + ACTIONS(2751), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2749), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85548,10 +86973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 29, + ACTIONS(2747), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85578,14 +87004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16621] = 4, + [17139] = 4, + ACTIONS(2757), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2700), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2702), 15, + ACTIONS(2755), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85601,10 +87026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 29, + ACTIONS(2753), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85631,11 +87057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16678] = 3, + [17196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 15, + ACTIONS(2761), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85651,7 +87077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2704), 31, + ACTIONS(2759), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85683,11 +87109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16733] = 3, + [17251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 15, + ACTIONS(2602), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85698,12 +87124,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(2708), 31, + ACTIONS(2600), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85715,15 +87143,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, @@ -85733,16 +87160,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, - [16788] = 4, + [17306] = 5, + ACTIONS(2663), 1, + anon_sym_COLON_COLON, + ACTIONS(2763), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2702), 15, + ACTIONS(2657), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85758,7 +87185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 29, + ACTIONS(2655), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85788,11 +87215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16845] = 3, + [17365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + ACTIONS(2767), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85808,7 +87235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2714), 31, + ACTIONS(2765), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85840,13 +87267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16900] = 4, - ACTIONS(2722), 1, - anon_sym_DASH_GT, + [17420] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2720), 15, + ACTIONS(2771), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85862,7 +87287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2718), 30, + ACTIONS(2769), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85874,6 +87299,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, @@ -85893,11 +87319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16957] = 3, + [17475] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 15, + ACTIONS(2775), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85913,7 +87339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2724), 31, + ACTIONS(2773), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85925,8 +87351,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, @@ -85945,11 +87371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17012] = 3, + [17530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2779), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85965,7 +87391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2728), 31, + ACTIONS(2777), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85997,15 +87423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17067] = 5, - ACTIONS(2732), 1, - anon_sym_else, - STATE(952), 1, - sym_else_clause, + [17585] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(402), 15, + ACTIONS(2783), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86021,7 +87443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(400), 29, + ACTIONS(2781), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86033,6 +87455,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, @@ -86051,13 +87474,215 @@ 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(2738), 1, - anon_sym_DASH_GT, + [17639] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 15, + ACTIONS(1274), 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(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, + [17693] = 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, + 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, + [17747] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1086), 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(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, + [17801] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1206), 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(1208), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(627), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86073,7 +87698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2734), 30, + ACTIONS(625), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86104,13 +87729,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17183] = 4, - ACTIONS(2744), 1, - anon_sym_DASH_GT, + [17909] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1352), 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(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, + [17963] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + ACTIONS(1356), 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(1358), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1420), 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(1422), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18071] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2787), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86126,7 +87902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2740), 30, + ACTIONS(2785), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86157,11 +87933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17240] = 3, + [18125] = 4, + ACTIONS(2663), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 15, + ACTIONS(2657), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86177,11 +87955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2746), 31, + ACTIONS(2655), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86190,7 +87967,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, @@ -86209,13 +87985,11 @@ 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(2686), 1, - anon_sym_COLON_COLON, + [18181] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 15, + ACTIONS(2791), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86231,7 +88005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2594), 30, + ACTIONS(2789), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86262,11 +88036,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, + [18235] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 15, + ACTIONS(2795), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86282,7 +88056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2750), 31, + ACTIONS(2793), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86294,7 +88068,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, @@ -86314,13 +88087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17407] = 4, - ACTIONS(2758), 1, - anon_sym_DASH_GT, + [18289] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, + ACTIONS(2441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86336,7 +88107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2754), 30, + ACTIONS(2443), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86367,11 +88138,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17464] = 3, + [18343] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1740), 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(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, + [18397] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86379,7 +88201,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1268), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1348), 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(1350), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86418,11 +88291,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17518] = 3, + [18505] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1296), 7, + ACTIONS(2799), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2797), 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, + [18559] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86430,7 +88354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1298), 38, + ACTIONS(1426), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86469,11 +88393,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17572] = 3, + [18613] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 7, + ACTIONS(1428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86481,7 +88405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1560), 38, + ACTIONS(1430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86520,11 +88444,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17626] = 3, + [18667] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(1440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86532,7 +88456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86571,11 +88495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17680] = 3, + [18721] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(1492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86583,7 +88507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(1494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86622,62 +88546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17734] = 3, + [18775] = 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(1648), 7, + ACTIONS(1516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86685,7 +88558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86724,62 +88597,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17842] = 3, + [18829] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2431), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2433), 30, + ACTIONS(1636), 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, - [17896] = 3, + 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, + [18883] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(2803), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86795,7 +88668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 30, + ACTIONS(2801), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86826,11 +88699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17950] = 3, + [18937] = 4, + ACTIONS(2805), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(575), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86846,11 +88721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 30, + ACTIONS(577), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86877,11 +88751,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18004] = 3, + [18993] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(432), 15, + ACTIONS(2729), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86897,7 +88771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(430), 30, + ACTIONS(2725), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86928,11 +88802,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, + [19047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1684), 7, + ACTIONS(1764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86940,7 +88814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86979,11 +88853,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18112] = 3, + [19101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(2809), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2807), 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, + [19155] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86991,7 +88916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1774), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87030,11 +88955,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18166] = 3, + [19209] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(1412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87042,7 +88967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87081,11 +89006,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18220] = 3, + [19263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + ACTIONS(1780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87093,7 +89018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1782), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87132,11 +89057,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18274] = 3, + [19317] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87144,7 +89069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87183,11 +89108,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18328] = 3, + [19371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87195,7 +89120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87234,11 +89159,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18382] = 3, + [19425] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87246,7 +89171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87285,11 +89210,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18436] = 3, + [19479] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87297,7 +89222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87336,11 +89261,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18490] = 3, + [19533] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(1524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87348,7 +89273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87387,11 +89312,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18544] = 3, + [19587] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87399,7 +89324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87438,11 +89363,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18598] = 3, + [19641] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(589), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(587), 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, + [19695] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87450,7 +89426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87489,11 +89465,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18652] = 3, + [19749] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(1848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87501,7 +89477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87540,11 +89516,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18706] = 3, + [19803] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1756), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87552,7 +89528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(1882), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87591,11 +89567,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18760] = 3, + [19857] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87603,7 +89579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1774), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87642,11 +89618,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18814] = 3, + [19911] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1780), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87654,7 +89630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1782), 38, + ACTIONS(1982), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87693,11 +89669,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18868] = 3, + [19965] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1784), 7, + ACTIONS(2813), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2811), 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, + [20019] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(435), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(433), 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, + [20073] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87705,7 +89783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1786), 38, + ACTIONS(1986), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87744,11 +89822,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18922] = 3, + [20127] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + ACTIONS(431), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(429), 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, + [20181] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2016), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87756,7 +89885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1794), 38, + ACTIONS(2018), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87795,11 +89924,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18976] = 3, + [20235] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + ACTIONS(2817), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2815), 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, + [20289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2821), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2819), 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, + [20343] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87807,7 +90038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1990), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87846,11 +90077,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19030] = 3, + [20397] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + ACTIONS(2825), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2823), 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, + [20451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87858,7 +90140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87897,11 +90179,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19084] = 3, + [20505] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(2829), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87917,7 +90199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 30, + ACTIONS(2827), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87948,62 +90230,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19138] = 3, + [20559] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + ACTIONS(593), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(591), 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, - [19192] = 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, + [20613] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1820), 7, + ACTIONS(1744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88011,7 +90293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1822), 38, + ACTIONS(1746), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88050,11 +90332,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19246] = 3, + [20667] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + ACTIONS(1536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88062,7 +90344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88101,11 +90383,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19300] = 3, + [20721] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 15, + ACTIONS(2833), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88121,7 +90403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2776), 30, + ACTIONS(2831), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88152,11 +90434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19354] = 3, + [20775] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(2837), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88172,7 +90454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2780), 30, + ACTIONS(2835), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88203,113 +90485,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19408] = 3, + [20829] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1840), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2841), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, 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, - [19462] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1056), 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(2839), 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(1058), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19516] = 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, + [20883] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88317,7 +90548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88356,11 +90587,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19570] = 3, + [20937] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + ACTIONS(1380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88368,7 +90599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88407,11 +90638,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19624] = 3, + [20991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1880), 7, + ACTIONS(1796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88419,7 +90650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1882), 38, + ACTIONS(1798), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88458,11 +90689,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19678] = 3, + [21045] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1888), 7, + ACTIONS(1372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88470,7 +90701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1890), 38, + ACTIONS(1374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88509,62 +90740,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19732] = 3, + [21099] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1904), 7, + ACTIONS(2845), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2843), 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(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, + 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, + [21153] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1952), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88572,7 +90803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1954), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88611,11 +90842,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19840] = 3, + [21207] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(494), 15, + ACTIONS(2845), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88631,7 +90862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(492), 30, + ACTIONS(2843), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88662,11 +90893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19894] = 3, + [21261] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1982), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88674,7 +90905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88713,11 +90944,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19948] = 3, + [21315] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, + ACTIONS(1298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88725,7 +90956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88764,11 +90995,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20002] = 3, + [21369] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88776,7 +91007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88815,11 +91046,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20056] = 3, + [21423] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, + ACTIONS(2849), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88835,7 +91066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2784), 30, + ACTIONS(2847), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88866,11 +91097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20110] = 3, + [21477] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88878,7 +91109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1838), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88917,11 +91148,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20164] = 3, + [21531] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88929,7 +91160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88968,11 +91199,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20218] = 3, + [21585] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88980,7 +91211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89019,113 +91250,266 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20272] = 3, + [21639] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, + ACTIONS(2445), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2447), 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, + [21693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(553), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1964), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20326] = 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(551), 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, + [21747] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(324), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(322), 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, + [21801] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1958), 7, + ACTIONS(2853), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2851), 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, + [21855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2431), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, 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, - [20380] = 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(2433), 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, + [21909] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 15, + ACTIONS(2857), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89141,7 +91525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2788), 30, + ACTIONS(2855), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89172,11 +91556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20434] = 3, + [21963] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89184,7 +91568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1954), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89223,11 +91607,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20488] = 3, + [22017] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89235,7 +91619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89274,62 +91658,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20542] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2794), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - 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), 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, - [20596] = 3, + [22071] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 15, + ACTIONS(2861), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89345,7 +91678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2796), 30, + ACTIONS(2859), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89376,11 +91709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20650] = 3, + [22125] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 15, + ACTIONS(2865), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89396,7 +91729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2800), 30, + ACTIONS(2863), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89427,11 +91760,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, + [22179] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 15, + ACTIONS(2869), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89447,7 +91780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2804), 30, + ACTIONS(2867), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89478,11 +91811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20758] = 3, + [22233] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(448), 15, + ACTIONS(2873), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89498,7 +91831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(446), 30, + ACTIONS(2871), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89529,11 +91862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20812] = 3, + [22287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(464), 15, + ACTIONS(2877), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89549,7 +91882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(462), 30, + ACTIONS(2875), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89580,11 +91913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20866] = 3, + [22341] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 15, + ACTIONS(2881), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89600,7 +91933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2808), 30, + ACTIONS(2879), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89631,11 +91964,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, + [22395] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2814), 15, + ACTIONS(2885), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89651,7 +91984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2812), 30, + ACTIONS(2883), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89682,266 +92015,11 @@ static const uint16_t ts_small_parse_table[] = { 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(1892), 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(1894), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21028] = 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, - [21082] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1868), 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(1870), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21136] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1864), 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(1866), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21190] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1760), 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(1762), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21244] = 3, + [22449] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89949,7 +92027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89988,11 +92066,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21298] = 3, + [22503] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(616), 15, + ACTIONS(2889), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90008,7 +92086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(614), 30, + ACTIONS(2887), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90039,7 +92117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21352] = 3, + [22557] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -90090,62 +92168,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21406] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1582), 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(1584), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21460] = 3, + [22611] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(2893), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2891), 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, + [22665] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90153,7 +92231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90192,11 +92270,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21514] = 3, + [22719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(486), 15, + ACTIONS(2897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90212,7 +92290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(484), 30, + ACTIONS(2895), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90243,11 +92321,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, + [22773] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(2901), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2899), 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, + [22827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90255,7 +92384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90294,11 +92423,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21622] = 3, + [22881] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1416), 7, + ACTIONS(2905), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2903), 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, + [22935] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90306,7 +92486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1418), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90345,11 +92525,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21676] = 3, + [22989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1408), 7, + ACTIONS(421), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90357,7 +92537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1410), 38, + ACTIONS(423), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90396,11 +92576,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21730] = 3, + [23043] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1380), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90408,7 +92588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1382), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90447,11 +92627,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21784] = 3, + [23097] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1372), 7, + ACTIONS(1616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90459,7 +92639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1374), 38, + ACTIONS(1618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90498,11 +92678,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21838] = 3, + [23151] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1368), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90510,7 +92690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1370), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90549,11 +92729,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21892] = 3, + [23205] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1364), 7, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90561,7 +92741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1366), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90600,62 +92780,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21946] = 3, + [23259] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - 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, - 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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1356), 7, + ACTIONS(1360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90663,7 +92792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1358), 38, + ACTIONS(1362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90702,11 +92831,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22054] = 3, + [23313] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1348), 7, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90714,7 +92843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1350), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90753,11 +92882,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22108] = 3, + [23367] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90765,7 +92894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90804,11 +92933,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22162] = 3, + [23421] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90816,7 +92945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90855,11 +92984,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22216] = 3, + [23475] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1340), 7, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90867,7 +92996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1342), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90906,11 +93035,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22270] = 3, + [23529] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1328), 7, + ACTIONS(569), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(567), 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, + [23583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90918,7 +93098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1330), 38, + ACTIONS(1466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90957,11 +93137,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22324] = 3, + [23637] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2818), 15, + ACTIONS(423), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90977,7 +93157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2816), 30, + ACTIONS(421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91008,164 +93188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22378] = 3, + [23691] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1316), 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(1318), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22432] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1288), 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(1290), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22486] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1280), 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(1282), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22540] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1276), 7, + ACTIONS(1396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91173,7 +93200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1278), 38, + ACTIONS(1398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91212,11 +93239,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22594] = 3, + [23745] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1260), 7, + ACTIONS(1388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91224,7 +93251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1262), 38, + ACTIONS(1390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91263,11 +93290,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22648] = 3, + [23799] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + ACTIONS(1368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91275,7 +93302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1246), 38, + ACTIONS(1370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91314,58 +93341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22702] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2822), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2820), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22756] = 3, + [23853] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -91416,11 +93392,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22810] = 3, + [23907] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1752), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91428,7 +93404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91467,11 +93443,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22864] = 3, + [23961] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1164), 7, + ACTIONS(417), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91479,7 +93455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1166), 38, + ACTIONS(419), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91518,11 +93494,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22918] = 3, + [24015] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1160), 7, + ACTIONS(629), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91530,7 +93506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1162), 38, + ACTIONS(631), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91569,11 +93545,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22972] = 3, + [24069] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1156), 7, + ACTIONS(567), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91581,7 +93557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1158), 38, + ACTIONS(569), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91620,11 +93596,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23026] = 3, + [24123] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1152), 7, + ACTIONS(1306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91632,7 +93608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1154), 38, + ACTIONS(1308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91671,11 +93647,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23080] = 3, + [24177] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1100), 7, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91683,7 +93659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1102), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91722,11 +93698,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23134] = 3, + [24231] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91734,7 +93710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91773,11 +93749,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23188] = 3, + [24285] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91785,7 +93761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91824,62 +93800,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23242] = 3, + [24339] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(478), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(476), 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, - [23296] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1088), 7, + ACTIONS(563), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91887,7 +93812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1090), 38, + ACTIONS(565), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91926,11 +93851,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23350] = 3, + [24393] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91938,7 +93863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91977,11 +93902,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23404] = 3, + [24447] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(600), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91989,7 +93914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(602), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92028,11 +93953,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23458] = 3, + [24501] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1776), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92040,7 +93965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92079,11 +94004,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23512] = 3, + [24555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1808), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92091,7 +94016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1810), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92130,11 +94055,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23566] = 3, + [24609] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + ACTIONS(613), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92142,7 +94067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1434), 38, + ACTIONS(615), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92181,62 +94106,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23620] = 3, + [24663] = 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, + ACTIONS(425), 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, - [23674] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(427), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24717] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92244,7 +94169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1092), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92283,11 +94208,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23728] = 3, + [24771] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, + ACTIONS(2427), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92303,7 +94228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2828), 30, + ACTIONS(2429), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92334,11 +94259,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23782] = 3, + [24825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1828), 7, + ACTIONS(2909), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2907), 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, + [24879] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92346,7 +94322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92385,11 +94361,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23836] = 3, + [24933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1080), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92397,7 +94373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1082), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92436,11 +94412,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23890] = 3, + [24987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92448,7 +94424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92487,11 +94463,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23944] = 3, + [25041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1076), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92499,7 +94475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1078), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92538,11 +94514,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23998] = 3, + [25095] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92550,7 +94526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92589,11 +94565,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24052] = 3, + [25149] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 7, + ACTIONS(2012), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92601,7 +94577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(598), 38, + ACTIONS(2014), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92629,124 +94605,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mod, anon_sym_pub, anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [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(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, - [24214] = 3, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1072), 7, + ACTIONS(2000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92754,7 +94628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1074), 38, + ACTIONS(2002), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92793,11 +94667,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24268] = 3, + [25257] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1068), 7, + ACTIONS(2004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92805,7 +94679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1070), 38, + ACTIONS(2006), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92844,62 +94718,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24322] = 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, - 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, - [24376] = 3, + [25311] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92907,7 +94730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92946,11 +94769,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24430] = 3, + [25365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1832), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92958,7 +94781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1834), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92997,11 +94820,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24484] = 3, + [25419] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1836), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93009,7 +94832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1838), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93048,11 +94871,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24538] = 3, + [25473] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93060,7 +94883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93099,11 +94922,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24592] = 3, + [25527] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93111,7 +94934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93150,113 +94973,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [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, + [25581] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93264,7 +94985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1842), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93303,11 +95024,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24808] = 3, + [25635] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93315,7 +95036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1978), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93354,11 +95075,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24862] = 3, + [25689] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93366,7 +95087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1970), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93405,11 +95126,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24916] = 3, + [25743] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2850), 15, + ACTIONS(443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93425,7 +95146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2848), 30, + ACTIONS(441), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93456,11 +95177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24970] = 3, + [25797] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1440), 7, + ACTIONS(1190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93468,7 +95189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1442), 38, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93507,164 +95228,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [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, + [25851] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 15, + ACTIONS(565), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93680,7 +95248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2864), 30, + ACTIONS(563), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93711,113 +95279,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25240] = 3, + [25905] = 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, + ACTIONS(1956), 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, - [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_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(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, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1958), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1436), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93825,7 +95342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93864,11 +95381,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25402] = 3, + [26013] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1060), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93876,7 +95393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1062), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93915,11 +95432,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25456] = 3, + [26067] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1392), 7, + ACTIONS(1198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93927,7 +95444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1394), 38, + ACTIONS(1200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93966,11 +95483,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25510] = 3, + [26121] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(549), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(547), 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, + [26175] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93978,7 +95546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94017,11 +95585,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25564] = 3, + [26229] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1428), 7, + ACTIONS(1270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94029,7 +95597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1430), 38, + ACTIONS(1272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94068,11 +95636,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25618] = 3, + [26283] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1420), 7, + ACTIONS(1432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94080,7 +95648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1422), 38, + ACTIONS(1434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94119,11 +95687,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25672] = 3, + [26337] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1412), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94131,7 +95699,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1414), 38, + 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, + [26391] = 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, + 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, + [26445] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1074), 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(1076), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94170,11 +95840,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25726] = 3, + [26499] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 15, + ACTIONS(2913), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94190,7 +95860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(608), 30, + ACTIONS(2911), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94221,11 +95891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25780] = 3, + [26553] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1388), 7, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94233,7 +95903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1390), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94272,11 +95942,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25834] = 3, + [26607] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94284,7 +95954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94323,11 +95993,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25888] = 3, + [26661] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94335,7 +96005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94374,11 +96044,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25942] = 3, + [26715] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + ACTIONS(1608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94386,7 +96056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1610), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94425,62 +96095,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25996] = 3, + [26769] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(1912), 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, - [26050] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1914), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(412), 15, + ACTIONS(2917), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94496,7 +96166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(410), 30, + ACTIONS(2915), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94527,11 +96197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26104] = 3, + [26877] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1872), 7, + ACTIONS(1716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94539,7 +96209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1874), 38, + ACTIONS(1718), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94578,11 +96248,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26158] = 3, + [26931] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1900), 7, + ACTIONS(1596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94590,7 +96260,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(1598), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26985] = 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, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94629,11 +96350,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26212] = 3, + [27039] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94641,7 +96362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94680,11 +96401,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26266] = 3, + [27093] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94692,7 +96413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94731,11 +96452,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26320] = 3, + [27147] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94743,7 +96464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1862), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94782,11 +96503,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26374] = 3, + [27201] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 15, + ACTIONS(2921), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94802,7 +96523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(596), 30, + ACTIONS(2919), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94833,11 +96554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26428] = 3, + [27255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(474), 15, + ACTIONS(2925), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94853,7 +96574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(472), 30, + ACTIONS(2923), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94884,11 +96605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26482] = 3, + [27309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1716), 7, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94896,7 +96617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1718), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94935,11 +96656,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26536] = 3, + [27363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1642), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94947,7 +96668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1644), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94986,11 +96707,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26590] = 3, + [27417] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94998,7 +96719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95037,11 +96758,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26644] = 3, + [27471] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95049,7 +96770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95088,11 +96809,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26698] = 3, + [27525] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2874), 15, + ACTIONS(585), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95108,7 +96829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2872), 30, + ACTIONS(583), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95139,11 +96860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26752] = 3, + [27579] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + ACTIONS(1520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95151,7 +96872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95190,11 +96911,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26806] = 3, + [27633] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95202,7 +96923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1310), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95241,11 +96962,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26860] = 3, + [27687] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95253,7 +96974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95292,11 +97013,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26914] = 3, + [27741] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95304,7 +97025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95343,11 +97064,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26968] = 3, + [27795] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95355,7 +97076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1552), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95394,62 +97115,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27022] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(424), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(422), 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, - [27076] = 3, + [27849] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1304), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95457,7 +97127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(1950), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95496,62 +97166,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27130] = 3, + [27903] = 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, + ACTIONS(2008), 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, - [27184] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2010), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27957] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(1484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95559,7 +97229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95598,11 +97268,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27238] = 3, + [28011] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2367), 15, + ACTIONS(2929), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95618,7 +97288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2369), 30, + ACTIONS(2927), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95649,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, - [27292] = 3, + [28065] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95661,7 +97331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95700,62 +97370,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27346] = 3, + [28119] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(2933), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2931), 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(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, + 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, + [28173] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95763,7 +97433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95802,11 +97472,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27454] = 3, + [28227] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1292), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95814,7 +97484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1294), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95853,11 +97523,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27508] = 3, + [28281] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1284), 7, + ACTIONS(601), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(599), 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, + [28335] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95865,7 +97586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1286), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95904,11 +97625,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27562] = 3, + [28389] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1272), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95916,7 +97637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1274), 38, + ACTIONS(1966), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95955,11 +97676,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27616] = 3, + [28443] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1264), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95967,7 +97688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1266), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96006,11 +97727,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27670] = 3, + [28497] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(2937), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2935), 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, + [28551] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2630), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2628), 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, + [28605] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96018,7 +97841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96057,11 +97880,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27724] = 3, + [28659] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96069,7 +97892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96108,11 +97931,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27778] = 3, + [28713] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1256), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96120,7 +97943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1258), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96159,11 +97982,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27832] = 3, + [28767] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + ACTIONS(1604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96171,7 +97994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(1606), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96210,11 +98033,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27886] = 3, + [28821] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96222,7 +98045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96261,11 +98084,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27940] = 3, + [28875] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(2941), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96281,7 +98104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 30, + ACTIONS(2939), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96312,11 +98135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27994] = 3, + [28929] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1928), 7, + ACTIONS(1530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96324,7 +98147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(1532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96363,113 +98186,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28048] = 3, + [28983] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 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(1238), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28102] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, + ACTIONS(1504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96477,7 +98198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96516,11 +98237,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28210] = 3, + [29037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96528,7 +98249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96567,11 +98288,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28264] = 3, + [29091] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96579,7 +98300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96618,62 +98339,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28318] = 3, + [29145] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2886), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2884), 30, + ACTIONS(1468), 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, - [28372] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1470), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29199] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1216), 7, + ACTIONS(1460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96681,7 +98402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(1462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96720,11 +98441,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28426] = 3, + [29253] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2890), 15, + ACTIONS(2945), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96740,7 +98461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2888), 30, + ACTIONS(2943), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96771,11 +98492,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, + [29307] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 15, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96791,7 +98512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2594), 30, + ACTIONS(2608), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96822,11 +98543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28534] = 3, + [29361] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96834,7 +98555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96873,11 +98594,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28588] = 3, + [29415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96885,7 +98606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1438), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96924,62 +98645,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28642] = 3, + [29469] = 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(1200), 7, + ACTIONS(1416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96987,7 +98657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1202), 38, + ACTIONS(1418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97026,62 +98696,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [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, + [29523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1196), 7, + ACTIONS(1408), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97089,7 +98708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1198), 38, + ACTIONS(1410), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97128,62 +98747,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28858] = 3, + [29577] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1188), 7, + ACTIONS(2949), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2947), 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(1190), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28912] = 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, + [29631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1176), 7, + ACTIONS(1400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97191,7 +98810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1178), 38, + ACTIONS(1402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97230,11 +98849,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28966] = 3, + [29685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1172), 7, + ACTIONS(2953), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2951), 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, + [29739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97242,7 +98912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1174), 38, + ACTIONS(1394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97281,11 +98951,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29020] = 3, + [29793] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1180), 7, + ACTIONS(1384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97293,7 +98963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1182), 38, + ACTIONS(1386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97332,11 +99002,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29074] = 3, + [29847] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(602), 15, + ACTIONS(2957), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97352,7 +99022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(600), 30, + ACTIONS(2955), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97383,113 +99053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29128] = 3, + [29901] = 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(1990), 7, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97497,7 +99065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97536,11 +99104,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29290] = 3, + [29955] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97548,7 +99116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97587,11 +99155,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29344] = 3, + [30009] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2427), 15, + ACTIONS(2961), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97607,7 +99175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2429), 30, + ACTIONS(2959), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97638,11 +99206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29398] = 3, + [30063] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2902), 15, + ACTIONS(2965), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97658,7 +99226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2900), 30, + ACTIONS(2963), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97689,11 +99257,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, + [30117] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1148), 7, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97701,7 +99269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1150), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97740,63 +99308,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29506] = 4, - ACTIONS(2904), 1, - anon_sym_COLON_COLON, + [30171] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1226), 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(458), 29, + 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, + [30225] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1218), 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, - [29562] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1220), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30279] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1192), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97804,7 +99422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1194), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97843,11 +99461,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29616] = 3, + [30333] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97855,7 +99473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1206), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97894,11 +99512,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29670] = 3, + [30387] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1144), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97906,7 +99524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1146), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97945,11 +99563,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29724] = 3, + [30441] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1136), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97957,7 +99575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1138), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97996,11 +99614,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29778] = 3, + [30495] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1128), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98008,7 +99626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1130), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98047,11 +99665,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29832] = 3, + [30549] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1108), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98059,7 +99677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1110), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98098,164 +99716,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29886] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(428), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(426), 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, - [29940] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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_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, - [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_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - 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, + [30603] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1092), 7, + ACTIONS(1094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98263,7 +99728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1094), 38, + ACTIONS(1096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98302,62 +99767,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30102] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, + [30657] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1064), 7, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98365,7 +99779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1066), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98404,11 +99818,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30210] = 3, + [30711] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1970), 7, + ACTIONS(1314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98416,7 +99830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(1316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98455,164 +99869,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30264] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, + [30765] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98620,7 +99881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98659,62 +99920,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30480] = 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_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, + [30819] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1848), 7, + ACTIONS(1364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98722,7 +99932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1850), 38, + ACTIONS(1366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98761,113 +99971,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30588] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, + [30873] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 7, + ACTIONS(1166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98875,7 +99983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(1168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98914,11 +100022,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30750] = 3, + [30927] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 15, + ACTIONS(615), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98934,7 +100042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2650), 30, + ACTIONS(613), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98965,62 +100073,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30804] = 3, + [30981] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1084), 7, + ACTIONS(2669), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2665), 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(1086), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30858] = 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, + [31035] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1116), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99028,7 +100136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1118), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99067,62 +100175,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30912] = 3, + [31089] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1120), 7, + ACTIONS(619), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(617), 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, + [31143] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2969), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1122), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30966] = 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(2967), 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, + [31197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1078), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99130,7 +100289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1080), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99169,11 +100328,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31020] = 3, + [31251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1124), 7, + ACTIONS(1752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99181,7 +100340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1126), 38, + ACTIONS(1754), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99220,11 +100379,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31074] = 3, + [31305] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 15, + ACTIONS(2973), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99240,7 +100399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2922), 30, + ACTIONS(2971), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99271,11 +100430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31128] = 3, + [31359] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2928), 15, + ACTIONS(2977), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99291,7 +100450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2926), 30, + ACTIONS(2975), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99322,62 +100481,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1134), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31236] = 3, + [31413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 7, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99385,7 +100493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1564), 38, + ACTIONS(1590), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99424,11 +100532,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31290] = 3, + [31467] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99436,7 +100544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99475,11 +100583,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31344] = 3, + [31521] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99487,7 +100595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99526,11 +100634,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31398] = 3, + [31575] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1140), 7, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99538,7 +100646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1142), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99577,62 +100685,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31452] = 3, + [31629] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2932), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2930), 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, - [31506] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99640,7 +100697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99679,11 +100736,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31560] = 3, + [31683] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2936), 15, + ACTIONS(419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99699,7 +100756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2934), 30, + ACTIONS(417), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99730,11 +100787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31614] = 3, + [31737] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2940), 15, + ACTIONS(631), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99750,7 +100807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2938), 30, + ACTIONS(629), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99781,58 +100838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31668] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2944), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2942), 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, - [31722] = 3, + [31791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -99883,62 +100889,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31776] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, + [31845] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1360), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99946,7 +100901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1362), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99985,11 +100940,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31884] = 3, + [31899] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1168), 7, + ACTIONS(1756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99997,7 +100952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1170), 38, + ACTIONS(1758), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100036,11 +100991,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31938] = 3, + [31953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1184), 7, + ACTIONS(439), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(437), 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, + [32007] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100048,7 +101054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1186), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100087,11 +101093,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31992] = 3, + [32061] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1252), 7, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100099,7 +101105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1254), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100138,11 +101144,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32046] = 3, + [32115] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1268), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100150,7 +101156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1270), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100189,62 +101195,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [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, + [32169] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100252,7 +101207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1878), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100291,113 +101246,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32208] = 3, + [32223] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(1960), 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, - [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_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(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, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1962), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32277] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2964), 15, + ACTIONS(2981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100413,7 +101317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2962), 30, + ACTIONS(2979), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100444,62 +101348,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1314), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32424] = 3, + [32331] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1876), 7, + ACTIONS(1992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100507,7 +101360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1878), 38, + ACTIONS(1994), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100546,11 +101399,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32478] = 3, + [32385] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1320), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100558,7 +101411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1322), 38, + ACTIONS(1942), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100597,62 +101450,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [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, + [32439] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1324), 7, + ACTIONS(1668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100660,7 +101462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1326), 38, + ACTIONS(1670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100699,11 +101501,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32640] = 3, + [32493] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1332), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100711,7 +101513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1334), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100750,11 +101552,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32694] = 3, + [32547] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1844), 7, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100762,7 +101564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1846), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100801,11 +101603,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32748] = 3, + [32601] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1336), 7, + ACTIONS(1186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100813,7 +101615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1338), 38, + ACTIONS(1188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100852,11 +101654,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32802] = 3, + [32655] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1384), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100864,7 +101666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1386), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100903,11 +101705,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32856] = 3, + [32709] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1396), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100915,7 +101717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1398), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100954,11 +101756,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32910] = 3, + [32763] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1400), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100966,7 +101768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1402), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101005,11 +101807,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32964] = 3, + [32817] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1404), 7, + ACTIONS(1472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101017,7 +101819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1406), 38, + ACTIONS(1474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101056,11 +101858,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33018] = 3, + [32871] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + ACTIONS(1488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101068,7 +101870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1426), 38, + ACTIONS(1490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101107,11 +101909,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33072] = 3, + [32925] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101119,7 +101921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101158,11 +101960,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33126] = 3, + [32979] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101170,7 +101972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101209,11 +102011,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33180] = 3, + [33033] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(410), 7, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101221,7 +102023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(412), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101260,11 +102062,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33234] = 3, + [33087] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101272,7 +102074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1938), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101311,11 +102113,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33288] = 3, + [33141] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101323,7 +102125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101362,11 +102164,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33342] = 3, + [33195] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101374,7 +102176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(408), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101413,11 +102215,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33396] = 3, + [33249] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101425,7 +102227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101464,11 +102266,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33450] = 3, + [33303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101476,7 +102278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101515,11 +102317,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33504] = 3, + [33357] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101527,7 +102329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1802), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101566,11 +102368,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33558] = 3, + [33411] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + ACTIONS(1612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101578,7 +102380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1614), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101617,11 +102419,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33612] = 3, + [33465] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(414), 7, + ACTIONS(1508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101629,7 +102431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(416), 38, + ACTIONS(1510), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101668,11 +102470,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33666] = 3, + [33519] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1570), 7, + ACTIONS(447), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(445), 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, + [33573] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101680,7 +102533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1572), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101719,11 +102572,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33720] = 3, + [33627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1796), 7, + ACTIONS(561), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(559), 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, + [33681] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2634), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2632), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + 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, + [33735] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101731,7 +102686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1798), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101770,11 +102725,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33774] = 3, + [33789] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1104), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101782,7 +102737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1106), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101821,11 +102776,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33828] = 3, + [33843] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(312), 15, + ACTIONS(2985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101841,7 +102796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(310), 30, + ACTIONS(2983), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101872,11 +102827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33882] = 3, + [33897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101884,7 +102839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1998), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101923,11 +102878,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33936] = 3, + [33951] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101935,7 +102890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101974,62 +102929,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33990] = 3, + [34005] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 7, + ACTIONS(623), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(621), 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(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, + 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, + [34059] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102037,7 +102992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102076,11 +103031,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34098] = 3, + [34113] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(611), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(609), 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, + [34167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102088,7 +103094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102127,11 +103133,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34152] = 3, + [34221] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102139,7 +103145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102178,11 +103184,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34206] = 3, + [34275] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2397), 15, + ACTIONS(427), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102198,7 +103204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2399), 30, + ACTIONS(425), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102229,13 +103235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34260] = 4, - ACTIONS(2628), 1, - anon_sym_COLON_COLON, + [34329] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + ACTIONS(557), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102251,10 +103255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 29, + ACTIONS(555), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -102281,11 +103286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34316] = 3, + [34383] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102293,7 +103298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102332,62 +103337,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34370] = 3, + [34437] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2972), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2970), 30, + ACTIONS(1262), 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, - [34424] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1264), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34491] = 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, @@ -102395,7 +103400,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, @@ -102434,11 +103439,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34478] = 3, + [34545] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102446,7 +103451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102485,11 +103490,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34532] = 3, + [34599] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(438), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102497,7 +103502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(440), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102536,11 +103541,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34586] = 3, + [34653] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102548,7 +103553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102587,11 +103592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34640] = 3, + [34707] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102599,7 +103604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1084), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102638,11 +103643,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34694] = 3, + [34761] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(444), 15, + ACTIONS(2989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102658,7 +103663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(442), 30, + ACTIONS(2987), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102689,51 +103694,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34748] = 14, - 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, + [34815] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2993), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2980), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2974), 25, + anon_sym_DOT, + ACTIONS(2991), 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, @@ -102750,39 +103745,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34823] = 11, - ACTIONS(2976), 1, + [34869] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1182), 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(1184), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34923] = 5, + ACTIONS(2995), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2469), 9, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(2982), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2467), 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, + [34980] = 18, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2990), 1, + ACTIONS(3008), 1, + anon_sym_EQ, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2974), 25, + ACTIONS(3026), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2998), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102792,12 +103903,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, @@ -102808,20 +103913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34892] = 7, - ACTIONS(2976), 1, + [35063] = 7, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3002), 13, + ACTIONS(3034), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102835,7 +103940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3000), 26, + ACTIONS(3032), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102844,75 +103949,42 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [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, + 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, + [35124] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3006), 2, + ACTIONS(3038), 12, 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_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(3036), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102930,52 +104002,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35042] = 18, - ACTIONS(2976), 1, + 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, + [35177] = 18, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3024), 1, + ACTIONS(3042), 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, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3022), 19, + ACTIONS(3040), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102995,57 +104082,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [35260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3014), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3034), 2, + ACTIONS(3046), 12, anon_sym_SEMI, + anon_sym_LPAREN, 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_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(3044), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103063,11 +104117,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35214] = 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, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35313] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3038), 12, + ACTIONS(3050), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103080,7 +104149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3036), 32, + ACTIONS(3048), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103113,11 +104182,78 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35267] = 3, + [35366] = 20, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3016), 1, + anon_sym_DOT_DOT, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3052), 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(3058), 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, + [35453] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3042), 12, + ACTIONS(3062), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103130,7 +104266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3040), 32, + ACTIONS(3060), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103163,52 +104299,52 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35320] = 18, - ACTIONS(2976), 1, + [35506] = 18, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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(3046), 1, - anon_sym_EQ, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3044), 19, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103228,13 +104364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35403] = 4, - ACTIONS(3052), 1, + [35589] = 4, + ACTIONS(3068), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3050), 14, + ACTIONS(3066), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -103249,7 +104385,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3048), 29, + ACTIONS(3064), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103279,52 +104415,52 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35458] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(2976), 1, + [35644] = 18, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, + anon_sym_DOT, + ACTIONS(3072), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 19, + ACTIONS(3070), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103344,24 +104480,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35541] = 3, + [35727] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(884), 1, + anon_sym_COLON_COLON, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3074), 1, + sym_identifier, + ACTIONS(3078), 1, + anon_sym_LPAREN, + ACTIONS(3080), 1, + anon_sym_STAR, + ACTIONS(3086), 1, + anon_sym_for, + ACTIONS(3088), 1, + anon_sym_AMP, + ACTIONS(3090), 1, + sym_metavariable, + STATE(1827), 1, + sym_scoped_type_identifier, + STATE(1918), 1, + sym_where_predicate, + STATE(1926), 1, + sym_generic_type, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, + STATE(2514), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3056), 12, + ACTIONS(3076), 2, 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(3054), 32, + ACTIONS(3084), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(890), 3, + sym_self, + sym_super, + sym_crate, + STATE(2301), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3082), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103379,53 +104548,229 @@ 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, + [35816] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(884), 1, + anon_sym_COLON_COLON, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3074), 1, + sym_identifier, + ACTIONS(3078), 1, + anon_sym_LPAREN, + ACTIONS(3080), 1, + anon_sym_STAR, + ACTIONS(3086), 1, anon_sym_for, - anon_sym_impl, + ACTIONS(3088), 1, + anon_sym_AMP, + ACTIONS(3090), 1, + sym_metavariable, + STATE(1827), 1, + sym_scoped_type_identifier, + STATE(1918), 1, + sym_where_predicate, + STATE(1926), 1, + sym_generic_type, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, + STATE(2514), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3084), 2, + anon_sym_default, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, + ACTIONS(3092), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - [35594] = 10, - ACTIONS(2976), 1, + STATE(2301), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3082), 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, + [35905] = 18, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2990), 1, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, anon_sym_DOT, + ACTIONS(3096), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 8, + ACTIONS(3026), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3094), 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, + [35988] = 7, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3016), 1, + anon_sym_DOT_DOT, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3014), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3100), 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(3098), 26, + 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_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, + [36049] = 14, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3016), 1, + anon_sym_DOT_DOT, + ACTIONS(3022), 1, anon_sym_PIPE, + ACTIONS(3024), 1, anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3014), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2974), 25, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3104), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3102), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103451,11 +104796,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35661] = 3, + [36124] = 18, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3016), 1, + anon_sym_DOT_DOT, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3108), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3106), 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, + [36207] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3060), 12, + ACTIONS(3112), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103468,7 +104878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3058), 32, + ACTIONS(3110), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103501,20 +104911,22 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35714] = 7, - ACTIONS(2976), 1, + [36260] = 8, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2990), 1, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3064), 13, + ACTIONS(3104), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103528,7 +104940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3062), 26, + ACTIONS(3102), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103536,7 +104948,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, @@ -103555,40 +104966,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35775] = 12, - ACTIONS(2976), 1, + [36323] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3116), 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(3114), 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, + [36376] = 9, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(3030), 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, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 5, + ACTIONS(3104), 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(2974), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3102), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103614,41 +105072,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35846] = 13, - ACTIONS(2976), 1, + [36441] = 7, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3030), 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, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2980), 3, + ACTIONS(3120), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2984), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2974), 25, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3118), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103656,6 +105107,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, @@ -103674,63 +105126,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35919] = 20, - ACTIONS(2976), 1, + [36502] = 16, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3104), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3066), 8, + ACTIONS(3102), 21, 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(3072), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103741,50 +105189,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36006] = 17, - ACTIONS(2976), 1, + [36581] = 17, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2984), 1, - anon_sym_EQ, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, + ACTIONS(3104), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2974), 20, + ACTIONS(3102), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103805,48 +105253,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36087] = 16, - ACTIONS(2976), 1, + [36662] = 11, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2984), 1, - anon_sym_EQ, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 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, + ACTIONS(3104), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3102), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103858,71 +105297,10 @@ 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, @@ -103933,13 +105311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36249] = 4, - ACTIONS(3082), 1, + [36731] = 4, + ACTIONS(3126), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3080), 14, + ACTIONS(3124), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -103954,7 +105332,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3078), 29, + ACTIONS(3122), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103984,152 +105362,38 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36304] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3086), 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(3084), 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, - [36357] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3090), 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(3088), 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, - [36410] = 18, - ACTIONS(2976), 1, + [36786] = 10, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 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(3094), 1, - anon_sym_EQ, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3014), 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, + ACTIONS(3004), 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(3092), 19, + ACTIONS(3104), 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(3102), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104139,6 +105403,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, @@ -104149,151 +105419,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [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, - 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, + [36853] = 12, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 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, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 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(3099), 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, - [36633] = 7, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3105), 13, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3104), 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(3103), 26, + ACTIONS(3102), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104301,7 +105460,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, @@ -104320,54 +105478,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36694] = 20, - ACTIONS(2976), 1, + [36924] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 8, + ACTIONS(3128), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104376,7 +105534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104387,92 +105545,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36781] = 8, - ACTIONS(2976), 1, + [37011] = 13, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2990), 1, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3016), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 13, + ACTIONS(3002), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, - [36844] = 9, - 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(2988), 2, + ACTIONS(3014), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 10, - anon_sym_PLUS, + ACTIONS(3104), 4, 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(2974), 25, + ACTIONS(3102), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104498,11 +105605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36909] = 3, + [37084] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3050), 14, + ACTIONS(3066), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -104517,7 +105624,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3048), 29, + ACTIONS(3064), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104547,11 +105654,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36961] = 3, + [37136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3080), 14, + ACTIONS(3124), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -104566,7 +105673,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3078), 29, + ACTIONS(3122), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104596,19 +105703,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37013] = 7, - ACTIONS(2590), 1, + [37188] = 7, + ACTIONS(2588), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_COLON_COLON, - ACTIONS(3109), 1, + ACTIONS(3130), 1, anon_sym_BANG, - STATE(1121), 1, + STATE(903), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(575), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104624,7 +105731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 24, + ACTIONS(577), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -104644,92 +105751,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37073] = 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(1790), 1, - sym_where_predicate, - STATE(1887), 1, - sym_generic_type, - 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, - [37158] = 3, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37248] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 10, + ACTIONS(2951), 10, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, - anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(1346), 32, + ACTIONS(2953), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104753,63 +105795,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_extern, anon_sym_dyn, + sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [37209] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2486), 1, - anon_sym_COLON_COLON, - ACTIONS(3111), 1, - sym_identifier, - ACTIONS(3115), 1, - anon_sym_default, - ACTIONS(3117), 1, - sym_metavariable, - STATE(757), 1, - sym_scoped_type_identifier, - STATE(786), 1, - sym_generic_type, - STATE(1002), 1, - sym_function_type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2386), 1, - sym_function_modifiers, - STATE(2411), 1, - sym_scoped_identifier, - STATE(2491), 1, - sym_bracketed_type, - STATE(2492), 1, - sym_generic_type_with_turbofish, + [37299] = 3, 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, - ACTIONS(3113), 18, + ACTIONS(1652), 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(1654), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104827,55 +105837,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, - [37296] = 21, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37350] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2486), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(3115), 1, - anon_sym_default, - ACTIONS(3117), 1, - sym_metavariable, - ACTIONS(3119), 1, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3074), 1, sym_identifier, - STATE(759), 1, + ACTIONS(3078), 1, + anon_sym_LPAREN, + ACTIONS(3080), 1, + anon_sym_STAR, + ACTIONS(3086), 1, + anon_sym_for, + ACTIONS(3088), 1, + anon_sym_AMP, + ACTIONS(3090), 1, + sym_metavariable, + STATE(1827), 1, sym_scoped_type_identifier, - STATE(805), 1, + STATE(1918), 1, + sym_where_predicate, + STATE(1926), 1, sym_generic_type, - STATE(1012), 1, - sym_function_type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2386), 1, - sym_function_modifiers, - STATE(2411), 1, - sym_scoped_identifier, - STATE(2491), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, + STATE(2514), 1, + sym_scoped_identifier, 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, + ACTIONS(3084), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - ACTIONS(3113), 18, + STATE(2301), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3082), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104893,18 +105917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_union, - [37383] = 6, - ACTIONS(2626), 1, + [37435] = 6, + ACTIONS(2661), 1, anon_sym_BANG, - ACTIONS(2628), 1, + ACTIONS(2663), 1, anon_sym_COLON_COLON, - ACTIONS(3121), 1, + ACTIONS(3132), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 16, + ACTIONS(2657), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_as, @@ -104921,7 +105944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 23, + ACTIONS(2655), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -104945,54 +105968,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37440] = 21, + [37492] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(3020), 1, + ACTIONS(3090), 1, sym_metavariable, - ACTIONS(3123), 1, + ACTIONS(3134), 1, sym_identifier, - ACTIONS(3125), 1, + ACTIONS(3136), 1, anon_sym_default, - STATE(1196), 1, + STATE(1208), 1, sym_for_lifetimes, - STATE(1327), 1, + STATE(1339), 1, sym_scoped_type_identifier, - STATE(1355), 1, + STATE(1385), 1, sym_generic_type, - STATE(1384), 1, + STATE(1389), 1, sym_function_type, - STATE(2378), 1, + STATE(2387), 1, + sym_function_modifiers, + STATE(2391), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2404), 1, + STATE(2514), 1, sym_scoped_identifier, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - ACTIONS(3014), 18, + ACTIONS(3084), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105011,54 +106034,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37527] = 20, + [37579] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(2313), 1, + ACTIONS(2331), 1, anon_sym_SQUOTE, - ACTIONS(3004), 1, + ACTIONS(3074), 1, sym_identifier, - ACTIONS(3008), 1, + ACTIONS(3078), 1, anon_sym_LPAREN, - ACTIONS(3010), 1, + ACTIONS(3080), 1, anon_sym_STAR, - ACTIONS(3016), 1, + ACTIONS(3086), 1, anon_sym_for, - ACTIONS(3018), 1, + ACTIONS(3088), 1, anon_sym_AMP, - ACTIONS(3020), 1, + ACTIONS(3090), 1, sym_metavariable, - STATE(1788), 1, + STATE(1827), 1, sym_scoped_type_identifier, - STATE(1887), 1, - sym_generic_type, - STATE(1953), 1, + STATE(1830), 1, sym_where_predicate, - STATE(2378), 1, + STATE(1926), 1, + sym_generic_type, + STATE(2391), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2404), 1, + STATE(2514), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3014), 2, + ACTIONS(3084), 2, anon_sym_default, anon_sym_union, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - STATE(2296), 5, + STATE(2301), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3012), 17, + ACTIONS(3082), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105076,54 +106099,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37612] = 21, + [37664] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_for, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(870), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym_metavariable, - ACTIONS(3125), 1, - anon_sym_default, - ACTIONS(3127), 1, + ACTIONS(3138), 1, sym_identifier, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1329), 1, + ACTIONS(3142), 1, + anon_sym_default, + ACTIONS(3144), 1, + sym_metavariable, + STATE(770), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(804), 1, sym_generic_type, - STATE(1401), 1, + STATE(1022), 1, sym_function_type, - STATE(2378), 1, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2399), 1, + sym_function_modifiers, + STATE(2424), 1, + sym_scoped_identifier, + STATE(2505), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2506), 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, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - ACTIONS(3014), 18, + ACTIONS(3140), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105142,22 +106165,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37699] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2892), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [37751] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(687), 1, + anon_sym_for, + ACTIONS(699), 1, + anon_sym_extern, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3142), 1, + anon_sym_default, + ACTIONS(3144), 1, sym_metavariable, - ACTIONS(2894), 32, + ACTIONS(3146), 1, + sym_identifier, + STATE(767), 1, + sym_scoped_type_identifier, + STATE(809), 1, + sym_generic_type, + STATE(1036), 1, + sym_function_type, + STATE(1205), 1, + sym_for_lifetimes, + STATE(2399), 1, + sym_function_modifiers, + STATE(2424), 1, + sym_scoped_identifier, + STATE(2505), 1, + sym_bracketed_type, + STATE(2506), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1556), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(679), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2504), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3140), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105175,32 +106230,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, + anon_sym_union, + [37838] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(685), 1, anon_sym_fn, + ACTIONS(687), 1, anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, + ACTIONS(699), 1, anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, + ACTIONS(884), 1, + anon_sym_COLON_COLON, + ACTIONS(3090), 1, + sym_metavariable, + ACTIONS(3136), 1, + anon_sym_default, + ACTIONS(3148), 1, sym_identifier, + STATE(1208), 1, + sym_for_lifetimes, + STATE(1344), 1, + sym_scoped_type_identifier, + STATE(1374), 1, + sym_generic_type, + STATE(1407), 1, + sym_function_type, + STATE(2387), 1, + sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, + STATE(2514), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1556), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(679), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - [37750] = 6, - ACTIONS(2556), 1, - anon_sym_BANG, - ACTIONS(3129), 1, + ACTIONS(3084), 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, + [37925] = 5, + ACTIONS(2689), 1, anon_sym_COLON_COLON, - STATE(1121), 1, - sym_field_initializer_list, + ACTIONS(3130), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(575), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105216,9 +106321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 23, + ACTIONS(577), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -105240,15 +106346,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + [37979] = 6, + ACTIONS(2574), 1, anon_sym_BANG, + ACTIONS(3150), 1, + anon_sym_COLON_COLON, + STATE(903), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(575), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105264,10 +106372,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 24, - anon_sym_SEMI, + ACTIONS(577), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -105289,47 +106396,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37860] = 16, + [38035] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(717), 1, anon_sym_DASH, - ACTIONS(706), 1, + ACTIONS(721), 1, aux_sym_string_literal_token1, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, + ACTIONS(3152), 1, sym_identifier, - ACTIONS(3137), 1, + ACTIONS(3158), 1, sym_metavariable, - STATE(1410), 1, + STATE(1420), 1, sym_scoped_identifier, - STATE(1425), 1, + STATE(1467), 1, sym__literal_pattern, - STATE(2369), 1, - sym_bracketed_type, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, + STATE(2382), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(708), 2, + ACTIONS(723), 2, anon_sym_true, anon_sym_false, - ACTIONS(3135), 3, + ACTIONS(3156), 3, sym_self, sym_super, sym_crate, - STATE(1397), 3, + STATE(1411), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(704), 4, + ACTIONS(719), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3133), 19, + ACTIONS(3154), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105349,47 +106456,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37936] = 16, + [38111] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(717), 1, anon_sym_DASH, - ACTIONS(706), 1, + ACTIONS(721), 1, aux_sym_string_literal_token1, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3139), 1, + ACTIONS(3160), 1, sym_identifier, - ACTIONS(3145), 1, + ACTIONS(3166), 1, sym_metavariable, - STATE(1413), 1, + STATE(1426), 1, sym_scoped_identifier, - STATE(1447), 1, + STATE(1458), 1, sym__literal_pattern, - STATE(2369), 1, - sym_bracketed_type, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, + STATE(2382), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(708), 2, + ACTIONS(723), 2, anon_sym_true, anon_sym_false, - ACTIONS(3143), 3, + ACTIONS(3164), 3, sym_self, sym_super, sym_crate, - STATE(1397), 3, + STATE(1411), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(704), 4, + ACTIONS(719), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3141), 19, + ACTIONS(3162), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105409,62 +106516,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [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, + [38187] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2624), 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, - ACTIONS(2996), 2, + anon_sym_PIPE, + anon_sym_CARET, 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_DOT, + ACTIONS(2626), 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(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105475,17 +106562,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [38236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2596), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105499,12 +106583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 23, + 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, @@ -105523,15 +106608,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38154] = 5, - ACTIONS(2664), 1, + [38285] = 23, + ACTIONS(391), 1, + anon_sym_RBRACK, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3168), 1, + anon_sym_SEMI, + ACTIONS(3170), 1, + anon_sym_COMMA, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + STATE(1968), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3058), 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, + [38374] = 5, + ACTIONS(2763), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3176), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + ACTIONS(2657), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105547,7 +106698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 23, + ACTIONS(2655), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -105571,22 +106722,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38207] = 4, - ACTIONS(3163), 1, - anon_sym_COLON_COLON, + [38427] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3161), 8, + ACTIONS(3116), 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, + ACTIONS(3114), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105618,57 +106768,59 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38258] = 3, + [38476] = 5, + ACTIONS(2574), 1, + anon_sym_BANG, + ACTIONS(3178), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3060), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(575), 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(3058), 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, - [38307] = 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(577), 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, + [38529] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3167), 9, + ACTIONS(3182), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -105678,7 +106830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3165), 31, + ACTIONS(3180), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105710,125 +106862,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38356] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 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(2608), 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, - [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, + [38578] = 3, 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, - [38494] = 4, - ACTIONS(3173), 1, + ACTIONS(3186), 9, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3161), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -105837,7 +106876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3159), 31, + ACTIONS(3184), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105869,11 +106908,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38545] = 3, + [38627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3177), 9, + ACTIONS(3062), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -105883,7 +106922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3175), 31, + ACTIONS(3060), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105915,12 +106954,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38594] = 3, + [38676] = 4, + ACTIONS(3190), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 9, - anon_sym_LPAREN, + ACTIONS(3192), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -105929,7 +106969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3179), 31, + ACTIONS(3188), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105961,42 +107001,108 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38643] = 3, + [38727] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, - anon_sym_PLUS, + ACTIONS(3196), 9, + anon_sym_LPAREN, + 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, + sym_metavariable, + ACTIONS(3194), 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, + [38776] = 23, + ACTIONS(635), 1, + anon_sym_RBRACK, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, + ACTIONS(3024), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(2616), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(3054), 1, anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + ACTIONS(3198), 1, + anon_sym_SEMI, + ACTIONS(3200), 1, + anon_sym_COMMA, + STATE(1913), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106007,11 +107113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38692] = 3, + [38865] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 16, + ACTIONS(2616), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -106028,7 +107134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 24, + ACTIONS(2618), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106053,21 +107159,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38741] = 3, + [38914] = 4, + ACTIONS(3202), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3042), 9, + ACTIONS(3192), 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(3040), 31, + ACTIONS(3188), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106099,11 +107206,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38790] = 3, + [38965] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 16, + ACTIONS(2604), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -106120,7 +107227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 24, + ACTIONS(2606), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106145,13 +107252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38839] = 4, - ACTIONS(2700), 1, + [39014] = 4, + ACTIONS(2667), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 15, + ACTIONS(2669), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106167,7 +107274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 23, + ACTIONS(2665), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106191,13 +107298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38889] = 4, - ACTIONS(2712), 1, + [39064] = 4, + ACTIONS(2693), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 15, + ACTIONS(2669), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106213,7 +107320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 23, + ACTIONS(2665), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106237,42 +107344,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38939] = 4, - ACTIONS(3183), 1, - anon_sym_COLON_COLON, + [39114] = 22, + ACTIONS(407), 1, + anon_sym_RPAREN, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + ACTIONS(3204), 1, + anon_sym_COMMA, + STATE(1945), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(3002), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3028), 2, 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_QMARK, - anon_sym_as, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106283,60 +107408,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38989] = 22, - ACTIONS(396), 1, - anon_sym_RPAREN, - 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(3185), 1, - anon_sym_COMMA, - STATE(1976), 1, - aux_sym_arguments_repeat1, + [39200] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(699), 1, + anon_sym_extern, + ACTIONS(884), 1, + anon_sym_COLON_COLON, + ACTIONS(3090), 1, + sym_metavariable, + ACTIONS(3136), 1, + anon_sym_default, + ACTIONS(3206), 1, + sym_identifier, + ACTIONS(3208), 1, + anon_sym_fn, + STATE(1812), 1, + sym_scoped_type_identifier, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, + STATE(2426), 1, + sym_function_modifiers, + STATE(2435), 1, + sym_generic_type, + STATE(2514), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1556), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(679), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(890), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3084), 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, + [39278] = 4, + ACTIONS(3210), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(575), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(2996), 2, + anon_sym_PIPE, + anon_sym_CARET, 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_DOT, + ACTIONS(577), 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(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106347,13 +107514,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39075] = 4, - ACTIONS(3157), 1, + [39328] = 4, + ACTIONS(3176), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + ACTIONS(2657), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106369,7 +107536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 23, + ACTIONS(2655), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106393,108 +107560,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39125] = 18, + [39378] = 18, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(699), 1, anon_sym_extern, - ACTIONS(870), 1, + ACTIONS(884), 1, anon_sym_COLON_COLON, - ACTIONS(3020), 1, + ACTIONS(3090), 1, sym_metavariable, - ACTIONS(3125), 1, + ACTIONS(3136), 1, anon_sym_default, - ACTIONS(3187), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3189), 1, + ACTIONS(3214), 1, anon_sym_fn, - STATE(1818), 1, + STATE(1802), 1, sym_scoped_type_identifier, - STATE(2378), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, - STATE(2404), 1, - sym_scoped_identifier, - STATE(2413), 1, - sym_function_modifiers, - STATE(2488), 1, + STATE(2435), 1, sym_generic_type, - 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, - [39203] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(870), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym_metavariable, - ACTIONS(3125), 1, - anon_sym_default, - ACTIONS(3191), 1, - sym_identifier, - ACTIONS(3193), 1, - anon_sym_fn, - STATE(1792), 1, - sym_scoped_type_identifier, - STATE(2378), 1, - sym_bracketed_type, - STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2394), 1, + STATE(2475), 1, sym_function_modifiers, - STATE(2404), 1, + STATE(2514), 1, sym_scoped_identifier, - STATE(2488), 1, - sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(679), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(890), 3, sym_self, sym_super, sym_crate, - ACTIONS(3014), 18, + ACTIONS(3084), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106513,60 +107620,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39281] = 22, - ACTIONS(2976), 1, + [39456] = 22, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3195), 1, + ACTIONS(3216), 1, anon_sym_RPAREN, - ACTIONS(3197), 1, + ACTIONS(3218), 1, anon_sym_COMMA, - STATE(2096), 1, + STATE(2083), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106577,55 +107684,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39367] = 18, - ACTIONS(2976), 1, + [39542] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3046), 1, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3220), 1, + anon_sym_LBRACE, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3205), 1, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3209), 1, + ACTIONS(3234), 1, anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3236), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3238), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3242), 1, anon_sym_CARET, + STATE(1003), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3044), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106636,58 +107746,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39444] = 21, - ACTIONS(2976), 1, + [39625] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, + ACTIONS(3250), 1, anon_sym_SEMI, - ACTIONS(3225), 1, + ACTIONS(3252), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106698,38 +107808,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39527] = 7, - ACTIONS(2976), 1, + [39708] = 11, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2998), 1, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3256), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3222), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3105), 13, - anon_sym_PLUS, + ACTIONS(3224), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3104), 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(3103), 20, + ACTIONS(3102), 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, @@ -106746,58 +107860,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39582] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [39771] = 21, + ACTIONS(111), 1, + anon_sym_RBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - STATE(1127), 1, - sym_block, + ACTIONS(3258), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106808,58 +107922,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39665] = 21, - ACTIONS(2976), 1, + [39854] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3235), 1, - anon_sym_SEMI, - ACTIONS(3237), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3260), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106870,107 +107983,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39748] = 8, - ACTIONS(2976), 1, + [39935] = 16, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - 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(2984), 13, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3104), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3230), 1, anon_sym_AMP, - anon_sym_DASH, + ACTIONS(3240), 1, anon_sym_PIPE, + ACTIONS(3242), 1, 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39805] = 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(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, + ACTIONS(3256), 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(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 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, @@ -106981,55 +108040,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39888] = 18, - ACTIONS(2976), 1, + [40008] = 17, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3101), 1, + ACTIONS(3104), 1, anon_sym_EQ, - ACTIONS(3205), 1, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3236), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3242), 1, anon_sym_CARET, + ACTIONS(3256), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3254), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 13, + ACTIONS(3102), 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, @@ -107040,58 +108098,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39965] = 21, - ACTIONS(2976), 1, + [40083] = 13, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3242), 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, + ACTIONS(3256), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3245), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, + ACTIONS(3246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3104), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3102), 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(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107102,94 +108152,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [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, + [40150] = 12, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2998), 1, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3256), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3222), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3002), 13, - anon_sym_PLUS, + ACTIONS(3224), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3104), 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(3000), 20, + ACTIONS(3102), 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, @@ -107206,58 +108205,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40174] = 21, - ACTIONS(2976), 1, + [40215] = 10, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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, + ACTIONS(3256), 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(2978), 2, + ACTIONS(3222), 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, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3104), 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(3102), 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(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107268,58 +108256,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40257] = 21, - ACTIONS(2976), 1, + [40276] = 18, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3008), 1, + anon_sym_EQ, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3236), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3238), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3242), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3256), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_LBRACE, - STATE(60), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(2998), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107330,58 +108315,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40340] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [40353] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - STATE(69), 1, - sym_block, + ACTIONS(3258), 1, + anon_sym_SEMI, + ACTIONS(3262), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107392,57 +108377,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40423] = 20, - ACTIONS(2976), 1, + [40436] = 21, + ACTIONS(607), 1, + anon_sym_RPAREN, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, + ACTIONS(3264), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3271), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107453,58 +108439,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40504] = 21, - ACTIONS(270), 1, + [40519] = 21, + ACTIONS(274), 1, anon_sym_RBRACE, - ACTIONS(2976), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3258), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107515,58 +108501,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40587] = 21, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [40602] = 7, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_AMP, - ACTIONS(3211), 1, - anon_sym_AMP_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, - anon_sym_PIPE, - ACTIONS(3217), 1, - anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3256), 1, anon_sym_DOT_DOT, - STATE(229), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3254), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3120), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3203), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3118), 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(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107577,58 +108549,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40670] = 21, - ACTIONS(2976), 1, + [40657] = 18, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3236), 1, anon_sym_AMP_AMP, - ACTIONS(3030), 1, + ACTIONS(3238), 1, anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + ACTIONS(3256), 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(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 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, @@ -107639,58 +108608,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40753] = 21, - ACTIONS(272), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [40734] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3266), 1, anon_sym_SEMI, + ACTIONS(3268), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107701,58 +108670,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40836] = 21, - ACTIONS(2976), 1, + [40817] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3226), 1, + anon_sym_EQ, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3234), 1, + anon_sym_DOT_DOT, + ACTIONS(3236), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3238), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3242), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, - anon_sym_DOT_DOT, - ACTIONS(3277), 1, + ACTIONS(3270), 1, anon_sym_LBRACE, - STATE(985), 1, + STATE(79), 1, sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107763,57 +108732,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40919] = 20, - ACTIONS(2976), 1, + [40900] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3279), 2, + ACTIONS(3272), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107824,58 +108793,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41000] = 21, - ACTIONS(2976), 1, + [40981] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3281), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3274), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107886,58 +108854,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41083] = 21, - ACTIONS(2976), 1, + [41062] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3283), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3276), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107948,55 +108915,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41166] = 18, - ACTIONS(2976), 1, + [41143] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3076), 1, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3205), 1, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3209), 1, + ACTIONS(3234), 1, anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3236), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3238), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3242), 1, anon_sym_CARET, + STATE(80), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3074), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108007,58 +108977,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41243] = 21, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [41226] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - STATE(224), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3278), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108069,57 +109038,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41326] = 20, - ACTIONS(2976), 1, + [41307] = 18, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3096), 1, + anon_sym_EQ, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3236), 1, anon_sym_AMP_AMP, - ACTIONS(3030), 1, + ACTIONS(3238), 1, anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + ACTIONS(3256), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3285), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3094), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108130,41 +109097,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41407] = 10, - ACTIONS(2976), 1, + [41384] = 7, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3256), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3207), 2, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3034), 13, + anon_sym_PLUS, 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_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2974), 19, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3032), 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, @@ -108181,57 +109145,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41468] = 20, - ACTIONS(2976), 1, + [41439] = 18, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3042), 1, + anon_sym_EQ, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3236), 1, anon_sym_AMP_AMP, - ACTIONS(3030), 1, + ACTIONS(3238), 1, anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + ACTIONS(3256), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3287), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3040), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108242,58 +109204,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41549] = 21, - ACTIONS(2976), 1, + [41516] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3236), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + ACTIONS(3256), 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(2978), 2, + ACTIONS(3052), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108304,57 +109265,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41632] = 20, - ACTIONS(2976), 1, + [41597] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, + ACTIONS(3258), 1, + anon_sym_SEMI, + ACTIONS(3280), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3293), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108365,58 +109327,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41713] = 21, - ACTIONS(107), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [41680] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3258), 1, anon_sym_SEMI, + ACTIONS(3282), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108427,58 +109389,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41796] = 21, - ACTIONS(2976), 1, + [41763] = 7, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3256), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3254), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3100), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2992), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3028), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3098), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41818] = 8, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3256), 1, anon_sym_DOT_DOT, - ACTIONS(3295), 1, - anon_sym_RBRACE, - ACTIONS(3297), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3254), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3104), 13, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, anon_sym_DASH, - ACTIONS(2996), 2, + anon_sym_PIPE, + anon_sym_CARET, 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, + ACTIONS(3102), 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(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108489,58 +109486,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41879] = 21, - ACTIONS(274), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [41875] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, + ACTIONS(3284), 1, + anon_sym_RBRACE, + ACTIONS(3286), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108551,58 +109548,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41962] = 21, - ACTIONS(2976), 1, + [41958] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3234), 1, anon_sym_DOT_DOT, - ACTIONS(3299), 1, - anon_sym_SEMI, - ACTIONS(3301), 1, - anon_sym_else, + ACTIONS(3236), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + STATE(857), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108613,40 +109610,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42045] = 12, - ACTIONS(2976), 1, + [42041] = 14, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3205), 1, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3209), 1, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + ACTIONS(3256), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2984), 5, + ACTIONS(3254), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3104), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2974), 19, + ACTIONS(3224), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3102), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -108667,57 +109666,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [42110] = 21, - ACTIONS(2976), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3303), 1, + ACTIONS(3288), 1, anon_sym_SEMI, - ACTIONS(3305), 1, + ACTIONS(3290), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108729,57 +109728,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [42193] = 21, - ACTIONS(594), 1, - anon_sym_RPAREN, - ACTIONS(2976), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, - anon_sym_COMMA, + ACTIONS(3292), 1, + anon_sym_SEMI, + ACTIONS(3294), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108790,50 +109789,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42276] = 13, - ACTIONS(2976), 1, + [42276] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + ACTIONS(3258), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3004), 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, - anon_sym_PIPE_PIPE, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108844,54 +109851,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42343] = 17, - ACTIONS(2976), 1, + [42359] = 18, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2984), 1, - anon_sym_EQ, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3205), 1, + ACTIONS(3108), 1, + anon_sym_EQ, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3236), 1, anon_sym_AMP_AMP, - ACTIONS(3215), 1, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3242), 1, anon_sym_CARET, + ACTIONS(3256), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3254), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2974), 14, + ACTIONS(3106), 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, @@ -108902,58 +109910,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42418] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [42436] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - STATE(870), 1, - sym_block, + ACTIONS(3296), 1, + anon_sym_SEMI, + ACTIONS(3298), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108964,55 +109972,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42501] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(2976), 1, + [42519] = 9, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3205), 1, - anon_sym_AMP, - ACTIONS(3209), 1, + ACTIONS(3256), 1, anon_sym_DOT_DOT, - ACTIONS(3211), 1, - anon_sym_AMP_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, - anon_sym_PIPE, - 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(3203), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3207), 2, + ACTIONS(3254), 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, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3104), 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(3102), 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(282), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109024,57 +110023,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [42578] = 21, - ACTIONS(2976), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3309), 1, - anon_sym_RBRACE, + ACTIONS(3300), 1, + anon_sym_RPAREN, + ACTIONS(3302), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109085,53 +110084,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42661] = 16, - ACTIONS(2976), 1, + [42661] = 18, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2984), 1, - anon_sym_EQ, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3205), 1, + ACTIONS(3072), 1, + anon_sym_EQ, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3215), 1, + ACTIONS(3236), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3242), 1, anon_sym_CARET, + ACTIONS(3256), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3254), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2974), 15, + ACTIONS(3070), 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, @@ -109142,110 +110143,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42734] = 11, - ACTIONS(2976), 1, + [42738] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - 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), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3012), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2974), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3018), 1, anon_sym_AMP_AMP, + ACTIONS(3020), 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, - [42797] = 21, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3311), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3304), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109256,58 +110204,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42880] = 21, - ACTIONS(612), 1, - anon_sym_RPAREN, - ACTIONS(2976), 1, + [42819] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, - anon_sym_COMMA, + ACTIONS(3306), 1, + anon_sym_SEMI, + ACTIONS(3308), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109318,51 +110266,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42963] = 14, - ACTIONS(2976), 1, + [42902] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3205), 1, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3226), 1, + anon_sym_EQ, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3209), 1, + ACTIONS(3234), 1, anon_sym_DOT_DOT, - ACTIONS(3215), 1, + ACTIONS(3236), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3242), 1, anon_sym_CARET, + STATE(71), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3207), 2, + ACTIONS(3228), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3201), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2974), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109373,58 +110328,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43032] = 21, - ACTIONS(2976), 1, + [42985] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3234), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, - anon_sym_COMMA, - ACTIONS(3313), 1, - anon_sym_RPAREN, + ACTIONS(3236), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + STATE(1129), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109435,58 +110390,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43115] = 21, - ACTIONS(2976), 1, + [43068] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3236), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + ACTIONS(3256), 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(2978), 2, + ACTIONS(3128), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3254), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109497,55 +110451,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43198] = 18, - ACTIONS(2976), 1, + [43149] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3094), 1, - anon_sym_EQ, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + ACTIONS(3310), 1, + anon_sym_SEMI, + ACTIONS(3312), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3092), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109556,58 +110513,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43275] = 21, - ACTIONS(2976), 1, + [43232] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(215), 1, - sym_match_block, + ACTIONS(3314), 1, + anon_sym_SEMI, + ACTIONS(3316), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109618,46 +110575,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43358] = 9, - ACTIONS(2976), 1, + [43315] = 21, + ACTIONS(278), 1, + anon_sym_RBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 1, anon_sym_DOT_DOT, + ACTIONS(3258), 1, + anon_sym_SEMI, 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, + ACTIONS(3002), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3028), 2, 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, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109668,57 +110637,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43417] = 20, - ACTIONS(2976), 1, + [43398] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3321), 2, + ACTIONS(3318), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109729,58 +110698,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43498] = 21, - ACTIONS(2976), 1, + [43479] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3234), 1, anon_sym_DOT_DOT, - ACTIONS(3323), 1, - anon_sym_SEMI, - ACTIONS(3325), 1, - anon_sym_else, + ACTIONS(3236), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + ACTIONS(3320), 1, + anon_sym_LBRACE, + STATE(243), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109791,57 +110760,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43581] = 20, - ACTIONS(2976), 1, + [43562] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, + ACTIONS(3258), 1, + anon_sym_SEMI, + ACTIONS(3322), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109852,44 +110822,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43662] = 7, - ACTIONS(2976), 1, + [43645] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2998), 1, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 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(3064), 13, + ACTIONS(3002), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3324), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3004), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3062), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109900,57 +110883,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43717] = 20, - ACTIONS(2976), 1, + [43726] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3329), 2, + ACTIONS(3326), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109961,57 +110944,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43798] = 20, - ACTIONS(2976), 1, + [43807] = 21, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3234), 1, anon_sym_DOT_DOT, + ACTIONS(3236), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + STATE(233), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3331), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110022,57 +111006,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43879] = 20, - ACTIONS(2976), 1, + [43890] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + ACTIONS(3264), 1, + anon_sym_COMMA, + ACTIONS(3328), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3066), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110083,58 +111068,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43960] = 21, - ACTIONS(2976), 1, + [43973] = 21, + ACTIONS(605), 1, + anon_sym_RPAREN, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3333), 1, - anon_sym_RBRACE, + ACTIONS(3264), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110145,57 +111130,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44043] = 20, - ACTIONS(2976), 1, + [44056] = 21, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3234), 1, anon_sym_DOT_DOT, + ACTIONS(3236), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, + STATE(237), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3335), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110206,58 +111192,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44124] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [44139] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - STATE(65), 1, - sym_block, + ACTIONS(3330), 1, + anon_sym_RBRACE, + ACTIONS(3332), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110268,58 +111254,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44207] = 21, - ACTIONS(109), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [44222] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3334), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110330,58 +111315,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44290] = 21, - ACTIONS(276), 1, + [44303] = 21, + ACTIONS(113), 1, anon_sym_RBRACE, - ACTIONS(2976), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3258), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110392,116 +111377,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44373] = 20, - ACTIONS(2976), 1, + [44386] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3107), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3203), 2, - anon_sym_LT, - anon_sym_GT, - 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(3219), 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44454] = 18, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3024), 1, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3205), 1, - anon_sym_AMP, - ACTIONS(3209), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3211), 1, - anon_sym_AMP_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, - anon_sym_PIPE, - ACTIONS(3217), 1, - anon_sym_CARET, + ACTIONS(3258), 1, + anon_sym_SEMI, + ACTIONS(3336), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3022), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110512,56 +111439,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44531] = 20, - ACTIONS(2976), 1, + [44469] = 21, + ACTIONS(107), 1, + anon_sym_RBRACE, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3337), 1, - anon_sym_RBRACK, + ACTIONS(3258), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110572,56 +111501,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44611] = 20, - ACTIONS(2976), 1, + [44552] = 21, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3339), 1, - anon_sym_RBRACK, + ACTIONS(3258), 1, + anon_sym_SEMI, + ACTIONS(3338), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110632,56 +111563,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44691] = 20, - ACTIONS(2976), 1, + [44635] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3340), 1, + sym_identifier, + ACTIONS(3342), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_RBRACE, + ACTIONS(3346), 1, + anon_sym_STAR, + ACTIONS(3350), 1, + anon_sym_COMMA, + ACTIONS(3352), 1, + anon_sym_COLON_COLON, + ACTIONS(3356), 1, + sym_metavariable, + STATE(1737), 1, + sym_scoped_identifier, + STATE(2350), 1, + sym_generic_type_with_turbofish, + STATE(2486), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3354), 3, + sym_self, + sym_super, + sym_crate, + STATE(1917), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3348), 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, + [44706] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, + ACTIONS(3358), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110692,56 +111679,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44771] = 20, - ACTIONS(2976), 1, + [44786] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3341), 1, + ACTIONS(3360), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110752,55 +111739,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44851] = 19, - ACTIONS(2976), 1, + [44866] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3213), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, + ACTIONS(3362), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3201), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110811,56 +111799,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44929] = 20, - ACTIONS(2976), 1, + [44946] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3345), 1, + ACTIONS(3364), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110871,55 +111859,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45009] = 19, - ACTIONS(2976), 1, + [45026] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(3213), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, + ACTIONS(3366), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3347), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3201), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110930,56 +111919,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45087] = 20, - ACTIONS(2976), 1, + [45106] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3349), 1, - anon_sym_SEMI, + ACTIONS(3368), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110990,56 +111979,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45167] = 20, - ACTIONS(2976), 1, + [45186] = 19, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3226), 1, + anon_sym_EQ, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(3213), 1, + ACTIONS(3234), 1, + anon_sym_DOT_DOT, + ACTIONS(3238), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3242), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, - anon_sym_DOT_DOT, - ACTIONS(3351), 1, - anon_sym_LBRACE, - ACTIONS(3353), 1, - anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3370), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111050,56 +112038,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45247] = 20, - ACTIONS(2976), 1, + [45264] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, - anon_sym_COMMA, + ACTIONS(3372), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111110,56 +112098,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45327] = 20, - ACTIONS(2976), 1, + [45344] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, - anon_sym_SEMI, + ACTIONS(3374), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111170,56 +112158,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45407] = 20, - ACTIONS(2976), 1, + [45424] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, - anon_sym_SEMI, + ACTIONS(3376), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111230,56 +112218,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45487] = 20, - ACTIONS(2976), 1, + [45504] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_RBRACK, + ACTIONS(3378), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111290,56 +112278,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45567] = 20, - ACTIONS(2976), 1, + [45584] = 19, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3230), 1, + anon_sym_AMP, + ACTIONS(3234), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, - anon_sym_SEMI, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3380), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111350,116 +112337,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45647] = 20, - ACTIONS(2976), 1, + [45662] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3226), 1, anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3365), 1, - anon_sym_SEMI, - 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, - [45727] = 20, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3230), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3234), 1, + anon_sym_DOT_DOT, + ACTIONS(3238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3240), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3242), 1, anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3382), 1, + anon_sym_LBRACE, + ACTIONS(3384), 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(3367), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3224), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3248), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111470,55 +112397,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45807] = 19, - ACTIONS(2976), 1, + [45742] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + anon_sym_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, + ACTIONS(3386), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3347), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111529,56 +112457,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45885] = 20, - ACTIONS(2976), 1, + [45822] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, + ACTIONS(3388), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111589,56 +112517,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45965] = 20, - ACTIONS(2976), 1, + [45902] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, - anon_sym_RBRACK, + ACTIONS(3390), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111649,55 +112577,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46045] = 19, - ACTIONS(2976), 1, + [45982] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + anon_sym_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, + ACTIONS(3392), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111708,56 +112637,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46123] = 20, - ACTIONS(2976), 1, + [46062] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111768,56 +112697,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46203] = 20, - ACTIONS(2976), 1, + [46142] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111828,116 +112757,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46283] = 20, - ACTIONS(2976), 1, + [46222] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, + ACTIONS(3398), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 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, - [46363] = 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(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(3351), 1, - anon_sym_EQ_GT, - ACTIONS(3379), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2978), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2996), 2, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111948,56 +112817,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46443] = 20, - ACTIONS(2976), 1, + [46302] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, + ACTIONS(3400), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112008,41 +112877,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46523] = 14, + [46382] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3340), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3346), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3352), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3356), 1, sym_metavariable, - ACTIONS(3383), 1, + ACTIONS(3402), 1, anon_sym_RBRACE, - STATE(1749), 1, + STATE(1737), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3354), 3, sym_self, sym_super, sym_crate, - STATE(2207), 5, + STATE(2246), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3348), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112062,56 +112931,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [46591] = 20, - ACTIONS(2976), 1, + [46450] = 19, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3370), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112122,56 +112990,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46671] = 20, - ACTIONS(2976), 1, + [46528] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, + ACTIONS(3404), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112182,56 +113050,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46751] = 20, - ACTIONS(2976), 1, + [46608] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3387), 1, - anon_sym_COMMA, + ACTIONS(3406), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112242,56 +113110,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46831] = 20, - ACTIONS(2976), 1, + [46688] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 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_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, - anon_sym_RBRACK, + ACTIONS(3408), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3058), 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, + [46768] = 20, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + ACTIONS(3410), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112302,56 +113230,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46911] = 20, - ACTIONS(2976), 1, + [46848] = 20, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3012), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3018), 1, + anon_sym_AMP_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3024), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + ACTIONS(3258), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3058), 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, + [46928] = 20, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3018), 1, anon_sym_AMP_AMP, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3056), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3174), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, - anon_sym_SEMI, + ACTIONS(3264), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3002), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3028), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3058), 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, + [47008] = 20, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + ACTIONS(3382), 1, + anon_sym_EQ_GT, + ACTIONS(3412), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3010), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3004), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3058), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112362,41 +113410,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46991] = 14, + [47088] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3340), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3346), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3352), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3356), 1, sym_metavariable, - ACTIONS(3393), 1, + ACTIONS(3414), 1, anon_sym_RBRACE, - STATE(1749), 1, + STATE(1737), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3354), 3, sym_self, sym_super, sym_crate, - STATE(2207), 5, + STATE(2246), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3348), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112416,39 +113464,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47059] = 13, + [47156] = 19, + ACTIONS(3000), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3012), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3022), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_CARET, + ACTIONS(3030), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_QMARK, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3174), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3002), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3010), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3028), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3172), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3380), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(3004), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3058), 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, + [47234] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3340), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3346), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3352), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3356), 1, sym_metavariable, - STATE(1749), 1, + STATE(1737), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3354), 3, sym_self, sym_super, sym_crate, - STATE(2207), 5, + STATE(2246), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3348), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112468,39 +113575,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47124] = 13, + [47299] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3340), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3346), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3352), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3356), 1, sym_metavariable, - STATE(1749), 1, + STATE(1737), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3354), 3, sym_self, sym_super, sym_crate, - STATE(2330), 5, + STATE(2500), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3348), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112520,39 +113627,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47189] = 13, + [47364] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3340), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3346), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3352), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3356), 1, sym_metavariable, - STATE(1749), 1, + STATE(1737), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3354), 3, sym_self, sym_super, sym_crate, - STATE(2475), 5, + STATE(2440), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3348), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112572,39 +113679,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47254] = 13, + [47429] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3340), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3346), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3352), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3356), 1, sym_metavariable, - STATE(1749), 1, + STATE(1737), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3354), 3, sym_self, sym_super, sym_crate, - STATE(2506), 5, + STATE(2571), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3348), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112624,39 +113731,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47319] = 13, + [47494] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3340), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3346), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3352), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3356), 1, sym_metavariable, - STATE(1749), 1, + STATE(1737), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3354), 3, sym_self, sym_super, sym_crate, - STATE(2458), 5, + STATE(2351), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3348), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112676,15 +113783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47384] = 3, + [47559] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3397), 3, + ACTIONS(3418), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3395), 28, + ACTIONS(3416), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112713,15 +113820,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47424] = 3, + [47599] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3401), 3, + ACTIONS(3422), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3399), 28, + ACTIONS(3420), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112750,15 +113857,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47464] = 3, + [47639] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3405), 3, + ACTIONS(3426), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3403), 28, + ACTIONS(3424), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112787,31 +113894,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47504] = 11, + [47679] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, + ACTIONS(3428), 1, sym_identifier, - ACTIONS(3413), 1, + ACTIONS(3434), 1, sym_metavariable, - STATE(1599), 1, + STATE(1592), 1, sym_scoped_identifier, - STATE(2444), 1, - sym_attribute, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2390), 1, + sym_attribute, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3411), 3, + ACTIONS(3432), 3, sym_self, sym_super, sym_crate, - ACTIONS(3409), 19, + ACTIONS(3430), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112831,31 +113938,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47559] = 11, + [47734] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, + ACTIONS(3428), 1, sym_identifier, - ACTIONS(3413), 1, + ACTIONS(3434), 1, sym_metavariable, - STATE(1599), 1, + STATE(1592), 1, sym_scoped_identifier, - STATE(2457), 1, - sym_generic_type_with_turbofish, - STATE(2477), 1, + STATE(2330), 1, sym_attribute, - STATE(2527), 1, + STATE(2350), 1, + sym_generic_type_with_turbofish, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3411), 3, + ACTIONS(3432), 3, sym_self, sym_super, sym_crate, - ACTIONS(3409), 19, + ACTIONS(3430), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112875,31 +113982,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47614] = 11, + [47789] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, + ACTIONS(3428), 1, sym_identifier, - ACTIONS(3413), 1, + ACTIONS(3434), 1, sym_metavariable, - STATE(1599), 1, + STATE(1592), 1, sym_scoped_identifier, - STATE(2342), 1, - sym_attribute, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, + STATE(2541), 1, + sym_attribute, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3411), 3, + ACTIONS(3432), 3, sym_self, sym_super, sym_crate, - ACTIONS(3409), 19, + ACTIONS(3430), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112919,31 +114026,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47669] = 11, + [47844] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, + ACTIONS(3428), 1, sym_identifier, - ACTIONS(3413), 1, + ACTIONS(3434), 1, sym_metavariable, - STATE(1599), 1, + STATE(1592), 1, sym_scoped_identifier, - STATE(2433), 1, - sym_attribute, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2386), 1, + sym_attribute, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3411), 3, + ACTIONS(3432), 3, sym_self, sym_super, sym_crate, - ACTIONS(3409), 19, + ACTIONS(3430), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112963,31 +114070,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47724] = 11, + [47899] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, + ACTIONS(3428), 1, sym_identifier, - ACTIONS(3413), 1, + ACTIONS(3434), 1, sym_metavariable, - STATE(1599), 1, + STATE(1592), 1, sym_scoped_identifier, - STATE(2363), 1, - sym_attribute, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, + STATE(2559), 1, + sym_attribute, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3411), 3, + ACTIONS(3432), 3, sym_self, sym_super, sym_crate, - ACTIONS(3409), 19, + ACTIONS(3430), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113007,31 +114114,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47779] = 11, + [47954] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, + ACTIONS(3428), 1, sym_identifier, - ACTIONS(3413), 1, + ACTIONS(3434), 1, sym_metavariable, - STATE(1599), 1, + STATE(1592), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2348), 1, sym_attribute, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3411), 3, + ACTIONS(3432), 3, sym_self, sym_super, sym_crate, - ACTIONS(3409), 19, + ACTIONS(3430), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113051,31 +114158,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47834] = 11, + [48009] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, + ACTIONS(3428), 1, sym_identifier, - ACTIONS(3413), 1, + ACTIONS(3434), 1, sym_metavariable, - STATE(1599), 1, + STATE(1592), 1, sym_scoped_identifier, - STATE(2339), 1, - sym_attribute, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2361), 1, + sym_attribute, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3411), 3, + ACTIONS(3432), 3, sym_self, sym_super, sym_crate, - ACTIONS(3409), 19, + ACTIONS(3430), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113095,29 +114202,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47889] = 10, + [48064] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3415), 1, + ACTIONS(3436), 1, sym_identifier, - ACTIONS(3421), 1, + ACTIONS(3442), 1, sym_metavariable, - STATE(2212), 1, + STATE(2311), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 3, + ACTIONS(3440), 3, sym_self, sym_super, sym_crate, - ACTIONS(3417), 19, + ACTIONS(3438), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113137,29 +114244,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47941] = 10, + [48116] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(946), 1, anon_sym_COLON_COLON, - ACTIONS(3423), 1, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3429), 1, + ACTIONS(3450), 1, sym_metavariable, - STATE(2111), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2350), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2486), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3427), 3, + ACTIONS(3448), 3, sym_self, sym_super, sym_crate, - ACTIONS(3425), 19, + ACTIONS(3446), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113179,13 +114286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47993] = 3, - ACTIONS(2367), 1, + [48168] = 3, + ACTIONS(2427), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2369), 21, + ACTIONS(2429), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113207,13 +114314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48024] = 3, - ACTIONS(2397), 1, + [48199] = 3, + ACTIONS(2431), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2399), 21, + ACTIONS(2433), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113235,31 +114342,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48055] = 11, - ACTIONS(3433), 1, + [48230] = 11, + ACTIONS(3454), 1, anon_sym_LPAREN, - ACTIONS(3435), 1, + ACTIONS(3456), 1, anon_sym_LBRACE, - ACTIONS(3439), 1, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3441), 1, + ACTIONS(3462), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3447), 1, + ACTIONS(3468), 1, anon_sym_AT, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3443), 2, + ACTIONS(3464), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3431), 10, + ACTIONS(3452), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113270,25 +114377,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [48101] = 9, - ACTIONS(2554), 1, + [48276] = 9, + ACTIONS(2572), 1, anon_sym_COLON, - ACTIONS(3439), 1, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1372), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 13, + ACTIONS(2568), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113302,16 +114409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [48142] = 4, - ACTIONS(2612), 1, + [48317] = 4, + ACTIONS(2594), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 2, + ACTIONS(2598), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2610), 16, + ACTIONS(2592), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113328,17 +114435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48172] = 4, + [48347] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 2, + ACTIONS(2612), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2574), 2, + ACTIONS(2616), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2576), 15, + ACTIONS(2618), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113354,46 +114461,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48202] = 8, - ACTIONS(2564), 1, - anon_sym_COLON, - ACTIONS(3445), 1, + [48377] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2620), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(2624), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2626), 15, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3451), 1, + 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, - STATE(1342), 1, - sym_type_arguments, - STATE(1361), 1, - sym_parameters, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [48407] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 13, + ACTIONS(2600), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2604), 2, + anon_sym_COLON, + anon_sym_EQ, + 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_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, - [48240] = 4, - ACTIONS(2580), 1, + [48437] = 4, + ACTIONS(2614), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 2, + ACTIONS(2618), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2578), 16, + ACTIONS(2612), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113410,16 +114539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48270] = 4, - ACTIONS(2572), 1, + [48467] = 4, + ACTIONS(2602), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 2, + ACTIONS(2606), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2570), 16, + ACTIONS(2600), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113436,69 +114565,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48300] = 4, + [48497] = 4, + ACTIONS(2622), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2614), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2616), 15, + ACTIONS(2626), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2620), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_LT2, anon_sym_PIPE, - [48330] = 4, + [48527] = 8, + ACTIONS(2586), 1, + anon_sym_COLON, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + STATE(1356), 1, + sym_type_arguments, + STATE(1372), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2582), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2584), 15, + ACTIONS(2584), 13, 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_GT, anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48360] = 4, + [48565] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 2, + ACTIONS(2592), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2606), 2, + ACTIONS(2596), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2608), 15, + ACTIONS(2598), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113514,54 +114647,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48390] = 4, - ACTIONS(2604), 1, + [48595] = 8, + ACTIONS(2582), 1, anon_sym_COLON, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + STATE(1356), 1, + sym_type_arguments, + STATE(1372), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2602), 16, + ACTIONS(2580), 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, - [48420] = 8, - ACTIONS(2568), 1, - anon_sym_COLON, - ACTIONS(3445), 1, + [48633] = 6, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_COLON_COLON, - STATE(1342), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 13, + ACTIONS(2608), 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, @@ -113570,19 +114704,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [48458] = 6, - ACTIONS(3445), 1, + [48666] = 6, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - STATE(1347), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 14, + ACTIONS(2632), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113597,14 +114731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [48491] = 3, + [48699] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(2624), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2616), 16, + ACTIONS(2626), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113621,41 +114755,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [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, + [48726] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 14, + ACTIONS(2616), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2618), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_as, - anon_sym_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, - [48551] = 3, + [48753] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2596), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2576), 16, + ACTIONS(2598), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113672,19 +114803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [48578] = 6, - ACTIONS(3445), 1, + [48780] = 6, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - STATE(1347), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 14, + ACTIONS(2628), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113699,37 +114830,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [48611] = 3, + [48813] = 3, + ACTIONS(569), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 2, + ACTIONS(567), 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, + [48839] = 3, + ACTIONS(615), 1, anon_sym_EQ, - ACTIONS(2608), 16, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(613), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_as, anon_sym_if, - anon_sym_BANG, + anon_sym_where, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [48638] = 3, - ACTIONS(598), 1, + [48865] = 3, + ACTIONS(631), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 16, + ACTIONS(629), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113746,50 +114899,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [48664] = 17, - ACTIONS(3455), 1, + [48891] = 17, + ACTIONS(3476), 1, anon_sym_const, - ACTIONS(3457), 1, + ACTIONS(3478), 1, anon_sym_enum, - ACTIONS(3459), 1, + ACTIONS(3480), 1, anon_sym_fn, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_mod, - ACTIONS(3463), 1, + ACTIONS(3484), 1, anon_sym_static, - ACTIONS(3465), 1, + ACTIONS(3486), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3488), 1, anon_sym_trait, - ACTIONS(3469), 1, + ACTIONS(3490), 1, anon_sym_type, - ACTIONS(3471), 1, + ACTIONS(3492), 1, anon_sym_union, - ACTIONS(3473), 1, + ACTIONS(3494), 1, anon_sym_unsafe, - ACTIONS(3475), 1, + ACTIONS(3496), 1, anon_sym_use, - ACTIONS(3477), 1, + ACTIONS(3498), 1, anon_sym_extern, - STATE(1511), 1, + STATE(1513), 1, sym_extern_modifier, - STATE(1526), 1, + STATE(1556), 1, aux_sym_function_modifiers_repeat1, - STATE(2558), 1, + STATE(2573), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3474), 2, anon_sym_async, anon_sym_default, - [48718] = 3, - ACTIONS(616), 1, + [48945] = 3, + ACTIONS(565), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 16, + ACTIONS(563), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113806,145 +114959,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [48744] = 3, - ACTIONS(602), 1, - anon_sym_EQ, + [48971] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(600), 16, + ACTIONS(2600), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, + anon_sym_for, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_in, + anon_sym_LT2, anon_sym_PIPE, - [48770] = 7, - ACTIONS(3433), 1, + [48995] = 7, + ACTIONS(3454), 1, anon_sym_LPAREN, - ACTIONS(3439), 1, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3479), 1, + ACTIONS(3500), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3437), 2, + ACTIONS(3458), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3443), 2, + ACTIONS(3464), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3431), 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, - [48804] = 3, - ACTIONS(440), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(438), 16, + ACTIONS(3452), 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, - [48830] = 17, - ACTIONS(3481), 1, + [49029] = 17, + ACTIONS(3502), 1, anon_sym_const, - ACTIONS(3483), 1, + ACTIONS(3504), 1, anon_sym_enum, - ACTIONS(3485), 1, + ACTIONS(3506), 1, anon_sym_fn, - ACTIONS(3487), 1, + ACTIONS(3508), 1, anon_sym_mod, - ACTIONS(3489), 1, + ACTIONS(3510), 1, anon_sym_static, - ACTIONS(3491), 1, + ACTIONS(3512), 1, anon_sym_struct, - ACTIONS(3493), 1, + ACTIONS(3514), 1, anon_sym_trait, - ACTIONS(3495), 1, + ACTIONS(3516), 1, anon_sym_type, - ACTIONS(3497), 1, + ACTIONS(3518), 1, anon_sym_union, - ACTIONS(3499), 1, + ACTIONS(3520), 1, anon_sym_unsafe, - ACTIONS(3501), 1, + ACTIONS(3522), 1, anon_sym_use, - ACTIONS(3503), 1, + ACTIONS(3524), 1, anon_sym_extern, - STATE(1517), 1, + STATE(1497), 1, sym_extern_modifier, - STATE(1526), 1, + STATE(1556), 1, aux_sym_function_modifiers_repeat1, - STATE(2436), 1, + STATE(2425), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3474), 2, anon_sym_async, anon_sym_default, - [48884] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 17, - 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_else, - anon_sym_LT2, - anon_sym_PIPE, - [48908] = 3, - ACTIONS(3505), 1, + [49083] = 3, + ACTIONS(3526), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 15, + ACTIONS(3188), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -113960,13 +115067,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48933] = 3, - ACTIONS(2716), 1, + [49108] = 6, + ACTIONS(3532), 1, + anon_sym_BANG, + ACTIONS(3534), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3530), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3536), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3528), 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, + [49139] = 3, + ACTIONS(2679), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2677), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [49164] = 3, + ACTIONS(2767), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 15, + ACTIONS(2765), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113982,11 +115136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [48958] = 2, + [49189] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 16, + ACTIONS(2951), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114003,13 +115157,13 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, anon_sym_PIPE, sym_self, - [48981] = 3, - ACTIONS(2748), 1, + [49212] = 3, + ACTIONS(2719), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(2717), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114025,13 +115179,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49006] = 3, - ACTIONS(2674), 1, + [49237] = 3, + ACTIONS(2761), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 15, + ACTIONS(2759), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114047,13 +115201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49031] = 3, - ACTIONS(2684), 1, + [49262] = 3, + ACTIONS(2779), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2682), 15, + ACTIONS(2777), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114069,60 +115223,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49056] = 3, - ACTIONS(2726), 1, - anon_sym_COLON, + [49287] = 3, + ACTIONS(3538), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 15, + ACTIONS(2731), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_PIPE, - [49081] = 6, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3513), 1, + [49311] = 4, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(3540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3509), 2, - anon_sym_COLON, + ACTIONS(2632), 13, + 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, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 10, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [49337] = 4, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 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_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, - [49112] = 3, - ACTIONS(3517), 1, + [49363] = 14, + ACTIONS(2568), 1, + anon_sym_PLUS, + ACTIONS(3452), 1, + anon_sym_PIPE, + ACTIONS(3456), 1, + anon_sym_LBRACE, + ACTIONS(3458), 1, + anon_sym_COLON, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3468), 1, + anon_sym_AT, + ACTIONS(3544), 1, + anon_sym_LPAREN, + ACTIONS(3549), 1, + anon_sym_COLON_COLON, + STATE(1356), 1, + sym_type_arguments, + STATE(1372), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3546), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [49409] = 3, + ACTIONS(3551), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2740), 14, + ACTIONS(2671), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114137,11 +115341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49136] = 2, + [49433] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, + ACTIONS(2721), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114157,13 +115361,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49158] = 3, - ACTIONS(2904), 1, - anon_sym_COLON_COLON, + [49455] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3184), 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, + [49477] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3161), 14, + ACTIONS(3180), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114178,13 +115400,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49182] = 3, - ACTIONS(3519), 1, + sym_identifier, + [49499] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3194), 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, + [49521] = 3, + ACTIONS(3553), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2658), 14, + ACTIONS(2741), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114199,13 +115442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49206] = 3, - ACTIONS(3521), 1, + [49545] = 3, + ACTIONS(3555), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2666), 14, + ACTIONS(2747), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114220,11 +115463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49230] = 2, + [49569] = 3, + ACTIONS(3557), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 15, + ACTIONS(2701), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114236,45 +115481,54 @@ 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, - [49252] = 4, - ACTIONS(2596), 1, - anon_sym_COLON, - ACTIONS(3523), 1, + [49593] = 13, + ACTIONS(3456), 1, + anon_sym_LBRACE, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3468), 1, + anon_sym_AT, + ACTIONS(3546), 1, + anon_sym_RBRACK, + ACTIONS(3559), 1, + anon_sym_LPAREN, + ACTIONS(3561), 1, anon_sym_COLON_COLON, + STATE(1356), 1, + sym_type_arguments, + STATE(1372), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 13, + ACTIONS(2568), 2, 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, + ACTIONS(3452), 2, anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, anon_sym_PIPE, - [49278] = 3, - ACTIONS(3525), 1, - anon_sym_DASH_GT, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49637] = 4, + ACTIONS(2630), 1, + anon_sym_COLON, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 14, + ACTIONS(2628), 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, @@ -114283,19 +115537,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49302] = 3, - ACTIONS(3527), 1, - anon_sym_DASH_GT, + [49663] = 4, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(3202), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 14, + ACTIONS(2632), 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, @@ -114304,54 +115559,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49326] = 3, - ACTIONS(2427), 1, - anon_sym_EQ, + [49689] = 13, + ACTIONS(3452), 1, + anon_sym_PIPE, + ACTIONS(3456), 1, + anon_sym_LBRACE, + ACTIONS(3458), 1, + anon_sym_COLON, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3468), 1, + anon_sym_AT, + ACTIONS(3563), 1, + anon_sym_LPAREN, + ACTIONS(3565), 1, + anon_sym_COLON_COLON, + STATE(1356), 1, + sym_type_arguments, + STATE(1372), 1, + sym_parameters, 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, + ACTIONS(3464), 2, 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(3523), 1, + ACTIONS(2568), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [49733] = 5, + ACTIONS(3534), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 13, + ACTIONS(3530), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3536), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3528), 10, 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_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [49376] = 2, + [49761] = 3, + ACTIONS(2805), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3165), 15, + ACTIONS(3192), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114366,57 +115634,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [49398] = 3, - ACTIONS(3529), 1, - anon_sym_DASH_GT, + [49785] = 3, + ACTIONS(2441), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 14, + ACTIONS(2443), 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_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, - [49422] = 4, - ACTIONS(2588), 1, - anon_sym_COLON, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, + [49809] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 13, + ACTIONS(2773), 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, - [49448] = 3, - ACTIONS(3531), 1, - anon_sym_DASH_GT, + [49831] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 14, + ACTIONS(2769), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114428,37 +115691,17 @@ 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, - [49472] = 5, - ACTIONS(3513), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3509), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 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, - [49500] = 2, + [49853] = 3, + ACTIONS(3567), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 15, + ACTIONS(2753), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114470,17 +115713,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_else, anon_sym_PIPE, - [49522] = 3, - ACTIONS(3533), 1, + [49877] = 3, + ACTIONS(3569), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3161), 14, + ACTIONS(3192), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114495,11 +115737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49546] = 2, + [49901] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 15, + ACTIONS(2737), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114515,15 +115757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49568] = 4, - ACTIONS(2600), 1, + [49923] = 4, + ACTIONS(2610), 1, anon_sym_COLON, - ACTIONS(3163), 1, + ACTIONS(3540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 13, + ACTIONS(2608), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114537,42 +115779,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [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(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, + [49949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 15, + ACTIONS(2681), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114588,92 +115799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49660] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3175), 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, - [49682] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, - ACTIONS(3437), 1, - anon_sym_COLON, - 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, - [49750] = 4, - ACTIONS(2600), 1, - anon_sym_COLON, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, + [49971] = 3, + ACTIONS(3571), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 13, + ACTIONS(2695), 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, @@ -114682,42 +115820,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49776] = 13, - ACTIONS(3431), 1, - anon_sym_PIPE, - ACTIONS(3435), 1, - anon_sym_LBRACE, - ACTIONS(3437), 1, - anon_sym_COLON, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3447), 1, - anon_sym_AT, - ACTIONS(3548), 1, - anon_sym_LPAREN, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - STATE(1342), 1, - sym_type_arguments, - STATE(1361), 1, - sym_parameters, + [49995] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2550), 3, + ACTIONS(2823), 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, - [49820] = 2, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [50016] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2860), 14, + ACTIONS(2608), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114732,11 +115858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49841] = 2, + [50037] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2906), 14, + ACTIONS(2831), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114751,11 +115877,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49862] = 2, + [50058] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 14, + ACTIONS(2604), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2606), 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, + [50081] = 4, + ACTIONS(3575), 1, + anon_sym_pat, + STATE(574), 1, + sym_fragment_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3573), 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, + [50106] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2911), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114770,11 +115937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49883] = 2, + [50127] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 14, + ACTIONS(2923), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114789,42 +115956,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [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, + [50148] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_as, - [49949] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2832), 14, + ACTIONS(2867), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114839,11 +115975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49970] = 2, + [50169] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2832), 14, + ACTIONS(2819), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114858,11 +115994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49991] = 2, + [50190] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 14, + ACTIONS(2983), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114877,11 +116013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50012] = 2, + [50211] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 14, + ACTIONS(2781), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114896,11 +116032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50033] = 2, + [50232] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2848), 14, + ACTIONS(2843), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114915,11 +116051,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50054] = 2, + [50253] = 14, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3577), 1, + anon_sym_COLON, + ACTIONS(3579), 1, + anon_sym_EQ, + ACTIONS(3581), 1, + anon_sym_COMMA, + ACTIONS(3583), 1, + anon_sym_GT, + STATE(1356), 1, + sym_type_arguments, + STATE(1372), 1, + sym_parameters, + STATE(1989), 1, + sym_trait_bounds, + STATE(1990), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2568), 2, + anon_sym_PLUS, + anon_sym_as, + [50298] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2856), 14, + ACTIONS(2955), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114934,11 +116101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50075] = 2, + [50319] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2788), 14, + ACTIONS(2815), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114953,11 +116120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50096] = 2, + [50340] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 14, + ACTIONS(2979), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114972,32 +116139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50117] = 4, - ACTIONS(3562), 1, - anon_sym_pat, - STATE(579), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3560), 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, - [50142] = 2, + [50361] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 14, + ACTIONS(2855), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115012,31 +116158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50163] = 3, + [50382] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2584), 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, - [50186] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2836), 14, + ACTIONS(2915), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115051,31 +116177,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50207] = 3, - ACTIONS(3566), 1, - anon_sym_EQ, + [50403] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3564), 13, + ACTIONS(2939), 14, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50230] = 2, + [50424] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2962), 14, + ACTIONS(2628), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115090,76 +116215,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [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(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 3, - anon_sym_RPAREN, - 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, - [50282] = 4, - ACTIONS(3437), 1, - anon_sym_EQ, + [50445] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3431), 11, + ACTIONS(2859), 14, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [50307] = 3, - ACTIONS(3572), 1, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3570), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50330] = 2, + [50466] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2840), 14, + ACTIONS(2843), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115174,11 +116253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50351] = 2, + [50487] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 14, + ACTIONS(2919), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115193,30 +116272,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50372] = 2, + [50508] = 3, + ACTIONS(3587), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2864), 14, + ACTIONS(3585), 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, - [50393] = 2, + [50531] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 14, + ACTIONS(2632), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115231,30 +116311,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50414] = 2, + [50552] = 4, + ACTIONS(3458), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2868), 14, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3452), 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, - [50435] = 2, + [50577] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 14, + ACTIONS(2871), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115269,30 +116351,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50456] = 2, + [50598] = 3, + ACTIONS(3591), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2820), 14, + ACTIONS(3589), 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, + [50621] = 7, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3532), 1, + anon_sym_BANG, + ACTIONS(3593), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3536), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3528), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - [50477] = 2, + ACTIONS(2659), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [50652] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 14, + ACTIONS(2847), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115307,16 +116414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50498] = 4, - ACTIONS(3578), 1, + [50673] = 4, + ACTIONS(3599), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3597), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3574), 10, + ACTIONS(3595), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115327,57 +116434,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50522] = 3, - ACTIONS(416), 1, - anon_sym_EQ, + [50697] = 4, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(414), 12, + ACTIONS(3603), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3601), 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, - [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, + [50721] = 4, + ACTIONS(3611), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 2, + ACTIONS(3609), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3582), 10, + ACTIONS(3607), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115388,16 +116474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50596] = 4, - ACTIONS(3592), 1, + [50745] = 4, + ACTIONS(3605), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, + ACTIONS(3609), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3588), 10, + ACTIONS(3607), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115408,16 +116494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50620] = 4, - ACTIONS(3578), 1, + [50769] = 4, + ACTIONS(3569), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3596), 2, + ACTIONS(3609), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3594), 10, + ACTIONS(3607), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115428,16 +116514,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50644] = 4, - ACTIONS(3533), 1, + [50793] = 4, + ACTIONS(3569), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 2, + ACTIONS(3603), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3582), 10, + ACTIONS(3601), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115448,16 +116534,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50668] = 4, - ACTIONS(3592), 1, + [50817] = 4, + ACTIONS(3599), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 2, + ACTIONS(3615), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3582), 10, + ACTIONS(3613), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115468,91 +116554,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50692] = 3, - ACTIONS(412), 1, - anon_sym_EQ, + [50841] = 6, + ACTIONS(3532), 1, + anon_sym_BANG, + ACTIONS(3617), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(410), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3536), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3528), 3, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_in, anon_sym_PIPE, - [50714] = 3, - ACTIONS(408), 1, - anon_sym_EQ, + ACTIONS(2659), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [50869] = 4, + ACTIONS(3611), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 12, + ACTIONS(3603), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3601), 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, - [50736] = 4, - ACTIONS(3586), 1, - anon_sym_COLON_COLON, + [50893] = 3, + ACTIONS(419), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3588), 10, + ACTIONS(417), 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, - [50760] = 4, - ACTIONS(3533), 1, - anon_sym_COLON_COLON, + [50915] = 3, + ACTIONS(423), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3588), 10, + ACTIONS(421), 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, - [50784] = 3, - ACTIONS(3600), 1, + [50937] = 3, + ACTIONS(427), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 11, + ACTIONS(425), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115561,35 +116649,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50805] = 4, + [50959] = 5, + ACTIONS(2624), 1, + anon_sym_COLON, + ACTIONS(3619), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2610), 4, - anon_sym_SEMI, + ACTIONS(2620), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2616), 6, + ACTIONS(2626), 5, anon_sym_BANG, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50828] = 3, - ACTIONS(3607), 1, + [50984] = 3, + ACTIONS(3624), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3605), 11, + ACTIONS(3622), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115601,13 +116691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50849] = 3, - ACTIONS(3611), 1, + [51005] = 3, + ACTIONS(3628), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3609), 11, + ACTIONS(3626), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115619,70 +116709,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50870] = 3, - ACTIONS(3437), 1, - anon_sym_EQ, + [51026] = 4, 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, + ACTIONS(3630), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + ACTIONS(2612), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2618), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50891] = 5, - ACTIONS(2582), 1, + [51049] = 5, + ACTIONS(2624), 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, + ACTIONS(2620), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2584), 5, + ACTIONS(3619), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2626), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50916] = 4, + [51074] = 5, + ACTIONS(2604), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 2, + ACTIONS(2600), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3633), 3, anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2602), 4, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2606), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51099] = 5, + ACTIONS(2596), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2608), 6, - anon_sym_BANG, + ACTIONS(3636), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2598), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50939] = 3, - ACTIONS(3590), 1, + [51124] = 3, + ACTIONS(3641), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3588), 11, + ACTIONS(3639), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115694,31 +116806,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50960] = 3, - ACTIONS(3621), 1, - anon_sym_EQ, + [51145] = 5, + ACTIONS(2616), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3619), 11, - anon_sym_SEMI, + ACTIONS(2612), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3630), 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(2618), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50981] = 3, - ACTIONS(3625), 1, + [51170] = 3, + ACTIONS(3645), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3623), 11, + ACTIONS(3643), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115730,13 +116844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51002] = 3, - ACTIONS(3629), 1, + [51191] = 3, + ACTIONS(3458), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3627), 11, + ACTIONS(3452), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115748,13 +116862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51023] = 3, - ACTIONS(3633), 1, + [51212] = 3, + ACTIONS(3649), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3631), 11, + ACTIONS(3647), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115766,52 +116880,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51044] = 4, + [51233] = 5, + ACTIONS(2604), 1, + anon_sym_COLON, + ACTIONS(3633), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3613), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2578), 4, - anon_sym_SEMI, + ACTIONS(2600), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2584), 6, + ACTIONS(2606), 5, anon_sym_BANG, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51067] = 5, - ACTIONS(2614), 1, + [51258] = 5, + ACTIONS(2596), 1, anon_sym_COLON, - ACTIONS(3602), 1, + ACTIONS(3636), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 5, + ACTIONS(2592), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2616), 5, + ACTIONS(2598), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51092] = 3, - ACTIONS(3637), 1, + [51283] = 3, + ACTIONS(3653), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3635), 11, + ACTIONS(3651), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115823,33 +116938,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51113] = 5, - ACTIONS(2574), 1, + [51304] = 3, + ACTIONS(3657), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3655), 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, + [51325] = 5, + ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(3639), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 5, + ACTIONS(2612), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2576), 5, + ACTIONS(2618), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51138] = 3, - ACTIONS(3644), 1, + [51350] = 3, + ACTIONS(3661), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 11, + ACTIONS(3659), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115861,32 +116994,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51159] = 4, + [51371] = 3, + ACTIONS(3665), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3639), 2, - anon_sym_LPAREN, + ACTIONS(3663), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(2570), 4, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [51392] = 3, + ACTIONS(3669), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3667), 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, - [51182] = 3, - ACTIONS(3648), 1, + [51413] = 3, + ACTIONS(3673), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 11, + ACTIONS(3671), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115898,13 +117048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51203] = 3, - ACTIONS(3652), 1, + [51434] = 3, + ACTIONS(3677), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 11, + ACTIONS(3675), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115916,13 +117066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51224] = 3, - ACTIONS(3656), 1, + [51455] = 3, + ACTIONS(3681), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 11, + ACTIONS(3679), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115934,35 +117084,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51245] = 7, - ACTIONS(3507), 1, + [51476] = 7, + ACTIONS(3528), 1, anon_sym_PIPE, - ACTIONS(3509), 1, + ACTIONS(3530), 1, anon_sym_COLON, - ACTIONS(3511), 1, + ACTIONS(3532), 1, anon_sym_BANG, - ACTIONS(3658), 1, + ACTIONS(3683), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3515), 2, + ACTIONS(3536), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2624), 6, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51274] = 3, - ACTIONS(3662), 1, + [51505] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3633), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2600), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + 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, + [51528] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3619), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2620), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2626), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51551] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3636), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2592), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2598), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51574] = 3, + ACTIONS(3687), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3660), 11, + ACTIONS(3685), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115974,13 +117181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51295] = 3, - ACTIONS(3666), 1, + [51595] = 3, + ACTIONS(3603), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3664), 11, + ACTIONS(3601), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115992,13 +117199,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51316] = 3, - ACTIONS(3670), 1, + [51616] = 3, + ACTIONS(3691), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3668), 11, + ACTIONS(3689), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116010,13 +117217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51337] = 3, - ACTIONS(3674), 1, + [51637] = 3, + ACTIONS(3695), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3672), 11, + ACTIONS(3693), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116028,13 +117235,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51358] = 3, - ACTIONS(3678), 1, + [51658] = 3, + ACTIONS(3699), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3676), 11, + ACTIONS(3697), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116046,33 +117253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51379] = 5, - ACTIONS(2606), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2602), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - 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, - [51404] = 3, - ACTIONS(3682), 1, + [51679] = 3, + ACTIONS(3703), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3680), 11, + ACTIONS(3701), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116084,13 +117271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51425] = 3, - ACTIONS(3584), 1, + [51700] = 3, + ACTIONS(623), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3582), 11, + ACTIONS(621), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116102,13 +117289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51446] = 3, - ACTIONS(3686), 1, + [51721] = 3, + ACTIONS(3707), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 11, + ACTIONS(3705), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116120,33 +117307,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [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, + [51742] = 3, + ACTIONS(3711), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3688), 11, + ACTIONS(3709), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116158,13 +117325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51513] = 3, - ACTIONS(3694), 1, + [51763] = 3, + ACTIONS(3715), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3692), 11, + ACTIONS(3713), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116176,13 +117343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51534] = 3, - ACTIONS(3698), 1, + [51784] = 3, + ACTIONS(3609), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3696), 11, + ACTIONS(3607), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116194,13 +117361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51555] = 3, - ACTIONS(3702), 1, + [51805] = 3, + ACTIONS(3719), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3700), 11, + ACTIONS(3717), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116212,13 +117379,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51576] = 3, - ACTIONS(3706), 1, + [51826] = 3, + ACTIONS(3723), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 11, + ACTIONS(3721), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116230,13 +117397,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51597] = 3, - ACTIONS(452), 1, + [51847] = 3, + ACTIONS(3727), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(450), 11, + ACTIONS(3725), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116248,13 +117415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51618] = 3, - ACTIONS(3710), 1, + [51868] = 3, + ACTIONS(3731), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 11, + ACTIONS(3729), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116266,33 +117433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51639] = 5, - ACTIONS(2574), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2570), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3639), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2576), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51664] = 3, - ACTIONS(3714), 1, + [51889] = 3, + ACTIONS(3735), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3712), 11, + ACTIONS(3733), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116304,33 +117451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51685] = 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(3613), 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, - [51710] = 3, - ACTIONS(3718), 1, + [51910] = 3, + ACTIONS(3739), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 11, + ACTIONS(3737), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116342,148 +117469,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51731] = 5, - ACTIONS(2614), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2610), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - 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, + [51931] = 9, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3720), 1, + ACTIONS(3741), 1, anon_sym_for, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1372), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 4, + ACTIONS(2568), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51788] = 9, - ACTIONS(3439), 1, + [51963] = 9, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3722), 1, + ACTIONS(3743), 1, anon_sym_for, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1372), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 4, + ACTIONS(2568), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [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, + [51995] = 9, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3728), 1, + ACTIONS(3745), 1, anon_sym_for, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1372), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 4, + ACTIONS(2568), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51876] = 9, - ACTIONS(3439), 1, + [52027] = 9, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3730), 1, + ACTIONS(3747), 1, anon_sym_for, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1372), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 4, + ACTIONS(2568), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51908] = 5, - ACTIONS(706), 1, + [52059] = 5, + ACTIONS(721), 1, aux_sym_string_literal_token1, - ACTIONS(3732), 1, + ACTIONS(3751), 1, sym_crate, - STATE(1530), 1, + STATE(1565), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3724), 8, + ACTIONS(3749), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -116492,105 +117580,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51932] = 9, - ACTIONS(3439), 1, + [52083] = 9, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3734), 1, + ACTIONS(3753), 1, anon_sym_for, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1372), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 4, + ACTIONS(2568), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51964] = 9, - ACTIONS(3439), 1, + [52115] = 5, + ACTIONS(721), 1, + aux_sym_string_literal_token1, + ACTIONS(3755), 1, + sym_crate, + STATE(1565), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3749), 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, + [52139] = 9, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3736), 1, + ACTIONS(3757), 1, anon_sym_for, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1372), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 4, + ACTIONS(2568), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51996] = 9, - ACTIONS(3439), 1, + [52171] = 9, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3738), 1, + ACTIONS(3759), 1, anon_sym_for, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1372), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 4, + ACTIONS(2568), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52028] = 5, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - ACTIONS(3740), 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, - [52052] = 5, - ACTIONS(706), 1, + [52203] = 5, + ACTIONS(721), 1, aux_sym_string_literal_token1, - ACTIONS(3742), 1, + ACTIONS(3761), 1, sym_crate, - STATE(1530), 1, + STATE(1565), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3724), 8, + ACTIONS(3749), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -116599,1812 +117687,1857 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52076] = 9, - ACTIONS(3439), 1, + [52227] = 9, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3744), 1, + ACTIONS(3763), 1, anon_sym_for, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1372), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 4, + ACTIONS(2568), 4, anon_sym_SEMI, anon_sym_LBRACE, 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, + [52259] = 5, + ACTIONS(721), 1, + aux_sym_string_literal_token1, + ACTIONS(3765), 1, + sym_crate, + STATE(1565), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 5, + ACTIONS(3749), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [52135] = 8, - ACTIONS(2317), 1, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52283] = 8, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3769), 1, anon_sym_RBRACE, - ACTIONS(3752), 1, + ACTIONS(3771), 1, anon_sym_COMMA, - ACTIONS(3754), 1, + ACTIONS(3773), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1838), 2, + STATE(1863), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1897), 3, + STATE(1881), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [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, + [52312] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2335), 1, + anon_sym_POUND, + ACTIONS(3775), 1, + sym_identifier, + ACTIONS(3777), 1, + anon_sym_RBRACE, + ACTIONS(3779), 1, + anon_sym_COMMA, + ACTIONS(3781), 1, + sym_crate, + STATE(2074), 1, + sym_enum_variant, + STATE(2400), 1, + sym_visibility_modifier, 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, - [52189] = 9, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3445), 1, + STATE(1571), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52345] = 7, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_COLON_COLON, - ACTIONS(3758), 1, - anon_sym_EQ, - STATE(1361), 1, - sym_parameters, - STATE(1747), 1, + ACTIONS(3783), 1, + anon_sym_LBRACE, + STATE(1360), 1, sym_type_arguments, + STATE(1387), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 3, + ACTIONS(2632), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_GT, - [52220] = 10, + [52372] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3781), 1, + sym_crate, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3787), 1, anon_sym_RBRACE, - ACTIONS(3764), 1, + ACTIONS(3789), 1, anon_sym_COMMA, - ACTIONS(3766), 1, - sym_crate, - STATE(2106), 1, + STATE(2101), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2363), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1546), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52253] = 10, + [52405] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3775), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3791), 1, anon_sym_RBRACE, - ACTIONS(3770), 1, + ACTIONS(3793), 1, anon_sym_COMMA, - STATE(2008), 1, - sym_field_declaration, - STATE(2410), 1, + STATE(1916), 1, + sym_enum_variant, + STATE(2400), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1527), 2, + STATE(1543), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52286] = 10, + [52438] = 9, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3795), 1, + anon_sym_EQ, + STATE(1372), 1, + sym_parameters, + STATE(1722), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2568), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [52469] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3772), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3774), 1, + ACTIONS(3797), 1, anon_sym_RBRACE, - ACTIONS(3776), 1, + ACTIONS(3799), 1, anon_sym_COMMA, - STATE(1880), 1, - sym_enum_variant, - STATE(2335), 1, + STATE(2021), 1, + sym_field_declaration, + STATE(2363), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1560), 2, + STATE(1574), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52319] = 10, + [52502] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3514), 1, + anon_sym_trait, + ACTIONS(3801), 1, + anon_sym_impl, + STATE(67), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2659), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52527] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3775), 1, sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3781), 1, + sym_crate, + ACTIONS(3803), 1, anon_sym_RBRACE, - ACTIONS(3780), 1, - anon_sym_COMMA, - STATE(2073), 1, + STATE(2186), 1, sym_enum_variant, - STATE(2335), 1, + STATE(2400), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1559), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52352] = 7, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3782), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, + [52557] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2335), 1, + anon_sym_POUND, + ACTIONS(3781), 1, + sym_crate, + ACTIONS(3785), 1, + sym_identifier, + ACTIONS(3805), 1, + anon_sym_RBRACE, + STATE(2162), 1, + sym_field_declaration, + STATE(2363), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + STATE(1567), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52587] = 10, + ACTIONS(3807), 1, anon_sym_SEMI, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3811), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3813), 1, 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(3815), 1, + anon_sym_LT, + STATE(336), 1, + sym_field_declaration_list, + STATE(1595), 1, + sym_type_parameters, + STATE(2075), 1, + sym_ordered_field_declaration_list, + STATE(2297), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52404] = 5, - ACTIONS(3786), 1, + [52619] = 5, + ACTIONS(3817), 1, anon_sym_SEMI, - ACTIONS(3788), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(280), 1, + STATE(467), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52426] = 9, - ACTIONS(2313), 1, + [52641] = 9, + ACTIONS(2331), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3821), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3823), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3825), 1, anon_sym_GT, - ACTIONS(3796), 1, + ACTIONS(3827), 1, sym_metavariable, - STATE(1773), 1, + STATE(1803), 1, sym_lifetime, - STATE(2041), 1, + STATE(2056), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2262), 2, sym_const_parameter, sym_optional_type_parameter, - [52456] = 10, - ACTIONS(3798), 1, - anon_sym_SEMI, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(886), 1, - sym_field_declaration_list, - STATE(1571), 1, - sym_type_parameters, - STATE(2098), 1, - sym_ordered_field_declaration_list, - STATE(2130), 1, - sym_where_clause, + [52671] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2335), 1, + anon_sym_POUND, + ACTIONS(3775), 1, + sym_identifier, + ACTIONS(3781), 1, + sym_crate, + ACTIONS(3829), 1, + anon_sym_RBRACE, + STATE(2186), 1, + sym_enum_variant, + STATE(2400), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52488] = 9, + STATE(1538), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52701] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3781), 1, + sym_crate, + ACTIONS(3785), 1, + sym_identifier, + ACTIONS(3831), 1, + anon_sym_RBRACE, + STATE(2162), 1, + sym_field_declaration, + STATE(2363), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1567), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52731] = 9, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3821), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3823), 1, + anon_sym_const, + ACTIONS(3827), 1, + sym_metavariable, + ACTIONS(3833), 1, + anon_sym_GT, + STATE(1803), 1, + sym_lifetime, + STATE(2056), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2262), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52761] = 5, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(3835), 1, + anon_sym_SEMI, + STATE(349), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2659), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52783] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2335), 1, + anon_sym_POUND, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3808), 1, + ACTIONS(3785), 1, + sym_identifier, + ACTIONS(3837), 1, anon_sym_RBRACE, - STATE(2274), 1, + STATE(2162), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2363), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52518] = 9, - ACTIONS(2313), 1, + [52813] = 7, + ACTIONS(3454), 1, + anon_sym_LPAREN, + ACTIONS(3458), 1, + anon_sym_COLON, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(3839), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3452), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [52839] = 9, + ACTIONS(2331), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3821), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3823), 1, anon_sym_const, - ACTIONS(3796), 1, + ACTIONS(3827), 1, sym_metavariable, - ACTIONS(3810), 1, + ACTIONS(3841), 1, anon_sym_GT, - STATE(1832), 1, + STATE(1803), 1, sym_lifetime, - STATE(2041), 1, + STATE(2056), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2262), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52869] = 9, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3821), 1, + sym_identifier, + ACTIONS(3823), 1, + anon_sym_const, + ACTIONS(3827), 1, + sym_metavariable, + ACTIONS(3843), 1, + anon_sym_GT, + STATE(1803), 1, + sym_lifetime, + STATE(2056), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2262), 2, sym_const_parameter, sym_optional_type_parameter, - [52548] = 9, + [52899] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3775), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3812), 1, + ACTIONS(3845), 1, anon_sym_RBRACE, - STATE(2274), 1, - sym_field_declaration, - STATE(2410), 1, + STATE(2186), 1, + sym_enum_variant, + STATE(2400), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52578] = 9, + [52929] = 9, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3821), 1, + sym_identifier, + ACTIONS(3823), 1, + anon_sym_const, + ACTIONS(3827), 1, + sym_metavariable, + ACTIONS(3847), 1, + anon_sym_GT, + STATE(1771), 1, + sym_lifetime, + STATE(2056), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2262), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52959] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3775), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3781), 1, + sym_crate, + ACTIONS(3849), 1, anon_sym_RBRACE, - STATE(2248), 1, + STATE(2186), 1, sym_enum_variant, - STATE(2335), 1, + STATE(2400), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52608] = 7, - ACTIONS(3445), 1, + [52989] = 10, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3815), 1, + anon_sym_LT, + ACTIONS(3851), 1, + anon_sym_SEMI, + ACTIONS(3853), 1, + anon_sym_LBRACE, + STATE(827), 1, + sym_field_declaration_list, + STATE(1619), 1, + sym_type_parameters, + STATE(2110), 1, + sym_ordered_field_declaration_list, + STATE(2141), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53021] = 7, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3816), 1, + ACTIONS(3855), 1, anon_sym_for, - STATE(1347), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2632), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52634] = 10, - ACTIONS(3800), 1, + [53047] = 7, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3857), 1, + anon_sym_for, + STATE(1360), 1, + sym_type_arguments, + STATE(1387), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3804), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(3818), 1, + [53073] = 5, + ACTIONS(3859), 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(3861), 1, + anon_sym_LBRACE, + STATE(962), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52666] = 7, - ACTIONS(3445), 1, + ACTIONS(2659), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53095] = 7, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3820), 1, + ACTIONS(3863), 1, anon_sym_for, - STATE(1347), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2632), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52692] = 9, + [53121] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3772), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3822), 1, + ACTIONS(3865), 1, anon_sym_RBRACE, - STATE(2248), 1, - sym_enum_variant, - STATE(2335), 1, + STATE(2162), 1, + sym_field_declaration, + STATE(2363), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52722] = 9, + [53151] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3824), 1, + ACTIONS(3785), 1, + sym_identifier, + ACTIONS(3867), 1, anon_sym_RBRACE, - STATE(2274), 1, + STATE(2162), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2363), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52752] = 10, - ACTIONS(3800), 1, + [53181] = 10, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3804), 1, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3806), 1, + ACTIONS(3815), 1, anon_sym_LT, - ACTIONS(3826), 1, - anon_sym_SEMI, - ACTIONS(3828), 1, + ACTIONS(3853), 1, anon_sym_LBRACE, - STATE(335), 1, + ACTIONS(3869), 1, + anon_sym_SEMI, + STATE(996), 1, sym_field_declaration_list, - STATE(1609), 1, + STATE(1608), 1, sym_type_parameters, - STATE(2101), 1, + STATE(2047), 1, sym_ordered_field_declaration_list, - STATE(2116), 1, + STATE(2166), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52784] = 7, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3830), 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, - [52810] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, + [53213] = 7, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3832), 1, + ACTIONS(3773), 1, + anon_sym_DOT_DOT, + ACTIONS(3871), 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(1524), 2, + STATE(1863), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52840] = 7, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3834), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, + STATE(2240), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53239] = 9, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3821), 1, + sym_identifier, + ACTIONS(3823), 1, + anon_sym_const, + ACTIONS(3827), 1, + sym_metavariable, + ACTIONS(3873), 1, + anon_sym_GT, + STATE(1803), 1, + sym_lifetime, + STATE(2056), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52866] = 9, - ACTIONS(2313), 1, + STATE(2262), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53269] = 9, + ACTIONS(2331), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3821), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3823), 1, anon_sym_const, - ACTIONS(3796), 1, + ACTIONS(3827), 1, sym_metavariable, - ACTIONS(3836), 1, + ACTIONS(3875), 1, anon_sym_GT, - STATE(1773), 1, + STATE(1803), 1, sym_lifetime, - STATE(2041), 1, + STATE(2056), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2262), 2, sym_const_parameter, sym_optional_type_parameter, - [52896] = 5, - ACTIONS(3838), 1, + [53299] = 7, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3877), 1, + anon_sym_for, + STATE(1360), 1, + sym_type_arguments, + STATE(1387), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 4, anon_sym_SEMI, - ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(1032), 1, + anon_sym_PLUS, + anon_sym_where, + [53325] = 7, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3879), 1, + anon_sym_for, + STATE(1360), 1, + sym_type_arguments, + STATE(1387), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53351] = 5, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3881), 1, + anon_sym_SEMI, + STATE(1101), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52918] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, + [53373] = 7, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3842), 1, + ACTIONS(3773), 1, + anon_sym_DOT_DOT, + ACTIONS(3883), 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(1558), 2, + STATE(1863), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52948] = 9, + STATE(2240), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53399] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3775), 1, sym_identifier, - ACTIONS(3844), 1, + ACTIONS(3781), 1, + sym_crate, + ACTIONS(3885), 1, anon_sym_RBRACE, - STATE(2248), 1, + STATE(2186), 1, sym_enum_variant, - STATE(2335), 1, + STATE(2400), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52978] = 7, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3748), 1, + [53429] = 9, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3821), 1, sym_identifier, - ACTIONS(3754), 1, - anon_sym_DOT_DOT, - ACTIONS(3846), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, - [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(3823), 1, + anon_sym_const, + ACTIONS(3827), 1, + sym_metavariable, + ACTIONS(3887), 1, + anon_sym_GT, + STATE(1803), 1, + sym_lifetime, + STATE(2056), 1, + sym_constrained_type_parameter, 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, + STATE(2262), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53459] = 7, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3850), 1, + ACTIONS(3889), 1, anon_sym_for, - STATE(1347), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2632), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53056] = 7, - ACTIONS(3445), 1, + [53485] = 7, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3852), 1, + ACTIONS(3891), 1, anon_sym_for, - STATE(1347), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2632), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53082] = 9, + [53511] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3775), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3781), 1, + sym_crate, + ACTIONS(3893), 1, + anon_sym_RBRACE, + STATE(2186), 1, + sym_enum_variant, + STATE(2400), 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, + [53541] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2335), 1, + anon_sym_POUND, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3854), 1, + ACTIONS(3785), 1, + sym_identifier, + ACTIONS(3895), 1, anon_sym_RBRACE, - STATE(2274), 1, + STATE(2162), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2363), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53112] = 9, - ACTIONS(2313), 1, + [53571] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_identifier, + STATE(92), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3899), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53593] = 9, + ACTIONS(2331), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3821), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3823), 1, anon_sym_const, - ACTIONS(3796), 1, + ACTIONS(3827), 1, sym_metavariable, - ACTIONS(3856), 1, + ACTIONS(3901), 1, anon_sym_GT, - STATE(1773), 1, + STATE(1803), 1, sym_lifetime, - STATE(2041), 1, + STATE(2056), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2262), 2, sym_const_parameter, sym_optional_type_parameter, - [53142] = 5, + [53623] = 7, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3903), 1, + anon_sym_for, + STATE(1360), 1, + sym_type_arguments, + STATE(1387), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53649] = 10, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3811), 1, + anon_sym_LBRACE, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3815), 1, + anon_sym_LT, + ACTIONS(3905), 1, + anon_sym_SEMI, + STATE(377), 1, + sym_field_declaration_list, + STATE(1583), 1, + sym_type_parameters, + STATE(1939), 1, + sym_ordered_field_declaration_list, + STATE(2231), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53681] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3858), 1, - sym_identifier, - STATE(67), 1, + ACTIONS(3907), 1, + anon_sym_move, + STATE(89), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3860), 6, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53164] = 5, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(3862), 1, - anon_sym_SEMI, - STATE(970), 1, - sym_declaration_list, + [53703] = 6, + ACTIONS(2335), 1, + anon_sym_POUND, + ACTIONS(3767), 1, + sym_identifier, + ACTIONS(3773), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1863), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2240), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53726] = 4, + ACTIONS(2685), 1, + anon_sym_COLON_COLON, + ACTIONS(3909), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53186] = 9, + [53745] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3775), 1, sym_identifier, - ACTIONS(3864), 1, - anon_sym_RBRACE, - STATE(2248), 1, + ACTIONS(3781), 1, + sym_crate, + STATE(2142), 1, sym_enum_variant, - STATE(2335), 1, + STATE(2400), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53216] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3866), 1, + [53772] = 8, + ACTIONS(3911), 1, + anon_sym_LPAREN, + ACTIONS(3916), 1, + anon_sym_LBRACE, + ACTIONS(3919), 1, + anon_sym_LBRACK, + STATE(1539), 1, + aux_sym_macro_definition_repeat1, + STATE(2428), 1, + sym_token_tree_pattern, + STATE(2493), 1, + sym_macro_rule, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3914), 2, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2248), 1, - sym_enum_variant, - STATE(2335), 1, - sym_visibility_modifier, + [53799] = 6, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3532), 1, + anon_sym_BANG, + ACTIONS(3593), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53246] = 9, - ACTIONS(2313), 1, + ACTIONS(3536), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3528), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [53822] = 8, + ACTIONS(2331), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3823), 1, anon_sym_const, - ACTIONS(3796), 1, + ACTIONS(3922), 1, + sym_identifier, + ACTIONS(3924), 1, sym_metavariable, - ACTIONS(3868), 1, - anon_sym_GT, - STATE(1773), 1, + STATE(1763), 1, sym_lifetime, - STATE(2041), 1, + STATE(1866), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2034), 2, sym_const_parameter, sym_optional_type_parameter, - [53276] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + [53849] = 8, + ACTIONS(813), 1, + anon_sym_DOT_DOT, + ACTIONS(3926), 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(3928), 1, + anon_sym_RBRACE, + ACTIONS(3930), 1, + anon_sym_COMMA, + ACTIONS(3932), 1, + anon_sym_ref, + ACTIONS(3934), 1, + sym_mutable_specifier, 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, + STATE(1964), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [53876] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2335), 1, + anon_sym_POUND, + ACTIONS(3775), 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(3781), 1, + sym_crate, + STATE(2108), 1, + sym_enum_variant, + STATE(2400), 1, + sym_visibility_modifier, 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, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53903] = 8, + ACTIONS(813), 1, + anon_sym_DOT_DOT, + ACTIONS(3926), 1, + sym_identifier, + ACTIONS(3932), 1, + anon_sym_ref, + ACTIONS(3934), 1, + sym_mutable_specifier, + ACTIONS(3936), 1, + anon_sym_RBRACE, + ACTIONS(3938), 1, + anon_sym_COMMA, 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, + STATE(1981), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [53930] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3876), 1, - anon_sym_RBRACE, - STATE(2274), 1, + ACTIONS(3785), 1, + sym_identifier, + STATE(2162), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2363), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53388] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + [53957] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2335), 1, + anon_sym_POUND, + ACTIONS(3781), 1, + sym_crate, + ACTIONS(3785), 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, + STATE(1999), 1, + sym_field_declaration, + STATE(2363), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53418] = 10, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53984] = 9, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3880), 1, - anon_sym_SEMI, - STATE(377), 1, - sym_field_declaration_list, - STATE(1588), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + STATE(846), 1, + sym_declaration_list, + STATE(1638), 1, sym_type_parameters, - STATE(1987), 1, - sym_ordered_field_declaration_list, - STATE(2228), 1, + STATE(1850), 1, + sym_trait_bounds, + STATE(2133), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53450] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_const, - ACTIONS(3796), 1, - sym_metavariable, - ACTIONS(3882), 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, - [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, + [54013] = 6, + ACTIONS(3528), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3683), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(3536), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2632), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [54036] = 4, + ACTIONS(872), 1, anon_sym_LBRACE, - ACTIONS(3886), 1, - anon_sym_move, - STATE(76), 1, + STATE(1463), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53528] = 8, + [54055] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3775), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - STATE(2304), 1, - sym_field_declaration, - STATE(2410), 1, + STATE(2186), 1, + sym_enum_variant, + STATE(2400), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53555] = 5, - ACTIONS(3891), 1, - anon_sym_fn, - ACTIONS(3893), 1, - anon_sym_extern, + [54082] = 4, + ACTIONS(3488), 1, + anon_sym_trait, + ACTIONS(3944), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1525), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3888), 4, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_unsafe, - [53576] = 5, - ACTIONS(3898), 1, anon_sym_fn, - ACTIONS(3900), 1, + anon_sym_unsafe, anon_sym_extern, + [54101] = 9, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + STATE(964), 1, + sym_declaration_list, + STATE(1678), 1, + sym_type_parameters, + STATE(1775), 1, + sym_trait_bounds, + STATE(2205), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1525), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3896), 4, - anon_sym_async, + [54130] = 4, + ACTIONS(3948), 1, + anon_sym_PLUS, + STATE(1566), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3946), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54149] = 8, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3823), 1, anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [53597] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3950), 1, sym_identifier, - ACTIONS(3766), 1, - sym_crate, - STATE(2012), 1, - sym_field_declaration, - STATE(2410), 1, - sym_visibility_modifier, + ACTIONS(3952), 1, + sym_metavariable, + STATE(1662), 1, + sym_lifetime, + STATE(1810), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53624] = 6, - ACTIONS(3433), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3902), 1, - anon_sym_COLON_COLON, + STATE(2001), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54176] = 4, + ACTIONS(721), 1, + aux_sym_string_literal_token1, + STATE(1565), 1, + sym_string_literal, 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(3906), 1, - anon_sym_RBRACE, - ACTIONS(3908), 1, - anon_sym_COMMA, - ACTIONS(3910), 1, - anon_sym_ref, - ACTIONS(3912), 1, - sym_mutable_specifier, + ACTIONS(3749), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54195] = 5, + ACTIONS(3956), 1, + anon_sym_fn, + ACTIONS(3958), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1931), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53674] = 2, + STATE(1560), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3954), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [54216] = 4, + ACTIONS(3599), 1, + anon_sym_COLON_COLON, + ACTIONS(3960), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3914), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2659), 6, 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(3804), 1, - anon_sym_where, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - STATE(382), 1, - sym_declaration_list, - STATE(1697), 1, - sym_type_parameters, - STATE(1830), 1, - sym_trait_bounds, - STATE(2233), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53718] = 9, - ACTIONS(3804), 1, + [54235] = 9, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, + ACTIONS(3940), 1, anon_sym_COLON, - ACTIONS(3918), 1, + ACTIONS(3942), 1, anon_sym_LT, - STATE(896), 1, + STATE(273), 1, sym_declaration_list, STATE(1661), 1, sym_type_parameters, - STATE(1765), 1, + STATE(1799), 1, sym_trait_bounds, - STATE(2122), 1, + STATE(2216), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53747] = 9, - ACTIONS(3804), 1, + [54264] = 9, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - STATE(978), 1, - sym_declaration_list, - STATE(1618), 1, - sym_type_parameters, - STATE(1814), 1, - sym_trait_bounds, - STATE(2166), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53776] = 9, - ACTIONS(3788), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3916), 1, + ACTIONS(3940), 1, anon_sym_COLON, - ACTIONS(3918), 1, + ACTIONS(3942), 1, anon_sym_LT, - STATE(402), 1, + STATE(992), 1, sym_declaration_list, - STATE(1620), 1, + STATE(1691), 1, sym_type_parameters, - STATE(1815), 1, + STATE(1806), 1, sym_trait_bounds, - STATE(2225), 1, + STATE(2165), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53805] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - 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(1524), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53832] = 8, - 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(3920), 1, - anon_sym_RBRACE, - ACTIONS(3922), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, + [54293] = 5, + ACTIONS(3965), 1, + anon_sym_fn, + ACTIONS(3967), 1, + anon_sym_extern, 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, + STATE(1560), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3962), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [54314] = 4, + ACTIONS(3532), 1, anon_sym_BANG, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53897] = 4, - ACTIONS(3932), 1, - anon_sym_PLUS, - STATE(1539), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3930), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53916] = 4, - ACTIONS(3935), 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, - [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(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, + [54333] = 8, + ACTIONS(2331), 1, anon_sym_SQUOTE, - ACTIONS(3792), 1, - anon_sym_const, - ACTIONS(3939), 1, + ACTIONS(3821), 1, sym_identifier, - ACTIONS(3941), 1, - sym_metavariable, - STATE(1711), 1, - sym_lifetime, - STATE(1758), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2006), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53981] = 8, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3792), 1, + ACTIONS(3823), 1, anon_sym_const, - ACTIONS(3943), 1, - sym_identifier, - ACTIONS(3945), 1, + ACTIONS(3827), 1, sym_metavariable, - STATE(1715), 1, + STATE(1803), 1, sym_lifetime, - STATE(1822), 1, + STATE(2056), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2023), 2, + STATE(2262), 2, sym_const_parameter, sym_optional_type_parameter, - [54008] = 8, - ACTIONS(3947), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_LBRACE, - 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, - ACTIONS(3950), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [54035] = 6, - ACTIONS(3580), 1, + [54360] = 6, + ACTIONS(3617), 1, anon_sym_COLON_COLON, - ACTIONS(3958), 1, + ACTIONS(3970), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + ACTIONS(2632), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3507), 2, + ACTIONS(3528), 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(3568), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3515), 2, + ACTIONS(3536), 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(2624), 6, - anon_sym_async, + [54383] = 8, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(3823), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54102] = 6, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3950), 1, sym_identifier, - ACTIONS(3754), 1, - anon_sym_DOT_DOT, + ACTIONS(3952), 1, + sym_metavariable, + STATE(1742), 1, + sym_lifetime, + STATE(1810), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, - [54125] = 4, - ACTIONS(858), 1, - anon_sym_LBRACE, - STATE(1455), 1, - sym_block, + STATE(2001), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54410] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(3973), 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, - [54144] = 4, - ACTIONS(3926), 1, + [54425] = 4, + ACTIONS(3977), 1, anon_sym_PLUS, - STATE(1539), 1, + STATE(1566), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3963), 6, + ACTIONS(3975), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54163] = 8, + [54444] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3772), 1, + ACTIONS(3785), 1, sym_identifier, - STATE(2248), 1, - sym_enum_variant, - STATE(2335), 1, + STATE(2131), 1, + sym_field_declaration, + STATE(2363), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54190] = 6, - ACTIONS(3507), 1, + [54471] = 7, + ACTIONS(2632), 1, + anon_sym_PLUS, + ACTIONS(3528), 1, anon_sym_PIPE, - ACTIONS(3509), 1, + ACTIONS(3530), 1, anon_sym_COLON, - ACTIONS(3658), 1, + ACTIONS(3593), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3515), 2, + ACTIONS(3536), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, + ACTIONS(3970), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [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(3792), 1, - anon_sym_const, - ACTIONS(3939), 1, - sym_identifier, - ACTIONS(3941), 1, - sym_metavariable, - STATE(1690), 1, - sym_lifetime, - STATE(1758), 1, - sym_constrained_type_parameter, + [54496] = 4, + ACTIONS(3982), 1, + anon_sym_PLUS, + STATE(1553), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2006), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54259] = 9, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3980), 6, + anon_sym_SEMI, anon_sym_LBRACE, - 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_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54515] = 6, + ACTIONS(3454), 1, + anon_sym_LPAREN, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3984), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3515), 2, + ACTIONS(3464), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 3, - anon_sym_RPAREN, + ACTIONS(3452), 3, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, - [54338] = 8, + [54538] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3775), 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(1153), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54365] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - ACTIONS(3772), 1, - sym_identifier, - STATE(2082), 1, + STATE(2118), 1, sym_enum_variant, - STATE(2335), 1, + STATE(2400), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [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, + [54565] = 4, + ACTIONS(3986), 1, + anon_sym_PLUS, + STATE(1553), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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(3980), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54584] = 4, + ACTIONS(3948), 1, + anon_sym_PLUS, + STATE(1553), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54438] = 8, + ACTIONS(3980), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54603] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2335), 1, anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3781), 1, sym_crate, - STATE(2028), 1, + ACTIONS(3785), 1, + sym_identifier, + STATE(1991), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2363), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54465] = 9, - ACTIONS(3788), 1, + [54630] = 9, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + STATE(426), 1, + sym_declaration_list, + STATE(1698), 1, + sym_type_parameters, + STATE(1794), 1, + sym_trait_bounds, + STATE(2323), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54659] = 9, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3916), 1, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, anon_sym_COLON, - ACTIONS(3918), 1, + ACTIONS(3942), 1, anon_sym_LT, - STATE(317), 1, + STATE(382), 1, sym_declaration_list, - STATE(1680), 1, + STATE(1653), 1, sym_type_parameters, - STATE(1778), 1, + STATE(1819), 1, sym_trait_bounds, - STATE(2167), 1, + STATE(2232), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54494] = 4, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3546), 1, + [54688] = 8, + ACTIONS(3599), 1, anon_sym_COLON_COLON, + ACTIONS(3988), 1, + anon_sym_LPAREN, + ACTIONS(3990), 1, + anon_sym_LBRACE, + ACTIONS(3992), 1, + anon_sym_LBRACK, + ACTIONS(3994), 1, + anon_sym_RBRACK, + ACTIONS(3996), 1, + anon_sym_EQ, + STATE(2378), 1, + sym_delim_token_tree, 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, - [54513] = 7, - ACTIONS(3431), 1, - anon_sym_PIPE, - ACTIONS(3433), 1, + [54714] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_COLON, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, + ACTIONS(4000), 1, + anon_sym_RPAREN, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_LBRACK, + STATE(1539), 1, + aux_sym_macro_definition_repeat1, + STATE(2229), 1, + sym_macro_rule, + STATE(2428), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54537] = 6, - ACTIONS(3800), 1, + [54740] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3971), 1, - anon_sym_EQ, + ACTIONS(4004), 1, + anon_sym_LBRACK, + ACTIONS(4006), 1, + anon_sym_RPAREN, + STATE(1539), 1, + aux_sym_macro_definition_repeat1, + STATE(2228), 1, + sym_macro_rule, + STATE(2428), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3969), 2, + [54766] = 8, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_LBRACK, + ACTIONS(4008), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2079), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [54559] = 3, - ACTIONS(3973), 1, - sym_identifier, + STATE(1616), 1, + aux_sym_macro_definition_repeat1, + STATE(2277), 1, + sym_macro_rule, + STATE(2428), 1, + sym_token_tree_pattern, 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, - [54575] = 2, + [54792] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 7, + ACTIONS(4010), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118412,96 +119545,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [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, + [54806] = 8, + ACTIONS(3988), 1, + anon_sym_LPAREN, + ACTIONS(3990), 1, + anon_sym_LBRACE, + ACTIONS(3992), 1, + anon_sym_LBRACK, + ACTIONS(4012), 1, + anon_sym_RBRACK, + ACTIONS(4014), 1, + anon_sym_EQ, + ACTIONS(4016), 1, + anon_sym_COLON_COLON, + STATE(2381), 1, + sym_delim_token_tree, 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, - [54619] = 8, - ACTIONS(3800), 1, + [54832] = 8, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3811), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3977), 1, + ACTIONS(4018), 1, anon_sym_SEMI, - STATE(823), 1, + STATE(480), 1, sym_field_declaration_list, - STATE(2015), 1, + STATE(2026), 1, sym_ordered_field_declaration_list, - STATE(2191), 1, + STATE(2315), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54645] = 2, + [54858] = 8, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_LBRACK, + ACTIONS(4020), 1, + anon_sym_RPAREN, + STATE(1610), 1, + aux_sym_macro_definition_repeat1, + STATE(2280), 1, + sym_macro_rule, + STATE(2428), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3979), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54659] = 3, - ACTIONS(3981), 1, - anon_sym_trait, + [54884] = 5, + ACTIONS(3532), 1, + anon_sym_BANG, + ACTIONS(3617), 1, + anon_sym_COLON_COLON, 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(3904), 1, - sym_identifier, - ACTIONS(3910), 1, - anon_sym_ref, - ACTIONS(3912), 1, - sym_mutable_specifier, - ACTIONS(3983), 1, + ACTIONS(3536), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3528), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [54904] = 8, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_LBRACK, + ACTIONS(4022), 1, anon_sym_RBRACE, + STATE(1604), 1, + aux_sym_macro_definition_repeat1, + STATE(2282), 1, + sym_macro_rule, + STATE(2428), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2263), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54699] = 2, + [54930] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 7, + ACTIONS(3975), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118509,260 +119644,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54713] = 8, - ACTIONS(3985), 1, - anon_sym_LPAREN, - ACTIONS(3987), 1, - anon_sym_RPAREN, - ACTIONS(3989), 1, - anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - STATE(1544), 1, - aux_sym_macro_definition_repeat1, - STATE(2121), 1, - sym_macro_rule, - STATE(2315), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54739] = 3, - ACTIONS(3993), 1, - sym_identifier, + [54944] = 2, 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, - [54755] = 8, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3995), 1, + ACTIONS(3975), 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(3988), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(3990), 1, anon_sym_LBRACE, - ACTIONS(3999), 1, + ACTIONS(3992), 1, anon_sym_LBRACK, - ACTIONS(4001), 1, + ACTIONS(4012), 1, anon_sym_RBRACK, - ACTIONS(4003), 1, + ACTIONS(4014), 1, anon_sym_EQ, - STATE(2431), 1, + ACTIONS(4024), 1, + anon_sym_COLON_COLON, + STATE(2381), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54781] = 8, - ACTIONS(3985), 1, - anon_sym_LPAREN, - ACTIONS(3989), 1, + [54984] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3975), 7, + anon_sym_SEMI, 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, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54998] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54807] = 8, - ACTIONS(3985), 1, + ACTIONS(3975), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55012] = 8, + ACTIONS(3988), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(3990), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(3992), 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(4012), 1, + anon_sym_RBRACK, + ACTIONS(4014), 1, + anon_sym_EQ, + ACTIONS(4026), 1, + anon_sym_COLON_COLON, + STATE(2381), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54833] = 8, - ACTIONS(3985), 1, + [55038] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4009), 1, - anon_sym_RBRACE, - STATE(1544), 1, + ACTIONS(4028), 1, + anon_sym_RPAREN, + STATE(1611), 1, aux_sym_macro_definition_repeat1, - STATE(2148), 1, + STATE(2273), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2428), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54859] = 8, - ACTIONS(3985), 1, + [55064] = 7, + ACTIONS(3452), 1, + anon_sym_PIPE, + ACTIONS(3454), 1, + anon_sym_LPAREN, + ACTIONS(3458), 1, + anon_sym_COLON, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(4030), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55088] = 8, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(3811), 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(3813), 1, + anon_sym_where, + ACTIONS(4032), 1, + anon_sym_SEMI, + STATE(270), 1, + sym_field_declaration_list, + STATE(1958), 1, + sym_ordered_field_declaration_list, + STATE(2234), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54885] = 3, - ACTIONS(4013), 1, - sym_identifier, + [55114] = 3, + ACTIONS(4034), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3860), 6, + ACTIONS(2659), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54901] = 8, - ACTIONS(3985), 1, - anon_sym_LPAREN, - ACTIONS(3989), 1, - anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - ACTIONS(4015), 1, - anon_sym_RPAREN, - STATE(1544), 1, - aux_sym_macro_definition_repeat1, - STATE(2120), 1, - sym_macro_rule, - STATE(2315), 1, - sym_token_tree_pattern, + [55130] = 7, + ACTIONS(813), 1, + anon_sym_DOT_DOT, + ACTIONS(3926), 1, + sym_identifier, + ACTIONS(3932), 1, + anon_sym_ref, + ACTIONS(3934), 1, + sym_mutable_specifier, + ACTIONS(4036), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54927] = 3, - ACTIONS(4017), 1, - anon_sym_trait, + STATE(2253), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55154] = 3, + ACTIONS(4038), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(3899), 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, + [55170] = 3, + ACTIONS(4040), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(3899), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54959] = 8, - ACTIONS(3985), 1, - anon_sym_LPAREN, - ACTIONS(3989), 1, - anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - ACTIONS(4019), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_macro_definition_repeat1, - STATE(2154), 1, - sym_macro_rule, - STATE(2315), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54985] = 8, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3828), 1, - anon_sym_LBRACE, - ACTIONS(4021), 1, - anon_sym_SEMI, - STATE(272), 1, - sym_field_declaration_list, - STATE(2010), 1, - sym_ordered_field_declaration_list, - STATE(2196), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55011] = 7, - ACTIONS(798), 1, + [55186] = 7, + ACTIONS(813), 1, anon_sym_DOT_DOT, - ACTIONS(3904), 1, + ACTIONS(3926), 1, sym_identifier, - ACTIONS(3910), 1, + ACTIONS(3932), 1, anon_sym_ref, - ACTIONS(3912), 1, + ACTIONS(3934), 1, sym_mutable_specifier, - ACTIONS(4023), 1, + ACTIONS(4042), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2263), 2, + STATE(2253), 2, sym_field_pattern, sym_remaining_field_pattern, - [55035] = 8, - ACTIONS(3985), 1, - anon_sym_LPAREN, - ACTIONS(3989), 1, - anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - ACTIONS(4025), 1, - anon_sym_RBRACE, - STATE(1579), 1, - aux_sym_macro_definition_repeat1, - STATE(2151), 1, - sym_macro_rule, - STATE(2315), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55061] = 2, + [55210] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 7, + ACTIONS(4044), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118770,59 +119854,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55075] = 8, - ACTIONS(3985), 1, + [55224] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4027), 1, + ACTIONS(4046), 1, anon_sym_RBRACE, - STATE(1544), 1, + STATE(1613), 1, aux_sym_macro_definition_repeat1, - STATE(2145), 1, + STATE(2137), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2428), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55101] = 2, + [55250] = 8, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_LBRACK, + ACTIONS(4048), 1, + anon_sym_RBRACE, + STATE(1614), 1, + aux_sym_macro_definition_repeat1, + STATE(2158), 1, + sym_macro_rule, + STATE(2428), 1, + sym_token_tree_pattern, 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, + [55276] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4029), 1, + ACTIONS(4050), 1, anon_sym_RBRACE, - STATE(1580), 1, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2156), 1, + STATE(2276), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2428), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55141] = 2, + [55302] = 7, + ACTIONS(813), 1, + anon_sym_DOT_DOT, + ACTIONS(3926), 1, + sym_identifier, + ACTIONS(3932), 1, + anon_sym_ref, + ACTIONS(3934), 1, + sym_mutable_specifier, + ACTIONS(4052), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2253), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55326] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4031), 7, + ACTIONS(3975), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118830,9014 +119937,9041 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55155] = 5, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3580), 1, + [55340] = 3, + ACTIONS(3542), 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, - [55175] = 8, - ACTIONS(3985), 1, + ACTIONS(2659), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55356] = 8, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3853), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - ACTIONS(4033), 1, - anon_sym_RPAREN, - STATE(1601), 1, - aux_sym_macro_definition_repeat1, - STATE(2311), 1, - sym_macro_rule, - STATE(2315), 1, - sym_token_tree_pattern, + ACTIONS(4054), 1, + anon_sym_SEMI, + STATE(862), 1, + sym_field_declaration_list, + STATE(2102), 1, + sym_ordered_field_declaration_list, + STATE(2124), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55382] = 7, + ACTIONS(813), 1, + anon_sym_DOT_DOT, + ACTIONS(3926), 1, + sym_identifier, + ACTIONS(3932), 1, + anon_sym_ref, + ACTIONS(3934), 1, + sym_mutable_specifier, + ACTIONS(4056), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55201] = 8, - ACTIONS(3985), 1, + STATE(2253), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55406] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_RBRACE, - STATE(1592), 1, + ACTIONS(4058), 1, + anon_sym_RPAREN, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2310), 1, + STATE(2283), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2428), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55227] = 8, - ACTIONS(3995), 1, + [55432] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3999), 1, + ACTIONS(4004), 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(4060), 1, + anon_sym_RPAREN, + STATE(1539), 1, + aux_sym_macro_definition_repeat1, + STATE(2288), 1, + sym_macro_rule, + STATE(2428), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55253] = 3, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, + [55458] = 3, + ACTIONS(4062), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(3899), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55269] = 8, - ACTIONS(3985), 1, + [55474] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4043), 1, - anon_sym_RPAREN, - STATE(1544), 1, + ACTIONS(4064), 1, + anon_sym_RBRACE, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2144), 1, + STATE(2152), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2428), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55295] = 8, - ACTIONS(3985), 1, + [55500] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, - anon_sym_RPAREN, - STATE(1584), 1, + ACTIONS(4066), 1, + anon_sym_RBRACE, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2169), 1, + STATE(2154), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2428), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [55526] = 3, + ACTIONS(2685), 1, anon_sym_COLON_COLON, - STATE(2432), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [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, + ACTIONS(2659), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55542] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4051), 1, - anon_sym_RPAREN, - STATE(1582), 1, + ACTIONS(4068), 1, + anon_sym_RBRACE, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2309), 1, + STATE(2286), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2428), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55397] = 6, - ACTIONS(3800), 1, + [55568] = 6, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3853), 1, anon_sym_LBRACE, - ACTIONS(4055), 1, + ACTIONS(4072), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4053), 2, + ACTIONS(4070), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1959), 2, + STATE(1930), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [55419] = 7, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3904), 1, + [55590] = 3, + ACTIONS(4074), 1, sym_identifier, - ACTIONS(3910), 1, - anon_sym_ref, - ACTIONS(3912), 1, - sym_mutable_specifier, - ACTIONS(4057), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2263), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55443] = 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(4059), 1, - anon_sym_COLON_COLON, - STATE(2432), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55469] = 8, - ACTIONS(3800), 1, + ACTIONS(3899), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55606] = 8, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3804), 1, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3828), 1, + ACTIONS(3853), 1, anon_sym_LBRACE, - ACTIONS(4061), 1, + ACTIONS(4076), 1, anon_sym_SEMI, - STATE(405), 1, + STATE(957), 1, sym_field_declaration_list, - STATE(1925), 1, + STATE(1978), 1, sym_ordered_field_declaration_list, - STATE(2221), 1, + STATE(2202), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55495] = 8, - ACTIONS(3985), 1, + [55632] = 6, + ACTIONS(3809), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(3853), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - ACTIONS(4063), 1, + ACTIONS(4080), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4078), 2, anon_sym_RBRACE, - STATE(1581), 1, + anon_sym_COMMA, + STATE(2104), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55654] = 8, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_LBRACK, + ACTIONS(4082), 1, + anon_sym_RPAREN, + STATE(1579), 1, aux_sym_macro_definition_repeat1, - STATE(2308), 1, + STATE(2261), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2428), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55521] = 8, - ACTIONS(3800), 1, + [55680] = 8, + ACTIONS(3998), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - 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(4004), 1, + anon_sym_LBRACK, + ACTIONS(4084), 1, + anon_sym_RPAREN, + STATE(1578), 1, + aux_sym_macro_definition_repeat1, + STATE(2263), 1, + sym_macro_rule, + STATE(2428), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55547] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4067), 1, - anon_sym_SEMI, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(4071), 1, - anon_sym_DASH_GT, - STATE(1041), 1, - sym_block, - STATE(1973), 1, - sym_where_clause, + [55706] = 3, + ACTIONS(4086), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55570] = 7, - ACTIONS(3804), 1, + ACTIONS(2659), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55722] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4088), 1, anon_sym_SEMI, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - STATE(863), 1, + STATE(428), 1, sym_declaration_list, - STATE(2043), 1, + STATE(2041), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55593] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [55745] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4077), 1, + ACTIONS(4092), 1, anon_sym_SEMI, - STATE(346), 1, - sym_declaration_list, - STATE(1927), 1, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, + anon_sym_DASH_GT, + STATE(916), 1, + sym_block, + STATE(2082), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55616] = 3, + [55768] = 6, + ACTIONS(813), 1, + anon_sym_DOT_DOT, + ACTIONS(3926), 1, + sym_identifier, + ACTIONS(3932), 1, + anon_sym_ref, + ACTIONS(3934), 1, + sym_mutable_specifier, 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, + STATE(2253), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55789] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4079), 1, - anon_sym_SEMI, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4083), 1, - anon_sym_DASH_GT, - STATE(397), 1, - sym_block, - STATE(1873), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55654] = 7, - ACTIONS(3788), 1, + ACTIONS(3815), 1, + anon_sym_LT, + ACTIONS(4098), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4085), 1, - anon_sym_SEMI, - STATE(334), 1, - sym_declaration_list, - STATE(1878), 1, + STATE(354), 1, + sym_enum_variant_list, + STATE(1789), 1, + sym_type_parameters, + STATE(2264), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55677] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(3916), 1, + [55812] = 5, + ACTIONS(4102), 1, anon_sym_COLON, - STATE(904), 1, - sym_declaration_list, - STATE(1771), 1, - sym_trait_bounds, - STATE(2115), 1, - sym_where_clause, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55700] = 7, - ACTIONS(3804), 1, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4100), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55831] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(4106), 1, anon_sym_SEMI, - STATE(917), 1, + ACTIONS(4108), 1, + anon_sym_LBRACE, + STATE(412), 1, sym_block, - STATE(1991), 1, + STATE(2046), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55723] = 7, - ACTIONS(3788), 1, + [55854] = 7, + ACTIONS(3811), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3813), 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, + ACTIONS(3815), 1, + anon_sym_LT, + STATE(320), 1, + sym_field_declaration_list, + STATE(1801), 1, + sym_type_parameters, + STATE(2295), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55746] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [55877] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4089), 1, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4110), 1, anon_sym_SEMI, - STATE(351), 1, - sym_declaration_list, - STATE(1877), 1, + STATE(1076), 1, + sym_block, + STATE(1903), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55769] = 7, - ACTIONS(3804), 1, + [55900] = 4, + ACTIONS(4112), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2632), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [55917] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4114), 1, anon_sym_SEMI, - STATE(894), 1, + ACTIONS(4116), 1, + anon_sym_DASH_GT, + STATE(1124), 1, sym_block, - STATE(1924), 1, + STATE(1899), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55792] = 7, - ACTIONS(3804), 1, + [55940] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4093), 1, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, anon_sym_SEMI, - STATE(897), 1, - sym_declaration_list, - STATE(2100), 1, + STATE(1008), 1, + sym_block, + STATE(1906), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55815] = 7, - ACTIONS(3804), 1, + [55963] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4095), 1, + ACTIONS(4120), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(973), 1, sym_block, - STATE(1858), 1, + STATE(1909), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55838] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4075), 1, + [55986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3705), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2773), 4, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(4097), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56001] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4122), 1, anon_sym_SEMI, - STATE(465), 1, - sym_declaration_list, - STATE(2035), 1, + ACTIONS(4124), 1, + anon_sym_DASH_GT, + STATE(946), 1, + sym_block, + STATE(1980), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55861] = 7, - ACTIONS(3804), 1, + [56024] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(390), 1, - sym_field_declaration_list, - STATE(1816), 1, - sym_type_parameters, - STATE(2242), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(941), 1, + sym_declaration_list, + STATE(1818), 1, + sym_trait_bounds, + STATE(2193), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55884] = 7, - ACTIONS(3804), 1, + [56047] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4126), 1, anon_sym_SEMI, - ACTIONS(4101), 1, - anon_sym_DASH_GT, - STATE(255), 1, + STATE(1111), 1, sym_block, - STATE(1900), 1, + STATE(1891), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55907] = 4, - ACTIONS(4103), 1, - anon_sym_RBRACK, + [56070] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4128), 1, + anon_sym_SEMI, + STATE(930), 1, + sym_declaration_list, + STATE(1985), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2750), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [55924] = 7, - ACTIONS(3249), 1, + [56093] = 7, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(4106), 1, + ACTIONS(4130), 1, sym_identifier, - ACTIONS(4108), 1, + ACTIONS(4132), 1, anon_sym_STAR, - STATE(2060), 1, + STATE(2054), 1, sym_use_list, - STATE(2372), 1, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55947] = 7, - ACTIONS(3249), 1, + [56116] = 7, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3445), 1, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(4106), 1, + ACTIONS(4130), 1, sym_identifier, - ACTIONS(4108), 1, + ACTIONS(4132), 1, anon_sym_STAR, - STATE(2060), 1, + STATE(2054), 1, sym_use_list, - STATE(2374), 1, + STATE(2337), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55970] = 7, - ACTIONS(3804), 1, + [56139] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4134), 1, anon_sym_SEMI, - STATE(263), 1, - sym_block, - STATE(1891), 1, + STATE(1104), 1, + sym_declaration_list, + STATE(1890), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55993] = 7, - ACTIONS(3804), 1, + [56162] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(4112), 1, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(890), 1, - sym_enum_variant_list, - STATE(1768), 1, - sym_type_parameters, - STATE(2127), 1, + ACTIONS(4136), 1, + anon_sym_SEMI, + STATE(376), 1, + sym_block, + STATE(1965), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56016] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [56185] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4114), 1, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(4138), 1, anon_sym_SEMI, - STATE(344), 1, - sym_declaration_list, - STATE(1926), 1, + STATE(306), 1, + sym_block, + STATE(1874), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [56208] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4140), 1, + anon_sym_SEMI, + STATE(1100), 1, + sym_declaration_list, + STATE(1869), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + [56231] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, anon_sym_PLUS, - anon_sym_as, - [56060] = 7, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - ACTIONS(4120), 1, + ACTIONS(4142), 1, anon_sym_SEMI, - ACTIONS(4122), 1, - anon_sym_EQ, - STATE(1850), 1, - sym_type_parameters, - STATE(2318), 1, - sym_trait_bounds, + STATE(887), 1, + sym_declaration_list, + STATE(2015), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56083] = 7, - ACTIONS(3804), 1, + [56254] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4124), 1, + ACTIONS(4144), 1, anon_sym_SEMI, - STATE(991), 1, - sym_block, - STATE(1944), 1, + STATE(875), 1, + sym_declaration_list, + STATE(2024), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56106] = 4, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, - ACTIONS(3830), 1, - anon_sym_for, + [56277] = 4, + ACTIONS(4146), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(3705), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2773), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [56123] = 7, - ACTIONS(3802), 1, - anon_sym_LBRACE, - 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, + anon_sym_DASH_GT, + [56294] = 4, + ACTIONS(4149), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56146] = 4, - ACTIONS(3523), 1, + ACTIONS(3725), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2721), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [56311] = 4, + ACTIONS(3540), 1, anon_sym_COLON_COLON, - ACTIONS(3834), 1, + ACTIONS(3891), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2632), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56163] = 7, - ACTIONS(3804), 1, + [56328] = 7, + ACTIONS(3579), 1, + anon_sym_EQ, + ACTIONS(3581), 1, + anon_sym_COMMA, + ACTIONS(3583), 1, + anon_sym_GT, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1989), 1, + sym_trait_bounds, + STATE(1990), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56351] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4126), 1, - anon_sym_SEMI, - STATE(933), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(447), 1, sym_declaration_list, - STATE(2097), 1, + STATE(1859), 1, + sym_trait_bounds, + STATE(2319), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56186] = 7, - ACTIONS(3916), 1, + [56374] = 5, + ACTIONS(4154), 1, anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - ACTIONS(4128), 1, - anon_sym_SEMI, - ACTIONS(4130), 1, - anon_sym_EQ, - STATE(1813), 1, - sym_type_parameters, - STATE(2479), 1, - sym_trait_bounds, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56209] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4132), 1, - anon_sym_SEMI, - STATE(250), 1, - sym_declaration_list, - STATE(2020), 1, - sym_where_clause, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4152), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56393] = 4, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56232] = 4, - ACTIONS(3523), 1, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2632), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [56410] = 4, + ACTIONS(3540), 1, anon_sym_COLON_COLON, - ACTIONS(3852), 1, + ACTIONS(3879), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2632), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56249] = 7, - ACTIONS(3804), 1, + [56427] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(1036), 1, - sym_declaration_list, - STATE(1841), 1, - sym_trait_bounds, - STATE(2232), 1, + ACTIONS(4158), 1, + anon_sym_SEMI, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + STATE(851), 1, + sym_block, + STATE(2045), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56272] = 7, - ACTIONS(3804), 1, + [56450] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4134), 1, + ACTIONS(4162), 1, anon_sym_SEMI, - ACTIONS(4136), 1, + ACTIONS(4164), 1, anon_sym_DASH_GT, - STATE(1008), 1, + STATE(343), 1, sym_block, - STATE(1978), 1, + STATE(2099), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56295] = 7, - ACTIONS(3804), 1, + [56473] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4138), 1, + ACTIONS(4166), 1, anon_sym_SEMI, - ACTIONS(4140), 1, + ACTIONS(4168), 1, anon_sym_DASH_GT, - STATE(829), 1, + STATE(261), 1, sym_block, - STATE(2019), 1, + STATE(2012), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56318] = 7, - ACTIONS(3804), 1, + [56496] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4142), 1, + ACTIONS(4170), 1, anon_sym_SEMI, - STATE(422), 1, + STATE(1078), 1, sym_block, - STATE(1865), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56341] = 7, - ACTIONS(3802), 1, - anon_sym_LBRACE, - 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, + STATE(1873), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56364] = 7, - ACTIONS(3804), 1, + [56519] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4144), 1, - anon_sym_SEMI, - ACTIONS(4146), 1, - anon_sym_DASH_GT, - STATE(414), 1, - sym_block, - STATE(1993), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(265), 1, + sym_declaration_list, + STATE(1833), 1, + sym_trait_bounds, + STATE(2150), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56387] = 4, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, - ACTIONS(3850), 1, - anon_sym_for, + [56542] = 7, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4172), 1, + anon_sym_COMMA, + ACTIONS(4174), 1, + anon_sym_GT, + STATE(1868), 1, + aux_sym_type_parameters_repeat1, + STATE(1988), 1, + sym_trait_bounds, + STATE(2078), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + [56565] = 7, + ACTIONS(3813), 1, anon_sym_where, - [56404] = 4, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, - ACTIONS(3820), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4090), 1, anon_sym_PLUS, - anon_sym_where, - [56421] = 7, - ACTIONS(3788), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4148), 1, + ACTIONS(4176), 1, anon_sym_SEMI, - STATE(314), 1, - sym_declaration_list, - STATE(2034), 1, + STATE(474), 1, + sym_block, + STATE(1933), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [56588] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56465] = 7, - ACTIONS(2449), 1, + ACTIONS(2721), 2, anon_sym_PLUS, - ACTIONS(3916), 1, + anon_sym_DASH_GT, + ACTIONS(3725), 2, anon_sym_COLON, - ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4149), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4118), 1, + [56605] = 7, + ACTIONS(3579), 1, + anon_sym_EQ, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4178), 1, + anon_sym_COMMA, + ACTIONS(4180), 1, anon_sym_GT, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, - STATE(1970), 1, + STATE(1989), 1, sym_trait_bounds, + STATE(2091), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56488] = 7, - ACTIONS(3804), 1, + [56628] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(3815), 1, + anon_sym_LT, + ACTIONS(4098), 1, anon_sym_LBRACE, - ACTIONS(4150), 1, - anon_sym_SEMI, - STATE(360), 1, - sym_block, - STATE(1941), 1, + STATE(277), 1, + sym_enum_variant_list, + STATE(1792), 1, + sym_type_parameters, + STATE(2210), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56511] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [56651] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4152), 1, + ACTIONS(4182), 1, anon_sym_SEMI, - STATE(352), 1, + STATE(276), 1, sym_declaration_list, - STATE(1997), 1, + STATE(1995), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56534] = 7, - ACTIONS(3804), 1, + [56674] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4154), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - STATE(837), 1, + STATE(378), 1, sym_declaration_list, - STATE(2026), 1, + STATE(2114), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4156), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56576] = 4, - ACTIONS(3523), 1, + [56697] = 4, + ACTIONS(3540), 1, anon_sym_COLON_COLON, - ACTIONS(3782), 1, + ACTIONS(3877), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2632), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56593] = 7, - ACTIONS(3804), 1, + [56714] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4162), 1, + ACTIONS(4186), 1, anon_sym_SEMI, - STATE(914), 1, + ACTIONS(4188), 1, + anon_sym_DASH_GT, + STATE(333), 1, sym_block, - STATE(1938), 1, + STATE(1974), 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, + [56737] = 6, + ACTIONS(3528), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, anon_sym_COLON, - STATE(832), 1, - sym_declaration_list, - STATE(1800), 1, - sym_trait_bounds, - STATE(2182), 1, - sym_where_clause, + ACTIONS(3532), 1, + anon_sym_BANG, + ACTIONS(3683), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56639] = 7, - ACTIONS(3804), 1, + ACTIONS(3536), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56758] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4164), 1, + ACTIONS(4190), 1, anon_sym_SEMI, - ACTIONS(4166), 1, + ACTIONS(4192), 1, anon_sym_DASH_GT, - STATE(287), 1, + STATE(295), 1, sym_block, - STATE(1907), 1, + STATE(1971), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56662] = 7, - ACTIONS(3804), 1, + [56781] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4168), 1, + ACTIONS(4194), 1, anon_sym_SEMI, - STATE(857), 1, + STATE(310), 1, sym_declaration_list, - STATE(2037), 1, + STATE(1998), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56685] = 7, - ACTIONS(3804), 1, + [56804] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(3815), 1, + anon_sym_LT, + ACTIONS(3853), 1, anon_sym_LBRACE, - ACTIONS(4170), 1, - anon_sym_SEMI, - ACTIONS(4172), 1, - anon_sym_DASH_GT, - STATE(1123), 1, - sym_block, - STATE(1949), 1, + STATE(826), 1, + sym_field_declaration_list, + STATE(1857), 1, + sym_type_parameters, + STATE(2143), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56708] = 5, - ACTIONS(4176), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + [56827] = 4, + ACTIONS(3540), 1, anon_sym_COLON_COLON, + ACTIONS(3855), 1, + anon_sym_for, 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(2632), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [56844] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4196), 1, + anon_sym_SEMI, + ACTIONS(4198), 1, + anon_sym_DASH_GT, + STATE(1061), 1, + sym_block, + STATE(1894), 1, + sym_where_clause, 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, - anon_sym_PIPE, - ACTIONS(4180), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56744] = 7, - ACTIONS(3804), 1, + [56867] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3806), 1, + ACTIONS(3815), 1, anon_sym_LT, - ACTIONS(4112), 1, + ACTIONS(4200), 1, anon_sym_LBRACE, - STATE(1022), 1, + STATE(840), 1, sym_enum_variant_list, - STATE(1828), 1, + STATE(1851), 1, sym_type_parameters, - STATE(2200), 1, + STATE(2138), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56767] = 7, - ACTIONS(3804), 1, + [56890] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4183), 1, - anon_sym_SEMI, - STATE(997), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1057), 1, sym_declaration_list, - STATE(2029), 1, + STATE(1852), 1, + sym_trait_bounds, + STATE(2244), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56790] = 7, - ACTIONS(3804), 1, + [56913] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3815), 1, + anon_sym_LT, + ACTIONS(4200), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4185), 1, - anon_sym_SEMI, - STATE(999), 1, - sym_declaration_list, - STATE(1979), 1, + STATE(1065), 1, + sym_enum_variant_list, + STATE(1854), 1, + sym_type_parameters, + STATE(2177), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56813] = 7, - ACTIONS(3804), 1, + [56936] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4187), 1, + ACTIONS(4202), 1, anon_sym_SEMI, - STATE(939), 1, + STATE(352), 1, sym_declaration_list, - STATE(1990), 1, + STATE(1959), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56836] = 7, - ACTIONS(3804), 1, + [56959] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4189), 1, + ACTIONS(4204), 1, anon_sym_SEMI, - STATE(993), 1, + STATE(356), 1, sym_declaration_list, - STATE(1983), 1, + STATE(1967), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56859] = 7, - ACTIONS(3804), 1, + [56982] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4191), 1, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(4193), 1, - anon_sym_DASH_GT, - STATE(447), 1, - sym_block, - STATE(2062), 1, + STATE(848), 1, + sym_declaration_list, + STATE(2105), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56882] = 4, - ACTIONS(4160), 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(2598), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [56899] = 7, - ACTIONS(3804), 1, + [57005] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4195), 1, + ACTIONS(4208), 1, anon_sym_SEMI, - ACTIONS(4197), 1, + ACTIONS(4210), 1, anon_sym_DASH_GT, - STATE(956), 1, + STATE(1040), 1, sym_block, - STATE(2083), 1, + STATE(1904), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56922] = 7, - ACTIONS(3804), 1, + [57028] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(338), 1, - sym_field_declaration_list, - STATE(1776), 1, - sym_type_parameters, - STATE(2128), 1, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4212), 1, + anon_sym_SEMI, + STATE(421), 1, + sym_declaration_list, + STATE(2028), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56945] = 7, - ACTIONS(3804), 1, + [57051] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(4199), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(323), 1, - sym_enum_variant_list, - STATE(1764), 1, - sym_type_parameters, - STATE(2161), 1, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4214), 1, + anon_sym_SEMI, + STATE(384), 1, + sym_declaration_list, + STATE(1957), 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, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(4203), 1, - anon_sym_GT, - STATE(1968), 1, - sym_trait_bounds, - STATE(2092), 1, - aux_sym_type_parameters_repeat1, + [57074] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4216), 1, + anon_sym_SEMI, + STATE(1032), 1, + sym_declaration_list, + STATE(1907), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56991] = 7, - ACTIONS(3804), 1, + [57097] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4205), 1, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(4218), 1, anon_sym_SEMI, - STATE(1059), 1, + STATE(396), 1, sym_block, - STATE(1967), 1, + STATE(2088), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57014] = 4, - ACTIONS(3523), 1, + [57120] = 4, + ACTIONS(3540), 1, anon_sym_COLON_COLON, - ACTIONS(3816), 1, + ACTIONS(3889), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2632), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57031] = 7, - ACTIONS(3788), 1, + [57137] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4220), 1, + anon_sym_SEMI, + STATE(1011), 1, + sym_declaration_list, + STATE(2040), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57160] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3916), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4222), 1, + anon_sym_SEMI, + STATE(1026), 1, + sym_declaration_list, + STATE(1915), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57183] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, anon_sym_COLON, - STATE(423), 1, + STATE(859), 1, sym_declaration_list, - STATE(1844), 1, + STATE(1848), 1, sym_trait_bounds, - STATE(2206), 1, + STATE(2126), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57054] = 4, - ACTIONS(4180), 1, - anon_sym_RBRACK, + [57206] = 7, + ACTIONS(2508), 1, + anon_sym_PLUS, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4224), 1, + anon_sym_COMMA, + ACTIONS(4226), 1, + anon_sym_GT, + STATE(1868), 1, + aux_sym_type_parameters_repeat1, + STATE(1988), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3623), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2646), 3, - anon_sym_SEMI, + [57229] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4090), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - [57071] = 4, - ACTIONS(4207), 1, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(4228), 1, + anon_sym_SEMI, + STATE(456), 1, + sym_block, + STATE(1953), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57252] = 4, + ACTIONS(4230), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3464), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2632), 3, + anon_sym_RPAREN, anon_sym_PLUS, - [57088] = 7, - ACTIONS(3804), 1, + anon_sym_COMMA, + [57269] = 7, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + ACTIONS(4232), 1, + anon_sym_SEMI, + ACTIONS(4234), 1, + anon_sym_EQ, + STATE(1798), 1, + sym_type_parameters, + STATE(2537), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57292] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(3815), 1, + anon_sym_LT, + ACTIONS(3853), 1, anon_sym_LBRACE, - ACTIONS(4209), 1, - anon_sym_SEMI, - STATE(372), 1, - sym_block, - STATE(1876), 1, + STATE(985), 1, + sym_field_declaration_list, + STATE(1773), 1, + sym_type_parameters, + STATE(2163), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57111] = 7, - ACTIONS(3788), 1, + [57315] = 7, + ACTIONS(3811), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4211), 1, - anon_sym_SEMI, - STATE(480), 1, - sym_declaration_list, - STATE(2033), 1, + ACTIONS(3815), 1, + anon_sym_LT, + STATE(390), 1, + sym_field_declaration_list, + STATE(1826), 1, + sym_type_parameters, + STATE(2233), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57134] = 7, - ACTIONS(3788), 1, + [57338] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(307), 1, + sym_declaration_list, + STATE(1777), 1, + sym_trait_bounds, + STATE(2248), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57361] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4213), 1, + ACTIONS(4236), 1, anon_sym_SEMI, - STATE(433), 1, + STATE(993), 1, sym_declaration_list, - STATE(2007), 1, + STATE(1944), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57157] = 4, - ACTIONS(3523), 1, + [57384] = 6, + ACTIONS(3202), 1, anon_sym_COLON_COLON, - ACTIONS(3784), 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, - [57174] = 7, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(3556), 1, + ACTIONS(4224), 1, anon_sym_COMMA, - ACTIONS(3558), 1, + ACTIONS(4226), 1, anon_sym_GT, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(1968), 1, - sym_trait_bounds, - STATE(1969), 1, + STATE(1868), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57197] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(2632), 2, + anon_sym_PLUS, + anon_sym_as, + [57405] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4215), 1, + ACTIONS(4238), 1, anon_sym_SEMI, - STATE(296), 1, + STATE(888), 1, sym_declaration_list, - STATE(1910), 1, + STATE(2096), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57220] = 7, - ACTIONS(3804), 1, + [57428] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4217), 1, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4240), 1, anon_sym_SEMI, - STATE(1108), 1, + STATE(982), 1, sym_block, - STATE(1952), 1, + STATE(1949), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [57451] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3903), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2750), 4, - anon_sym_RPAREN, + ACTIONS(2632), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [57281] = 7, - ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + [57468] = 7, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4242), 1, anon_sym_SEMI, - STATE(388), 1, - sym_block, - STATE(1861), 1, + STATE(347), 1, + sym_declaration_list, + STATE(1983), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57304] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(277), 1, - sym_enum_variant_list, - STATE(1783), 1, - sym_type_parameters, - STATE(2170), 1, - sym_where_clause, + [57491] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57327] = 7, - ACTIONS(3804), 1, + ACTIONS(3725), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2721), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57506] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4225), 1, + ACTIONS(4244), 1, anon_sym_SEMI, - STATE(947), 1, + STATE(995), 1, sym_declaration_list, - STATE(1989), 1, + STATE(1942), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [57529] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3857), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2263), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57371] = 4, - ACTIONS(4227), 1, - anon_sym_COLON_COLON, + ACTIONS(2632), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [57546] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, - anon_sym_RPAREN, + ACTIONS(2773), 2, anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3705), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4146), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [57388] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [57563] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(293), 1, - sym_declaration_list, - STATE(1797), 1, - sym_trait_bounds, - STATE(2124), 1, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(4246), 1, + anon_sym_SEMI, + ACTIONS(4248), 1, + anon_sym_DASH_GT, + STATE(406), 1, + sym_block, + STATE(2058), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57411] = 7, - ACTIONS(3804), 1, + [57586] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4250), 1, anon_sym_SEMI, - ACTIONS(4231), 1, + ACTIONS(4252), 1, anon_sym_DASH_GT, - STATE(875), 1, + STATE(289), 1, sym_block, - STATE(2063), 1, + STATE(1950), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57434] = 5, - ACTIONS(4158), 1, + [57609] = 5, + ACTIONS(4154), 1, anon_sym_COLON, - ACTIONS(4227), 1, + ACTIONS(4230), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3464), 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, - ACTIONS(2750), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3704), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4103), 2, + ACTIONS(4152), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57470] = 7, - ACTIONS(3804), 1, + [57628] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4233), 1, + ACTIONS(4254), 1, anon_sym_SEMI, - STATE(1095), 1, + STATE(440), 1, sym_declaration_list, - STATE(1957), 1, + STATE(2023), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57493] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4235), 1, - anon_sym_SEMI, - ACTIONS(4237), 1, - anon_sym_DASH_GT, - STATE(331), 1, - sym_block, - STATE(1903), 1, - sym_where_clause, + [57651] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3863), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57516] = 7, - ACTIONS(3804), 1, + ACTIONS(2632), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [57668] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4239), 1, + ACTIONS(4256), 1, anon_sym_SEMI, - STATE(1097), 1, + STATE(427), 1, sym_declaration_list, - STATE(1956), 1, + STATE(1896), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57539] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [57691] = 7, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4241), 1, + ACTIONS(4258), 1, anon_sym_SEMI, - STATE(305), 1, + STATE(433), 1, sym_declaration_list, - STATE(1911), 1, + STATE(1898), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57562] = 2, + [57714] = 7, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + ACTIONS(4260), 1, + anon_sym_SEMI, + ACTIONS(4262), 1, + anon_sym_EQ, + STATE(1823), 1, + sym_type_parameters, + STATE(2420), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57737] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4243), 5, + ACTIONS(4264), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57574] = 4, - ACTIONS(4247), 1, - anon_sym_as, - ACTIONS(4249), 1, - anon_sym_COLON_COLON, + [57749] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4245), 3, + ACTIONS(3062), 5, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [57590] = 5, - ACTIONS(4251), 1, - anon_sym_RPAREN, - ACTIONS(4253), 1, - anon_sym_COMMA, - STATE(2066), 1, - aux_sym_parameters_repeat1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [57761] = 4, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57608] = 5, - ACTIONS(4255), 1, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4100), 2, anon_sym_RPAREN, - ACTIONS(4257), 1, anon_sym_COMMA, - STATE(2070), 1, - aux_sym_parameters_repeat1, + [57777] = 6, + ACTIONS(4266), 1, + anon_sym_SEMI, + ACTIONS(4268), 1, + anon_sym_COLON, + ACTIONS(4270), 1, + anon_sym_EQ, + ACTIONS(4272), 1, + anon_sym_else, + ACTIONS(4274), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57626] = 2, + [57797] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3056), 5, + ACTIONS(4276), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [57638] = 3, + anon_sym_COMMA, + [57809] = 3, + ACTIONS(4278), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2598), 3, - anon_sym_RPAREN, + ACTIONS(2765), 4, anon_sym_PLUS, anon_sym_COMMA, - [57652] = 6, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(4116), 1, - anon_sym_COMMA, - ACTIONS(4118), 1, anon_sym_GT, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, - STATE(1970), 1, - sym_trait_bounds, + anon_sym_COLON_COLON, + [57823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57672] = 6, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3451), 1, - anon_sym_COLON_COLON, - ACTIONS(3552), 1, + ACTIONS(3626), 2, anon_sym_COLON, - STATE(1342), 1, - sym_type_arguments, - STATE(2071), 1, - sym_trait_bounds, + anon_sym_PIPE, + ACTIONS(2955), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [57837] = 4, + ACTIONS(4280), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57692] = 2, + ACTIONS(2632), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3452), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [57853] = 4, + ACTIONS(2632), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4259), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3452), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4280), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [57704] = 2, + [57869] = 5, + ACTIONS(4283), 1, + anon_sym_RPAREN, + ACTIONS(4286), 1, + anon_sym_COMMA, + STATE(2115), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4261), 5, + ACTIONS(3452), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57887] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4289), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57716] = 6, - ACTIONS(3916), 1, + [57899] = 6, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(4291), 1, + anon_sym_RPAREN, + ACTIONS(4293), 1, anon_sym_COLON, - ACTIONS(4263), 1, + ACTIONS(4295), 1, anon_sym_COMMA, - ACTIONS(4265), 1, - anon_sym_GT, - STATE(1970), 1, - sym_trait_bounds, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + STATE(2095), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57736] = 3, + [57919] = 4, + ACTIONS(4297), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3660), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2896), 3, - anon_sym_RPAREN, + ACTIONS(2955), 2, + anon_sym_SEMI, anon_sym_PLUS, + ACTIONS(3626), 2, anon_sym_COMMA, - [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(3431), 2, - anon_sym_COLON, anon_sym_PIPE, - [57768] = 4, - ACTIONS(4160), 1, + [57935] = 4, + ACTIONS(4156), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3464), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4273), 2, + ACTIONS(4300), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57784] = 2, + [57951] = 4, + ACTIONS(4304), 1, + anon_sym_as, + ACTIONS(4306), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4302), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [57967] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4275), 5, + ACTIONS(4308), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57796] = 4, - ACTIONS(4227), 1, - anon_sym_COLON_COLON, + [57979] = 2, 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, + ACTIONS(4310), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [57812] = 4, - ACTIONS(4247), 1, + [57991] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3914), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [58003] = 4, + ACTIONS(4314), 1, anon_sym_as, - ACTIONS(4277), 1, + ACTIONS(4316), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4245), 3, + ACTIONS(4312), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [57828] = 2, + [58019] = 4, + ACTIONS(4314), 1, + anon_sym_as, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4279), 5, + ACTIONS(4312), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57840] = 5, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(4281), 1, anon_sym_COMMA, - STATE(1943), 1, - aux_sym_parameters_repeat1, + [58035] = 4, + ACTIONS(4314), 1, + anon_sym_as, + ACTIONS(4320), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, + ACTIONS(4312), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [58051] = 6, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3577), 1, anon_sym_COLON, - anon_sym_PIPE, - [57858] = 2, + STATE(1356), 1, + sym_type_arguments, + STATE(2111), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4283), 5, + [58071] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3038), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [57870] = 2, + [58083] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3042), 5, + ACTIONS(3046), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57882] = 2, + [58095] = 4, + ACTIONS(2955), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3038), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3626), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4297), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58111] = 6, + ACTIONS(3940), 1, anon_sym_COLON, + ACTIONS(4224), 1, + anon_sym_COMMA, + ACTIONS(4226), 1, + anon_sym_GT, + STATE(1868), 1, + aux_sym_type_parameters_repeat1, + STATE(1988), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58131] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4322), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [57894] = 2, + anon_sym_COMMA, + [58143] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4285), 5, + ACTIONS(4324), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57906] = 4, - ACTIONS(2598), 1, - anon_sym_PLUS, + [58155] = 5, + ACTIONS(4326), 1, + anon_sym_RPAREN, + ACTIONS(4328), 1, + anon_sym_COMMA, + STATE(2115), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, + ACTIONS(3452), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4287), 2, + [58173] = 4, + ACTIONS(4230), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4300), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57922] = 2, + [58189] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 5, + ACTIONS(4330), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57934] = 4, - ACTIONS(4287), 1, - anon_sym_RBRACK, + [58201] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + ACTIONS(4332), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3431), 2, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - [57950] = 5, - ACTIONS(762), 1, + [58213] = 5, + ACTIONS(781), 1, anon_sym_RPAREN, - ACTIONS(4292), 1, + ACTIONS(4334), 1, anon_sym_COMMA, - STATE(1995), 1, + STATE(2004), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, + ACTIONS(3452), 2, anon_sym_COLON, anon_sym_PIPE, - [57968] = 2, + [58231] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4294), 5, + ACTIONS(4336), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57980] = 2, + [58243] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4296), 5, + ACTIONS(4338), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57992] = 2, + [58255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4298), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3452), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2632), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [58004] = 6, - ACTIONS(3598), 1, + [58269] = 6, + ACTIONS(3689), 1, anon_sym_PIPE, - ACTIONS(4300), 1, + ACTIONS(4340), 1, anon_sym_SEMI, - ACTIONS(4302), 1, + ACTIONS(4342), 1, anon_sym_COLON, - ACTIONS(4304), 1, + ACTIONS(4344), 1, anon_sym_EQ, - ACTIONS(4306), 1, + ACTIONS(4346), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58024] = 6, - ACTIONS(4308), 1, + [58289] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3116), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58301] = 6, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, anon_sym_SEMI, - ACTIONS(4310), 1, + ACTIONS(4350), 1, anon_sym_COLON, - ACTIONS(4312), 1, + ACTIONS(4352), 1, anon_sym_EQ, - ACTIONS(4314), 1, + ACTIONS(4354), 1, anon_sym_else, - ACTIONS(4316), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58044] = 2, + [58321] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4318), 5, + ACTIONS(3112), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, + [58333] = 5, + ACTIONS(783), 1, + anon_sym_RPAREN, + ACTIONS(4356), 1, anon_sym_COMMA, - [58056] = 4, - ACTIONS(2896), 1, - anon_sym_PLUS, + STATE(1960), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3660), 2, + ACTIONS(3452), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4320), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58072] = 2, + [58351] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4323), 5, + ACTIONS(4358), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [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, - [58104] = 2, + [58363] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3086), 5, + ACTIONS(4360), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [58116] = 2, + anon_sym_COMMA, + [58375] = 6, + ACTIONS(3689), 1, + anon_sym_PIPE, + ACTIONS(4362), 1, + anon_sym_SEMI, + ACTIONS(4364), 1, + anon_sym_COLON, + ACTIONS(4366), 1, + anon_sym_EQ, + ACTIONS(4368), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3060), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + [58395] = 5, + ACTIONS(4370), 1, + anon_sym_RPAREN, + ACTIONS(4372), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3452), 2, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58128] = 4, - ACTIONS(4227), 1, + anon_sym_PIPE, + [58413] = 4, + ACTIONS(4230), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3464), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4273), 2, + ACTIONS(4100), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58144] = 6, - ACTIONS(3445), 1, + [58429] = 6, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4374), 1, + anon_sym_COMMA, + ACTIONS(4376), 1, + anon_sym_GT, + STATE(1988), 1, + sym_trait_bounds, + STATE(2093), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58449] = 6, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + STATE(810), 1, + sym_parameters, + STATE(1356), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58469] = 6, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - STATE(1342), 1, + STATE(1356), 1, sym_type_arguments, - STATE(1353), 1, + STATE(1371), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58164] = 2, + [58489] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4325), 5, + ACTIONS(4378), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58176] = 6, - ACTIONS(3598), 1, - anon_sym_PIPE, - ACTIONS(4327), 1, - anon_sym_SEMI, - ACTIONS(4329), 1, - anon_sym_COLON, - ACTIONS(4331), 1, + [58501] = 5, + ACTIONS(3579), 1, anon_sym_EQ, - ACTIONS(4333), 1, - anon_sym_else, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1989), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58196] = 3, - ACTIONS(4335), 1, - anon_sym_EQ, + ACTIONS(4380), 2, + anon_sym_COMMA, + anon_sym_GT, + [58519] = 2, 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, + ACTIONS(3050), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58531] = 5, + ACTIONS(4274), 1, anon_sym_PIPE, - ACTIONS(4337), 1, + ACTIONS(4291), 1, anon_sym_RPAREN, - ACTIONS(4339), 1, - anon_sym_COLON, - ACTIONS(4341), 1, + ACTIONS(4295), 1, anon_sym_COMMA, - STATE(2061), 1, + STATE(2095), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58230] = 4, - ACTIONS(4247), 1, - anon_sym_as, - ACTIONS(4343), 1, - anon_sym_COLON_COLON, + [58548] = 5, + ACTIONS(781), 1, + anon_sym_RPAREN, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4334), 1, + anon_sym_COMMA, + STATE(2004), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4245), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [58565] = 4, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1988), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4382), 2, anon_sym_COMMA, - [58246] = 4, - ACTIONS(4160), 1, - anon_sym_COLON_COLON, + anon_sym_GT, + [58580] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4385), 1, + anon_sym_if, + STATE(63), 1, + sym_block, + STATE(64), 1, + sym__else_if, 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, + [58597] = 5, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3853), 1, + anon_sym_LBRACE, + STATE(852), 1, + sym_field_declaration_list, + STATE(2130), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58614] = 5, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3815), 1, + anon_sym_LT, + STATE(1637), 1, + sym_parameters, + STATE(2237), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58631] = 5, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3861), 1, + anon_sym_LBRACE, + STATE(1056), 1, + sym_declaration_list, + STATE(2243), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58648] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4387), 3, anon_sym_RPAREN, anon_sym_COMMA, - [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, + [58661] = 5, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3819), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_declaration_list, + STATE(2159), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58282] = 2, + [58678] = 4, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, + ACTIONS(4154), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3950), 5, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58693] = 5, + ACTIONS(3988), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3990), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3992), 1, anon_sym_LBRACK, - [58294] = 2, + STATE(1066), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3090), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58306] = 4, - ACTIONS(4320), 1, - anon_sym_RBRACK, + [58710] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 2, - anon_sym_SEMI, + ACTIONS(3452), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4389), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58723] = 5, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(3660), 2, + ACTIONS(4391), 1, + anon_sym_RPAREN, + ACTIONS(4393), 1, anon_sym_COMMA, - anon_sym_PIPE, - [58322] = 5, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(1968), 1, - sym_trait_bounds, + STATE(1984), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4353), 2, + [58740] = 5, + ACTIONS(2508), 1, + anon_sym_PLUS, + ACTIONS(4395), 1, anon_sym_COMMA, + ACTIONS(4397), 1, anon_sym_GT, - [58340] = 4, - ACTIONS(4357), 1, - anon_sym_as, - ACTIONS(4359), 1, - anon_sym_COLON_COLON, + STATE(2087), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4355), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [58757] = 5, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4395), 1, anon_sym_COMMA, - [58356] = 4, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, + ACTIONS(4397), 1, + anon_sym_GT, + STATE(2087), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58371] = 5, - ACTIONS(4116), 1, + [58774] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4399), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_GT, - ACTIONS(4361), 1, - anon_sym_EQ, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, + anon_sym_PIPE, + [58787] = 5, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3815), 1, + anon_sym_LT, + STATE(1625), 1, + sym_parameters, + STATE(2285), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58804] = 4, + ACTIONS(4401), 1, + anon_sym_DQUOTE, + STATE(1825), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4403), 2, + sym__string_content, + sym_escape_sequence, + [58819] = 5, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3815), 1, + anon_sym_LT, + STATE(1710), 1, + sym_parameters, + STATE(2179), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [58836] = 4, + ACTIONS(4405), 1, + anon_sym_DQUOTE, + STATE(1817), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58405] = 5, - ACTIONS(4363), 1, - anon_sym_LPAREN, - ACTIONS(4365), 1, + ACTIONS(4407), 2, + sym__string_content, + sym_escape_sequence, + [58851] = 5, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4098), 1, anon_sym_LBRACE, - ACTIONS(4367), 1, - anon_sym_LBRACK, - STATE(1336), 1, - sym_delim_token_tree, + STATE(425), 1, + sym_enum_variant_list, + STATE(2239), 1, + sym_where_clause, 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, + [58868] = 5, + ACTIONS(4293), 1, + anon_sym_COLON, + ACTIONS(4409), 1, + anon_sym_COMMA, + ACTIONS(4411), 1, + anon_sym_PIPE, + STATE(1887), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58439] = 4, - ACTIONS(4369), 1, + [58885] = 4, + ACTIONS(4413), 1, anon_sym_DQUOTE, - STATE(1774), 1, + STATE(1862), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4371), 2, + ACTIONS(4415), 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, + [58900] = 5, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4199), 1, + ACTIONS(4098), 1, anon_sym_LBRACE, - STATE(411), 1, + STATE(313), 1, sym_enum_variant_list, - STATE(2213), 1, + STATE(2307), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58486] = 5, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, + [58917] = 5, + ACTIONS(647), 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, - 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(4417), 1, + anon_sym_if, + STATE(220), 1, + sym_block, + STATE(223), 1, + sym__else_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58533] = 5, - ACTIONS(3804), 1, + [58934] = 5, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4112), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(827), 1, - sym_enum_variant_list, - STATE(2188), 1, + STATE(312), 1, + sym_declaration_list, + STATE(2250), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58550] = 5, - ACTIONS(4379), 1, + [58951] = 5, + ACTIONS(4419), 1, anon_sym_LPAREN, - ACTIONS(4381), 1, + ACTIONS(4421), 1, anon_sym_LBRACE, - ACTIONS(4383), 1, + ACTIONS(4423), 1, anon_sym_LBRACK, - STATE(81), 1, + STATE(90), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58567] = 3, + [58968] = 5, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3815), 1, + anon_sym_LT, + STATE(1676), 1, + sym_parameters, + STATE(2212), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, - anon_sym_COLON, + [58985] = 5, + ACTIONS(4274), 1, anon_sym_PIPE, - ACTIONS(4385), 2, + ACTIONS(4425), 1, anon_sym_RPAREN, + ACTIONS(4427), 1, 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, - [58597] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - STATE(385), 1, - sym_declaration_list, - STATE(2306), 1, - sym_where_clause, + STATE(1952), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58614] = 4, - ACTIONS(3916), 1, + [59002] = 5, + ACTIONS(3940), 1, anon_sym_COLON, - STATE(1970), 1, + ACTIONS(4429), 1, + anon_sym_SEMI, + ACTIONS(4431), 1, + anon_sym_EQ, + STATE(2570), 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, + [59019] = 5, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3819), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_declaration_list, + STATE(2151), 1, + sym_where_clause, 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(3806), 1, - anon_sym_LT, - STATE(1646), 1, - sym_parameters, - STATE(2112), 1, - sym_type_parameters, + [59036] = 5, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4370), 1, + anon_sym_RPAREN, + ACTIONS(4372), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58661] = 5, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3828), 1, + [59053] = 5, + ACTIONS(3811), 1, anon_sym_LBRACE, - STATE(403), 1, + ACTIONS(3813), 1, + anon_sym_where, + STATE(272), 1, sym_field_declaration_list, - STATE(2223), 1, + STATE(2219), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58678] = 5, - ACTIONS(3449), 1, + [59070] = 5, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(1627), 1, + STATE(1360), 1, + sym_type_arguments, + STATE(1370), 1, sym_parameters, - STATE(2234), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58695] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - STATE(425), 1, - sym_declaration_list, - STATE(2205), 1, - sym_where_clause, + [59087] = 4, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1988), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58712] = 5, - ACTIONS(4363), 1, + ACTIONS(4433), 2, + anon_sym_COMMA, + anon_sym_GT, + [59102] = 5, + ACTIONS(4435), 1, anon_sym_LPAREN, - ACTIONS(4365), 1, + ACTIONS(4437), 1, anon_sym_LBRACE, - ACTIONS(4367), 1, + ACTIONS(4439), 1, anon_sym_LBRACK, - STATE(1333), 1, + STATE(949), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58729] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4393), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(869), 2, - sym_if_expression, - sym_block, - [58744] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4257), 1, - anon_sym_COMMA, - STATE(2070), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, + [59119] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1069), 1, sym_line_comment, - [58761] = 5, - ACTIONS(4075), 1, + ACTIONS(4441), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4443), 3, 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_STAR, + anon_sym_QMARK, + [59134] = 5, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4199), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(394), 1, - sym_enum_variant_list, - STATE(2293), 1, + STATE(860), 1, + sym_declaration_list, + STATE(2125), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58795] = 5, - ACTIONS(4401), 1, + [59151] = 5, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(4403), 1, - anon_sym_LBRACE, - ACTIONS(4405), 1, - anon_sym_LBRACK, - STATE(1971), 1, - sym_token_tree, + ACTIONS(3815), 1, + anon_sym_LT, + STATE(1659), 1, + sym_parameters, + STATE(2209), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58812] = 5, - ACTIONS(2449), 1, + [59168] = 5, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4407), 1, + ACTIONS(4445), 1, + anon_sym_RPAREN, + ACTIONS(4447), 1, anon_sym_COMMA, - ACTIONS(4409), 1, - anon_sym_GT, - STATE(2058), 1, - aux_sym_type_arguments_repeat1, + STATE(2069), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58829] = 5, - ACTIONS(4075), 1, + [59185] = 5, + ACTIONS(783), 1, + anon_sym_RPAREN, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4407), 1, + ACTIONS(4356), 1, anon_sym_COMMA, - ACTIONS(4409), 1, + STATE(1960), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59202] = 5, + ACTIONS(4224), 1, + anon_sym_COMMA, + ACTIONS(4226), 1, anon_sym_GT, - STATE(2058), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4449), 1, + anon_sym_EQ, + STATE(1868), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58846] = 5, - ACTIONS(4075), 1, + [59219] = 5, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4251), 1, + ACTIONS(4326), 1, anon_sym_RPAREN, - ACTIONS(4253), 1, + ACTIONS(4328), 1, anon_sym_COMMA, - STATE(2066), 1, + STATE(2115), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58863] = 5, - ACTIONS(3445), 1, + [59236] = 5, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(1347), 1, + STATE(808), 1, + sym_parameters, + STATE(1360), 1, sym_type_arguments, - STATE(2074), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58880] = 5, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4411), 1, - anon_sym_RPAREN, - ACTIONS(4413), 1, + [59253] = 5, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4451), 1, anon_sym_COMMA, - STATE(1904), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4453), 1, + anon_sym_GT, + STATE(2033), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58897] = 4, - ACTIONS(4417), 1, + [59270] = 5, + ACTIONS(2508), 1, + anon_sym_PLUS, + ACTIONS(4451), 1, anon_sym_COMMA, - STATE(1794), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4453), 1, + anon_sym_GT, + STATE(2033), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4415), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [58912] = 5, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4419), 1, - anon_sym_RBRACK, - ACTIONS(4421), 1, + [59287] = 5, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4455), 1, + anon_sym_RPAREN, + ACTIONS(4457), 1, anon_sym_COMMA, - STATE(1905), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1931), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58929] = 5, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, + [59304] = 5, + ACTIONS(4419), 1, anon_sym_LPAREN, - STATE(1347), 1, - sym_type_arguments, - STATE(1356), 1, - sym_parameters, + ACTIONS(4421), 1, + anon_sym_LBRACE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + STATE(74), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58946] = 4, - ACTIONS(4423), 1, + [59321] = 4, + ACTIONS(4459), 1, anon_sym_DQUOTE, - STATE(1839), 1, + STATE(1862), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 2, + ACTIONS(4415), 2, sym__string_content, sym_escape_sequence, - [58961] = 4, - ACTIONS(4425), 1, - anon_sym_COMMA, - STATE(1825), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3006), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [58976] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - 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, - [58993] = 4, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(4431), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(233), 2, - sym_if_expression, - sym_block, - [59008] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [59336] = 5, + ACTIONS(3813), 1, anon_sym_where, - STATE(246), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + STATE(1037), 1, sym_declaration_list, - STATE(2199), 1, + STATE(2238), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59025] = 5, - ACTIONS(4339), 1, - anon_sym_COLON, - ACTIONS(4433), 1, - anon_sym_COMMA, - ACTIONS(4435), 1, - anon_sym_PIPE, - STATE(1920), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59042] = 5, - ACTIONS(2449), 1, - anon_sym_PLUS, - 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, - [59059] = 5, - ACTIONS(3804), 1, + [59353] = 5, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(1004), 1, + STATE(455), 1, sym_declaration_list, - STATE(2226), 1, + STATE(2308), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59076] = 4, - ACTIONS(4437), 1, + [59370] = 4, + ACTIONS(4461), 1, anon_sym_DQUOTE, - STATE(1805), 1, + STATE(1791), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4439), 2, + ACTIONS(4463), 2, sym__string_content, sym_escape_sequence, - [59091] = 5, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4281), 1, - anon_sym_COMMA, - STATE(1943), 1, - aux_sym_parameters_repeat1, + [59385] = 5, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4465), 1, + anon_sym_if, + STATE(864), 1, + sym__else_if, + STATE(866), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59108] = 5, - ACTIONS(4441), 1, + [59402] = 5, + ACTIONS(4435), 1, anon_sym_LPAREN, - ACTIONS(4443), 1, + ACTIONS(4437), 1, anon_sym_LBRACE, - ACTIONS(4445), 1, + ACTIONS(4439), 1, anon_sym_LBRACK, - STATE(918), 1, + STATE(944), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59125] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, + [59419] = 5, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4467), 1, + anon_sym_SEMI, + ACTIONS(4469), 1, + anon_sym_EQ, + STATE(2372), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4447), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59138] = 4, - ACTIONS(4449), 1, + [59436] = 5, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4471), 1, + anon_sym_SEMI, + ACTIONS(4473), 1, + anon_sym_EQ, + ACTIONS(4475), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59453] = 4, + ACTIONS(4477), 1, anon_sym_DQUOTE, - STATE(1839), 1, + STATE(1862), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 2, + ACTIONS(4415), 2, sym__string_content, sym_escape_sequence, - [59153] = 4, - ACTIONS(4451), 1, - anon_sym_COMMA, - STATE(1806), 1, - aux_sym_tuple_pattern_repeat1, + [59468] = 5, + ACTIONS(3811), 1, + anon_sym_LBRACE, + ACTIONS(3813), 1, + anon_sym_where, + STATE(438), 1, + sym_field_declaration_list, + STATE(2314), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4447), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [59168] = 5, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - STATE(1035), 1, - sym_declaration_list, - STATE(2231), 1, - sym_where_clause, + [59485] = 5, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1360), 1, + sym_type_arguments, + STATE(2109), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59185] = 5, - ACTIONS(4441), 1, - anon_sym_LPAREN, - ACTIONS(4443), 1, - anon_sym_LBRACE, - ACTIONS(4445), 1, - anon_sym_LBRACK, - STATE(930), 1, - sym_delim_token_tree, + [59502] = 5, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(4479), 1, + anon_sym_RBRACK, + ACTIONS(4481), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59202] = 3, - ACTIONS(4454), 1, + [59519] = 3, + ACTIONS(4483), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4456), 3, + ACTIONS(4485), 3, sym_self, sym_super, sym_crate, - [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, + [59532] = 4, + ACTIONS(4489), 1, + anon_sym_COMMA, + STATE(1855), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59232] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4458), 1, + ACTIONS(4487), 2, anon_sym_SEMI, - ACTIONS(4460), 1, - anon_sym_EQ, - ACTIONS(4462), 1, - anon_sym_else, + anon_sym_LBRACE, + [59547] = 5, + ACTIONS(3988), 1, + anon_sym_LPAREN, + ACTIONS(3990), 1, + anon_sym_LBRACE, + ACTIONS(3992), 1, + anon_sym_LBRACK, + STATE(972), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59249] = 5, - ACTIONS(3802), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [59564] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1069), 1, + sym_line_comment, + ACTIONS(4491), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4493), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59579] = 5, + ACTIONS(3813), 1, anon_sym_where, - STATE(900), 1, - sym_field_declaration_list, - STATE(2119), 1, + ACTIONS(3819), 1, + anon_sym_LBRACE, + STATE(267), 1, + sym_declaration_list, + STATE(2136), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59266] = 5, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(4464), 1, + [59596] = 5, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4495), 1, anon_sym_SEMI, - ACTIONS(4466), 1, + ACTIONS(4497), 1, anon_sym_EQ, - STATE(2437), 1, - sym_trait_bounds, + ACTIONS(4499), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59283] = 5, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, + [59613] = 5, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(4503), 1, anon_sym_LBRACE, - STATE(808), 1, - sym_declaration_list, - STATE(2114), 1, - sym_where_clause, + ACTIONS(4505), 1, + anon_sym_LBRACK, + STATE(1349), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59300] = 5, - ACTIONS(3788), 1, + [59630] = 5, + ACTIONS(3342), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - STATE(266), 1, - sym_declaration_list, - STATE(2280), 1, - sym_where_clause, + ACTIONS(4507), 1, + sym_identifier, + ACTIONS(4509), 1, + anon_sym_STAR, + STATE(2051), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [59647] = 4, + ACTIONS(4511), 1, + anon_sym_DQUOTE, + STATE(1862), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59334] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4468), 1, + ACTIONS(4415), 2, + sym__string_content, + sym_escape_sequence, + [59662] = 4, + ACTIONS(4515), 1, + anon_sym_COMMA, + STATE(1838), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4513), 2, anon_sym_SEMI, - ACTIONS(4470), 1, - anon_sym_EQ, - ACTIONS(4472), 1, - anon_sym_else, + anon_sym_LBRACE, + [59677] = 5, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(4503), 1, + anon_sym_LBRACE, + ACTIONS(4505), 1, + anon_sym_LBRACK, + STATE(1346), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59351] = 5, - ACTIONS(2552), 1, + [59694] = 5, + ACTIONS(4518), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, - anon_sym_LT2, - STATE(783), 1, - sym_parameters, - STATE(1347), 1, - sym_type_arguments, + ACTIONS(4520), 1, + anon_sym_LBRACE, + ACTIONS(4522), 1, + anon_sym_LBRACK, + STATE(1934), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59368] = 3, - ACTIONS(4474), 1, - anon_sym_in, + [59711] = 5, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4524), 1, + anon_sym_SEMI, + ACTIONS(4526), 1, + anon_sym_EQ, + ACTIONS(4528), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4476), 3, - sym_self, - sym_super, - sym_crate, - [59381] = 3, + [59728] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, + ACTIONS(3452), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4478), 2, + ACTIONS(4530), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59394] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4480), 1, - anon_sym_RPAREN, - ACTIONS(4482), 1, - anon_sym_COMMA, - STATE(2024), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59411] = 5, - ACTIONS(4263), 1, - anon_sym_COMMA, - ACTIONS(4265), 1, - anon_sym_GT, - ACTIONS(4361), 1, - anon_sym_EQ, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + [59741] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59428] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4484), 1, + ACTIONS(4532), 3, anon_sym_RPAREN, - ACTIONS(4486), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1918), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59754] = 4, + ACTIONS(4534), 1, + anon_sym_DQUOTE, + STATE(1837), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59445] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(912), 1, - sym_line_comment, - ACTIONS(4488), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4490), 3, - anon_sym_PLUS, + ACTIONS(4536), 2, + sym__string_content, + sym_escape_sequence, + [59769] = 5, + ACTIONS(3342), 1, + anon_sym_LBRACE, + ACTIONS(4130), 1, + sym_identifier, + ACTIONS(4132), 1, anon_sym_STAR, - anon_sym_QMARK, - [59460] = 4, - ACTIONS(4494), 1, - anon_sym_COMMA, - STATE(1825), 1, - aux_sym_where_clause_repeat1, + STATE(2054), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4492), 2, + [59786] = 5, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4538), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [59475] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4497), 1, - anon_sym_if, + ACTIONS(4540), 1, + anon_sym_EQ, + ACTIONS(4542), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(66), 2, - sym_if_expression, - sym_block, - [59490] = 5, - ACTIONS(4075), 1, + [59803] = 5, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4499), 1, + ACTIONS(4544), 1, anon_sym_RPAREN, - ACTIONS(4501), 1, + ACTIONS(4546), 1, anon_sym_COMMA, - STATE(2090), 1, - aux_sym_tuple_type_repeat1, + STATE(2002), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59507] = 5, - ACTIONS(3804), 1, + [59820] = 5, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(4112), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(963), 1, - sym_enum_variant_list, - STATE(2149), 1, + STATE(921), 1, + sym_declaration_list, + STATE(2187), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59524] = 4, - ACTIONS(4503), 1, - anon_sym_DQUOTE, + [59837] = 4, + ACTIONS(4548), 1, + anon_sym_COMMA, STATE(1849), 1, - aux_sym_string_literal_repeat1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4505), 2, - sym__string_content, - sym_escape_sequence, - [59539] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(4532), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [59852] = 5, + ACTIONS(3813), 1, anon_sym_where, - STATE(290), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + STATE(940), 1, sym_declaration_list, - STATE(2185), 1, + STATE(2192), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59556] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4507), 1, - anon_sym_RPAREN, - ACTIONS(4509), 1, - anon_sym_COMMA, - STATE(1963), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59573] = 4, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(1970), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4511), 2, - anon_sym_COMMA, - anon_sym_GT, - [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, - [59605] = 5, - ACTIONS(4379), 1, - anon_sym_LPAREN, - ACTIONS(4381), 1, + [59869] = 5, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4200), 1, anon_sym_LBRACE, - ACTIONS(4383), 1, - anon_sym_LBRACK, - STATE(83), 1, - sym_delim_token_tree, + STATE(948), 1, + sym_enum_variant_list, + STATE(2199), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [59886] = 5, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(3861), 1, + anon_sym_LBRACE, + STATE(1119), 1, + sym_declaration_list, + STATE(2267), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59639] = 4, + [59903] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(912), 1, + ACTIONS(1069), 1, sym_line_comment, - ACTIONS(4514), 1, + ACTIONS(4551), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4516), 3, + ACTIONS(4553), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59654] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4518), 1, - anon_sym_RPAREN, - ACTIONS(4520), 1, - anon_sym_COMMA, - STATE(1882), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59671] = 4, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(4522), 1, - sym_identifier, + [59918] = 5, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4200), 1, + anon_sym_LBRACE, + STATE(923), 1, + sym_enum_variant_list, + STATE(2144), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [59686] = 4, - ACTIONS(4524), 1, - anon_sym_DQUOTE, - STATE(1839), 1, - aux_sym_string_literal_repeat1, + [59935] = 4, + ACTIONS(4555), 1, + anon_sym_COMMA, + STATE(1838), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4526), 2, - sym__string_content, - sym_escape_sequence, - [59701] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4529), 1, + ACTIONS(3076), 2, anon_sym_SEMI, - ACTIONS(4531), 1, - anon_sym_EQ, - ACTIONS(4533), 1, - anon_sym_else, - ACTIONS(3), 2, + anon_sym_LBRACE, + [59950] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1069), 1, sym_line_comment, - [59718] = 5, - ACTIONS(3804), 1, + ACTIONS(4557), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4559), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59965] = 5, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3853), 1, anon_sym_LBRACE, - STATE(1116), 1, - sym_declaration_list, - STATE(2255), 1, + STATE(963), 1, + sym_field_declaration_list, + STATE(2204), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59735] = 3, - ACTIONS(4535), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3598), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59748] = 4, - ACTIONS(4176), 1, + [59982] = 4, + ACTIONS(4102), 1, anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(4104), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3464), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59763] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [59997] = 5, + ACTIONS(3813), 1, anon_sym_where, - STATE(291), 1, + ACTIONS(3819), 1, + anon_sym_LBRACE, + STATE(388), 1, sym_declaration_list, - STATE(2276), 1, + STATE(2254), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, - [59797] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [60014] = 3, + ACTIONS(4561), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4537), 3, + ACTIONS(3689), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [59810] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(912), 1, - sym_line_comment, - ACTIONS(4539), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4541), 3, + [60027] = 5, + ACTIONS(4090), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59825] = 5, - ACTIONS(3995), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(973), 1, - sym_delim_token_tree, + ACTIONS(4563), 1, + anon_sym_RPAREN, + ACTIONS(4565), 1, + anon_sym_COMMA, + STATE(2089), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59842] = 4, - ACTIONS(4543), 1, + [60044] = 4, + ACTIONS(4567), 1, anon_sym_DQUOTE, - STATE(1839), 1, + STATE(1862), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 2, + ACTIONS(4569), 2, sym__string_content, sym_escape_sequence, - [59857] = 5, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(4545), 1, - anon_sym_SEMI, - ACTIONS(4547), 1, - anon_sym_EQ, - STATE(2422), 1, - sym_trait_bounds, + [60059] = 4, + ACTIONS(2335), 1, + anon_sym_POUND, + ACTIONS(4572), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [60074] = 3, + ACTIONS(4574), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59891] = 5, - ACTIONS(3449), 1, + ACTIONS(4576), 3, + sym_self, + sym_super, + sym_crate, + [60087] = 5, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(3815), 1, anon_sym_LT, - STATE(1674), 1, + STATE(1672), 1, sym_parameters, - STATE(2202), 1, + STATE(2299), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59908] = 4, - ACTIONS(4549), 1, - anon_sym_DQUOTE, - STATE(1793), 1, - aux_sym_string_literal_repeat1, + [60104] = 5, + ACTIONS(4374), 1, + anon_sym_COMMA, + ACTIONS(4376), 1, + anon_sym_GT, + ACTIONS(4449), 1, + anon_sym_EQ, + STATE(2093), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4551), 2, - sym__string_content, - sym_escape_sequence, - [59923] = 5, - ACTIONS(3249), 1, - anon_sym_LBRACE, - ACTIONS(4553), 1, + [60121] = 4, + ACTIONS(2578), 1, + anon_sym_LT2, + ACTIONS(4578), 1, sym_identifier, - ACTIONS(4555), 1, - anon_sym_STAR, - STATE(2054), 1, - sym_use_list, + STATE(795), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59940] = 4, - ACTIONS(3836), 1, + [60135] = 4, + ACTIONS(3843), 1, anon_sym_GT, - ACTIONS(4557), 1, + ACTIONS(4580), 1, anon_sym_COMMA, - STATE(2040), 1, + STATE(2039), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59954] = 4, - ACTIONS(284), 1, + [60149] = 4, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4559), 1, - anon_sym_move, - STATE(1047), 1, - sym_block, + ACTIONS(4582), 1, + anon_sym_SEMI, + STATE(1088), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59968] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4561), 1, - sym_identifier, - STATE(2374), 1, - sym_type_arguments, + [60163] = 4, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4584), 1, + anon_sym_SEMI, + STATE(338), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59982] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4563), 1, - anon_sym_SEMI, - STATE(400), 1, - sym_block, + [60177] = 3, + ACTIONS(4230), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59996] = 2, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60189] = 4, + ACTIONS(4586), 1, + sym_identifier, + ACTIONS(4588), 1, + anon_sym_await, + ACTIONS(4590), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4565), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60006] = 2, + [60203] = 4, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4592), 1, + anon_sym_SEMI, + STATE(1132), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4567), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60016] = 4, - ACTIONS(4081), 1, + [60217] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4569), 1, + ACTIONS(4594), 1, anon_sym_SEMI, - STATE(322), 1, + STATE(424), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60030] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4571), 1, + [60231] = 4, + ACTIONS(3599), 1, + anon_sym_COLON_COLON, + ACTIONS(3960), 1, + anon_sym_BANG, + ACTIONS(4596), 1, sym_identifier, - STATE(2374), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60044] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4571), 1, - sym_identifier, - STATE(2372), 1, - sym_type_arguments, + [60245] = 3, + ACTIONS(4600), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60058] = 2, + ACTIONS(4598), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60257] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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(4602), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60269] = 4, + ACTIONS(4604), 1, + anon_sym_RBRACE, + ACTIONS(4606), 1, + anon_sym_COMMA, + STATE(1878), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60082] = 3, - ACTIONS(3163), 1, - anon_sym_COLON_COLON, + [60283] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4577), 2, + ACTIONS(4609), 2, anon_sym_RPAREN, anon_sym_COMMA, - [60094] = 3, - ACTIONS(4075), 1, + [60295] = 3, + ACTIONS(4090), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4579), 2, - anon_sym_RPAREN, + ACTIONS(4611), 2, anon_sym_COMMA, - [60106] = 4, - ACTIONS(626), 1, - anon_sym_RBRACK, - ACTIONS(4581), 1, + anon_sym_GT, + [60307] = 4, + ACTIONS(4613), 1, + anon_sym_RBRACE, + ACTIONS(4615), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_array_expression_repeat1, + STATE(2066), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60120] = 4, - ACTIONS(4075), 1, + [60321] = 3, + ACTIONS(2508), 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, - [60134] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, + ACTIONS(4611), 2, + anon_sym_COMMA, + anon_sym_GT, + [60333] = 3, + ACTIONS(4619), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4587), 2, + ACTIONS(4617), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60146] = 2, + [60345] = 4, + ACTIONS(4621), 1, + anon_sym_for, + ACTIONS(4623), 1, + anon_sym_loop, + ACTIONS(4625), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2395), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [60156] = 2, + [60359] = 4, + ACTIONS(4627), 1, + anon_sym_for, + ACTIONS(4629), 1, + anon_sym_loop, + ACTIONS(4631), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4589), 3, + [60373] = 3, + ACTIONS(4090), 1, 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, - [60180] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - STATE(817), 1, - sym_block, + ACTIONS(4633), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60385] = 4, + ACTIONS(4409), 1, + anon_sym_COMMA, + ACTIONS(4635), 1, + anon_sym_PIPE, + STATE(2063), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60194] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4593), 1, - anon_sym_SEMI, - ACTIONS(4595), 1, - anon_sym_EQ, + [60399] = 4, + ACTIONS(4611), 1, + anon_sym_GT, + ACTIONS(4637), 1, + anon_sym_COMMA, + STATE(1888), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60208] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4597), 1, - anon_sym_SEMI, - STATE(457), 1, - sym_block, + [60413] = 4, + ACTIONS(3815), 1, + anon_sym_LT, + ACTIONS(4640), 1, + anon_sym_EQ, + STATE(2395), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60222] = 4, - ACTIONS(3788), 1, + [60427] = 4, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4599), 1, + ACTIONS(4642), 1, anon_sym_SEMI, - STATE(478), 1, + STATE(1082), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60236] = 4, - ACTIONS(3788), 1, + [60441] = 4, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4601), 1, + ACTIONS(4644), 1, anon_sym_SEMI, - STATE(473), 1, - sym_declaration_list, + STATE(1072), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60250] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [60455] = 4, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(4646), 1, + anon_sym_GT, + STATE(2176), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4603), 2, - anon_sym_RBRACE, + [60469] = 4, + ACTIONS(4648), 1, anon_sym_COMMA, - [60262] = 4, - ACTIONS(4605), 1, - anon_sym_RBRACE, - ACTIONS(4607), 1, - anon_sym_COMMA, - STATE(2077), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60276] = 4, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(4609), 1, - anon_sym_EQ, - STATE(2456), 1, - sym_type_parameters, + ACTIONS(4651), 1, + anon_sym_GT, + STATE(1893), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60290] = 4, - ACTIONS(4611), 1, - anon_sym_RPAREN, - ACTIONS(4613), 1, - anon_sym_COMMA, - STATE(1916), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [60483] = 4, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4653), 1, + anon_sym_SEMI, + STATE(1127), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60304] = 3, - ACTIONS(4075), 1, + [60497] = 3, + ACTIONS(4090), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4615), 2, - anon_sym_RPAREN, + ACTIONS(4655), 2, anon_sym_COMMA, - [60316] = 4, - ACTIONS(4617), 1, - sym_identifier, - ACTIONS(4619), 1, - anon_sym_ref, - ACTIONS(4621), 1, - sym_mutable_specifier, + anon_sym_GT, + [60509] = 4, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4657), 1, + anon_sym_SEMI, + STATE(449), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60330] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4623), 1, - sym_identifier, - STATE(2372), 1, - sym_type_arguments, + [60523] = 4, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4659), 1, + anon_sym_SEMI, + ACTIONS(4661), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60344] = 4, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, - ACTIONS(3552), 1, - anon_sym_COLON, - STATE(2074), 1, - sym_trait_bounds, + [60537] = 4, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4663), 1, + anon_sym_SEMI, + STATE(475), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60358] = 4, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, - ACTIONS(3552), 1, - anon_sym_COLON, - STATE(2074), 1, - sym_trait_bounds, + [60551] = 4, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4665), 1, + anon_sym_SEMI, + STATE(1018), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60372] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4623), 1, - sym_identifier, - STATE(2374), 1, - sym_type_arguments, + [60565] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60386] = 3, - ACTIONS(4075), 1, + ACTIONS(4667), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60575] = 4, + ACTIONS(4669), 1, + sym_identifier, + ACTIONS(4671), 1, + anon_sym_ref, + ACTIONS(4673), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4625), 2, - anon_sym_COMMA, - anon_sym_GT, - [60398] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, + [60589] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4090), 1, + anon_sym_PLUS, + STATE(836), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4627), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60410] = 4, - ACTIONS(4081), 1, + [60603] = 4, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4629), 1, + ACTIONS(4675), 1, anon_sym_SEMI, - STATE(430), 1, + STATE(975), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60424] = 4, - ACTIONS(3788), 1, + [60617] = 4, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4631), 1, + ACTIONS(4677), 1, anon_sym_SEMI, - STATE(325), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60438] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4385), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60450] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4633), 1, - sym_identifier, - STATE(2374), 1, - sym_type_arguments, + STATE(1109), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60464] = 4, - ACTIONS(3578), 1, + [60631] = 3, + ACTIONS(4112), 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, - [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, - [60492] = 4, - ACTIONS(4637), 1, - anon_sym_RBRACE, - ACTIONS(4639), 1, - anon_sym_COMMA, - STATE(2095), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60643] = 4, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4679), 1, + anon_sym_SEMI, + STATE(968), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60506] = 4, - ACTIONS(4641), 1, - sym_identifier, - ACTIONS(4643), 1, - anon_sym_ref, - ACTIONS(4645), 1, - sym_mutable_specifier, + [60657] = 4, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + anon_sym_SEMI, + STATE(1106), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60520] = 2, + [60671] = 3, + ACTIONS(3202), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2385), 3, - anon_sym_SEMI, + ACTIONS(4300), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - [60530] = 4, - ACTIONS(4081), 1, + anon_sym_COMMA, + [60683] = 4, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4647), 1, + ACTIONS(4683), 1, anon_sym_SEMI, - STATE(410), 1, + STATE(955), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60544] = 4, - ACTIONS(4255), 1, + [60697] = 4, + ACTIONS(4530), 1, anon_sym_RPAREN, - ACTIONS(4257), 1, + ACTIONS(4685), 1, anon_sym_COMMA, - STATE(2070), 1, + STATE(1910), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60558] = 4, - ACTIONS(2449), 1, + [60711] = 3, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4649), 1, - sym_mutable_specifier, - ACTIONS(4651), 1, - sym_self, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60572] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4653), 1, - anon_sym_SEMI, - STATE(453), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60586] = 4, - ACTIONS(2381), 1, + ACTIONS(4530), 2, 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, - [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(4661), 1, - anon_sym_SEMI, - STATE(366), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60642] = 2, + [60723] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4663), 3, + ACTIONS(4688), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [60652] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4659), 1, - sym_identifier, - STATE(2374), 1, - sym_type_arguments, + [60733] = 4, + ACTIONS(637), 1, + anon_sym_RBRACK, + ACTIONS(4690), 1, + anon_sym_COMMA, + STATE(1940), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60666] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4665), 1, + [60747] = 4, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4692), 1, anon_sym_SEMI, - STATE(354), 1, - sym_declaration_list, + ACTIONS(4694), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60680] = 4, - ACTIONS(3788), 1, + [60761] = 4, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4667), 1, + ACTIONS(4696), 1, anon_sym_SEMI, - STATE(332), 1, + STATE(1098), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60694] = 4, - ACTIONS(3854), 1, + [60775] = 4, + ACTIONS(4698), 1, anon_sym_RBRACE, - ACTIONS(4669), 1, + ACTIONS(4700), 1, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2106), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60708] = 4, - ACTIONS(4671), 1, + [60789] = 4, + ACTIONS(4702), 1, anon_sym_RBRACE, - ACTIONS(4673), 1, + ACTIONS(4704), 1, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2043), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60722] = 3, - ACTIONS(4678), 1, - anon_sym_COLON, + [60803] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4676), 2, - anon_sym_RBRACE, + ACTIONS(4513), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - [60734] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4680), 2, + [60813] = 4, + ACTIONS(3895), 1, anon_sym_RBRACE, + ACTIONS(4706), 1, 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, - [60760] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + STATE(1948), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4687), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60772] = 4, - ACTIONS(4689), 1, - anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_COMMA, - STATE(1916), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [60827] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60786] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4693), 1, + ACTIONS(4708), 3, anon_sym_SEMI, - ACTIONS(4695), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + [60837] = 4, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, + ACTIONS(3577), 1, + anon_sym_COLON, + STATE(2109), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60800] = 4, - ACTIONS(4433), 1, - anon_sym_COMMA, - ACTIONS(4697), 1, - anon_sym_PIPE, - STATE(2091), 1, - aux_sym_closure_parameters_repeat1, + [60851] = 3, + ACTIONS(4710), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60814] = 4, - ACTIONS(4699), 1, + ACTIONS(4712), 2, + anon_sym_default, + anon_sym_union, + [60863] = 4, + ACTIONS(4714), 1, sym_identifier, - ACTIONS(4701), 1, + ACTIONS(4716), 1, anon_sym_ref, - ACTIONS(4703), 1, + ACTIONS(4718), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60828] = 3, - ACTIONS(4707), 1, - anon_sym_COLON, + [60877] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(4720), 1, + sym_identifier, + STATE(2337), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4705), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60840] = 4, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(4709), 1, - anon_sym_EQ, - STATE(2543), 1, - sym_type_parameters, + [60891] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60854] = 4, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(4711), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_block, + ACTIONS(4722), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60901] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3577), 1, + anon_sym_COLON, + STATE(2109), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60868] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4713), 1, + [60915] = 4, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4724), 1, anon_sym_SEMI, - STATE(2549), 1, - sym_where_clause, + ACTIONS(4726), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60882] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4715), 1, - anon_sym_SEMI, - STATE(299), 1, - sym_declaration_list, + [60929] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(4720), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60896] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - anon_sym_SEMI, - STATE(278), 1, - sym_declaration_list, + [60943] = 4, + ACTIONS(3829), 1, + anon_sym_RBRACE, + ACTIONS(4728), 1, + anon_sym_COMMA, + STATE(1932), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60910] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [60957] = 3, + ACTIONS(4732), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4719), 2, + ACTIONS(4730), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [60922] = 4, - ACTIONS(4721), 1, + [60969] = 4, + ACTIONS(4734), 1, + anon_sym_RPAREN, + ACTIONS(4736), 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, - [60936] = 4, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_GT, - STATE(2265), 1, - sym_lifetime, + STATE(1938), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60950] = 4, - ACTIONS(4728), 1, + [60983] = 4, + ACTIONS(4738), 1, anon_sym_RBRACE, - ACTIONS(4730), 1, + ACTIONS(4740), 1, anon_sym_COMMA, - STATE(2055), 1, - aux_sym_struct_pattern_repeat1, + STATE(1932), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60964] = 4, - ACTIONS(4732), 1, - anon_sym_COMMA, - ACTIONS(4735), 1, - anon_sym_GT, - STATE(1932), 1, - aux_sym_type_arguments_repeat1, + [60997] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(4743), 1, + anon_sym_SEMI, + STATE(457), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60978] = 2, + [61011] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4737), 3, + ACTIONS(4745), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - [60988] = 3, - ACTIONS(2449), 1, + [61021] = 4, + ACTIONS(4090), 1, anon_sym_PLUS, + ACTIONS(4747), 1, + anon_sym_SEMI, + ACTIONS(4749), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4735), 2, - anon_sym_COMMA, - anon_sym_GT, - [61000] = 3, - ACTIONS(4075), 1, + [61035] = 3, + ACTIONS(4090), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4735), 2, + ACTIONS(4751), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [61012] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [61047] = 4, + ACTIONS(2578), 1, + anon_sym_LT2, + ACTIONS(4578), 1, + sym_identifier, + STATE(787), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4739), 2, - anon_sym_COMMA, - anon_sym_GT, - [61024] = 4, - ACTIONS(4741), 1, - anon_sym_RBRACE, - ACTIONS(4743), 1, + [61061] = 4, + ACTIONS(4753), 1, + anon_sym_RPAREN, + ACTIONS(4755), 1, anon_sym_COMMA, - STATE(1937), 1, - aux_sym_struct_pattern_repeat1, + STATE(1938), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61038] = 4, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(4746), 1, + [61075] = 4, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4758), 1, anon_sym_SEMI, - STATE(1058), 1, - sym_block, + STATE(2364), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61052] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, + [61089] = 4, + ACTIONS(3260), 1, + anon_sym_RBRACK, + ACTIONS(4760), 1, + anon_sym_COMMA, + STATE(1940), 1, + aux_sym_array_expression_repeat1, 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, + [61103] = 4, + ACTIONS(2508), 1, + anon_sym_PLUS, + ACTIONS(4763), 1, + sym_mutable_specifier, + ACTIONS(4765), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4750), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61076] = 4, - ACTIONS(4081), 1, + [61117] = 4, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4754), 1, + ACTIONS(4767), 1, anon_sym_SEMI, - STATE(267), 1, - sym_block, + STATE(1090), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61090] = 4, - ACTIONS(2590), 1, - anon_sym_LBRACE, - ACTIONS(4756), 1, - anon_sym_COLON_COLON, - STATE(1082), 1, - sym_field_initializer_list, + [61131] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61104] = 4, - ACTIONS(760), 1, - anon_sym_RPAREN, - ACTIONS(4758), 1, + ACTIONS(4769), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1946), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61118] = 4, - ACTIONS(4069), 1, + [61143] = 4, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4760), 1, + ACTIONS(4771), 1, anon_sym_SEMI, - STATE(1048), 1, - sym_block, + STATE(1016), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61132] = 3, - ACTIONS(3163), 1, - anon_sym_COLON_COLON, + [61157] = 4, + ACTIONS(411), 1, + anon_sym_RPAREN, + ACTIONS(4773), 1, + anon_sym_COMMA, + STATE(1946), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4273), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61144] = 4, - ACTIONS(4478), 1, + [61171] = 4, + ACTIONS(3276), 1, anon_sym_RPAREN, - ACTIONS(4762), 1, + ACTIONS(4775), 1, anon_sym_COMMA, STATE(1946), 1, - aux_sym_parameters_repeat1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61158] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [61185] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4478), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61170] = 4, - ACTIONS(4427), 1, + ACTIONS(4778), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61195] = 4, + ACTIONS(4780), 1, + anon_sym_RBRACE, + ACTIONS(4782), 1, anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_GT, - STATE(2047), 1, - aux_sym_type_arguments_repeat1, + STATE(1948), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61184] = 4, - ACTIONS(4069), 1, + [61209] = 4, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4765), 1, + ACTIONS(4785), 1, anon_sym_SEMI, - STATE(920), 1, + STATE(1084), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61198] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4767), 1, + [61223] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(4787), 1, anon_sym_SEMI, - ACTIONS(4769), 1, - anon_sym_EQ, + STATE(362), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61212] = 4, - ACTIONS(4771), 1, + [61237] = 4, + ACTIONS(3831), 1, anon_sym_RBRACE, - ACTIONS(4773), 1, + ACTIONS(4789), 1, anon_sym_COMMA, - STATE(2042), 1, - aux_sym_use_list_repeat1, + STATE(1948), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61251] = 4, + ACTIONS(2391), 1, + anon_sym_RPAREN, + ACTIONS(4791), 1, + anon_sym_COMMA, + STATE(1849), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61226] = 4, - ACTIONS(4069), 1, + [61265] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4775), 1, + ACTIONS(4793), 1, anon_sym_SEMI, - STATE(943), 1, + STATE(479), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61240] = 2, + [61279] = 4, + ACTIONS(2588), 1, + anon_sym_LBRACE, + ACTIONS(4795), 1, + anon_sym_COLON_COLON, + STATE(907), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4492), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [61250] = 4, - ACTIONS(4777), 1, - anon_sym_RBRACE, - ACTIONS(4779), 1, + [61293] = 4, + ACTIONS(2397), 1, + anon_sym_RBRACK, + ACTIONS(4797), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_struct_pattern_repeat1, + STATE(1849), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61264] = 4, - ACTIONS(632), 1, + [61307] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4781), 1, + ACTIONS(4799), 1, anon_sym_move, - STATE(223), 1, + STATE(1125), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61278] = 4, - ACTIONS(3840), 1, + [61321] = 4, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_SEMI, - STATE(1026), 1, + STATE(280), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61292] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4785), 1, + [61335] = 4, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4803), 1, anon_sym_SEMI, - STATE(1044), 1, - sym_declaration_list, + STATE(2543), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61306] = 4, - ACTIONS(3844), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, - anon_sym_COMMA, - STATE(1960), 1, - aux_sym_enum_variant_list_repeat2, + [61349] = 4, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4805), 1, + anon_sym_SEMI, + STATE(326), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61320] = 3, - ACTIONS(4791), 1, - anon_sym_EQ, + [61363] = 4, + ACTIONS(771), 1, + anon_sym_RPAREN, + ACTIONS(4807), 1, + anon_sym_COMMA, + STATE(1910), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4789), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61332] = 4, - ACTIONS(4793), 1, + [61377] = 4, + ACTIONS(3803), 1, anon_sym_RBRACE, - ACTIONS(4795), 1, + ACTIONS(4809), 1, anon_sym_COMMA, - STATE(1960), 1, + STATE(1932), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, - [61360] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3347), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - [61370] = 4, - ACTIONS(2512), 1, - anon_sym_RPAREN, - ACTIONS(4800), 1, + [61391] = 4, + ACTIONS(4409), 1, anon_sym_COMMA, - STATE(2050), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4811), 1, + anon_sym_PIPE, + STATE(1887), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61384] = 2, + [61405] = 3, + ACTIONS(4815), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4802), 3, - anon_sym_SEMI, + ACTIONS(4813), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61394] = 3, - 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, - [61406] = 4, - ACTIONS(4804), 1, + [61417] = 4, + ACTIONS(4817), 1, + anon_sym_RBRACE, + ACTIONS(4819), 1, anon_sym_COMMA, - ACTIONS(4806), 1, - anon_sym_GT, - STATE(2046), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2098), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61420] = 4, - ACTIONS(4069), 1, + [61431] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4808), 1, + ACTIONS(4821), 1, anon_sym_SEMI, - STATE(1105), 1, + STATE(465), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61434] = 2, + [61445] = 4, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(4823), 1, + anon_sym_move, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4810), 3, - anon_sym_EQ, - anon_sym_COMMA, - 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, + [61459] = 4, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4825), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61458] = 2, + [61473] = 4, + ACTIONS(635), 1, + anon_sym_RBRACK, + ACTIONS(3200), 1, + anon_sym_COMMA, + STATE(1940), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4814), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [61468] = 2, + [61487] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4816), 3, + ACTIONS(4827), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_RBRACE, - [61478] = 4, - ACTIONS(3271), 1, - anon_sym_RBRACK, - ACTIONS(4818), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_array_expression_repeat1, + [61497] = 4, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4829), 1, + anon_sym_SEMI, + ACTIONS(4831), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61492] = 4, - ACTIONS(4069), 1, + [61511] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4821), 1, + ACTIONS(4833), 1, anon_sym_SEMI, - STATE(1126), 1, + STATE(329), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61506] = 4, - ACTIONS(624), 1, - anon_sym_RBRACK, - ACTIONS(3149), 1, + [61525] = 4, + ACTIONS(4835), 1, + anon_sym_RBRACE, + ACTIONS(4837), 1, anon_sym_COMMA, STATE(1972), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61520] = 3, - ACTIONS(4823), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61546] = 4, - ACTIONS(3285), 1, - anon_sym_RPAREN, - ACTIONS(4829), 1, + [61539] = 4, + ACTIONS(4395), 1, anon_sym_COMMA, - STATE(1977), 1, - aux_sym_arguments_repeat1, + ACTIONS(4397), 1, + anon_sym_GT, + STATE(2087), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61560] = 4, - ACTIONS(4069), 1, + [61553] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4832), 1, + ACTIONS(4840), 1, anon_sym_SEMI, - STATE(1104), 1, + STATE(416), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61574] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4834), 1, - anon_sym_SEMI, - STATE(1100), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61588] = 4, - ACTIONS(4433), 1, + [61567] = 4, + ACTIONS(4842), 1, + anon_sym_RBRACE, + ACTIONS(4844), 1, anon_sym_COMMA, - ACTIONS(4836), 1, - anon_sym_PIPE, - STATE(1920), 1, - aux_sym_closure_parameters_repeat1, + STATE(1975), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61602] = 4, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4838), 1, - anon_sym_EQ_GT, - ACTIONS(4840), 1, - anon_sym_if, + [61581] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61616] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4842), 1, + ACTIONS(4847), 3, anon_sym_SEMI, - STATE(983), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [61591] = 3, + ACTIONS(4849), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61630] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4844), 1, + ACTIONS(4851), 2, + anon_sym_default, + anon_sym_union, + [61603] = 4, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4853), 1, anon_sym_SEMI, - STATE(1093), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61644] = 4, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(4846), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2457), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61658] = 4, - ACTIONS(4075), 1, + [61617] = 4, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4848), 1, + ACTIONS(4855), 1, anon_sym_SEMI, - ACTIONS(4850), 1, + ACTIONS(4857), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, - [61686] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4854), 1, + [61631] = 4, + ACTIONS(4094), 1, + anon_sym_LBRACE, + ACTIONS(4859), 1, anon_sym_SEMI, - STATE(2412), 1, - sym_where_clause, + STATE(1044), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61700] = 3, - ACTIONS(4207), 1, - anon_sym_COLON_COLON, + [61645] = 4, + ACTIONS(4861), 1, + anon_sym_RBRACE, + ACTIONS(4863), 1, + anon_sym_COMMA, + STATE(2084), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + [61659] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61726] = 4, - ACTIONS(3840), 1, + ACTIONS(3370), 3, anon_sym_LBRACE, - ACTIONS(4858), 1, - anon_sym_SEMI, - STATE(1076), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61740] = 4, - ACTIONS(4069), 1, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + [61669] = 4, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4860), 1, + ACTIONS(4865), 1, anon_sym_SEMI, - STATE(1066), 1, - sym_block, + STATE(364), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61754] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4862), 1, - anon_sym_SEMI, - ACTIONS(4864), 1, - anon_sym_EQ, + [61683] = 4, + ACTIONS(2528), 1, + anon_sym_RPAREN, + ACTIONS(4867), 1, + anon_sym_COMMA, + STATE(2081), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61768] = 4, - ACTIONS(4081), 1, + [61697] = 4, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(4866), 1, + ACTIONS(4869), 1, anon_sym_SEMI, - STATE(285), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61782] = 4, - ACTIONS(2560), 1, - anon_sym_LT2, - ACTIONS(4868), 1, - sym_identifier, - STATE(1191), 1, - sym_type_arguments, + STATE(1029), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(4870), 1, - anon_sym_COMMA, - STATE(1946), 1, - aux_sym_parameters_repeat1, + [61711] = 3, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61810] = 4, - ACTIONS(4872), 1, - anon_sym_RBRACE, - ACTIONS(4874), 1, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61723] = 4, + ACTIONS(4871), 1, anon_sym_COMMA, - STATE(1996), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4873), 1, + anon_sym_GT, + STATE(2078), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61824] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4877), 1, - anon_sym_SEMI, - STATE(252), 1, - sym_declaration_list, + [61737] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61838] = 4, - ACTIONS(4879), 1, - anon_sym_for, - ACTIONS(4881), 1, - anon_sym_loop, - ACTIONS(4883), 1, - anon_sym_while, + ACTIONS(4875), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [61747] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61852] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4885), 1, - anon_sym_SEMI, - ACTIONS(4887), 1, + ACTIONS(4877), 3, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [61757] = 4, + ACTIONS(3841), 1, + anon_sym_GT, + ACTIONS(4879), 1, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61866] = 4, - ACTIONS(2560), 1, - anon_sym_LT2, - ACTIONS(4868), 1, - sym_identifier, - STATE(1190), 1, - sym_type_arguments, + sym_block_comment, + sym_line_comment, + [61771] = 4, + ACTIONS(3865), 1, + anon_sym_RBRACE, + ACTIONS(4881), 1, + anon_sym_COMMA, + STATE(1951), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61880] = 3, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, + [61785] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61892] = 4, - ACTIONS(4889), 1, - anon_sym_RBRACE, - ACTIONS(4891), 1, + ACTIONS(4883), 2, anon_sym_COMMA, - STATE(2002), 1, - aux_sym_use_list_repeat1, + anon_sym_GT, + [61797] = 4, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4885), 1, + anon_sym_SEMI, + STATE(1001), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61906] = 4, - ACTIONS(4894), 1, - anon_sym_for, - ACTIONS(4896), 1, - anon_sym_loop, - ACTIONS(4898), 1, - anon_sym_while, + [61811] = 4, + ACTIONS(781), 1, + anon_sym_RPAREN, + ACTIONS(4334), 1, + anon_sym_COMMA, + STATE(2004), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61920] = 2, + [61825] = 4, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4887), 1, + anon_sym_SEMI, + STATE(342), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4900), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61930] = 4, - ACTIONS(3822), 1, - anon_sym_RBRACE, - ACTIONS(4902), 1, + [61839] = 4, + ACTIONS(4326), 1, + anon_sym_RPAREN, + ACTIONS(4328), 1, anon_sym_COMMA, - STATE(1960), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2115), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61944] = 4, - ACTIONS(4116), 1, + [61853] = 4, + ACTIONS(3865), 1, + anon_sym_RBRACE, + ACTIONS(4881), 1, anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_GT, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, + STATE(1948), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61958] = 4, - ACTIONS(3788), 1, + [61867] = 4, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4904), 1, + ACTIONS(4889), 1, anon_sym_SEMI, - STATE(300), 1, + STATE(434), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61972] = 4, - ACTIONS(4906), 1, + [61881] = 4, + ACTIONS(3867), 1, anon_sym_RBRACE, - ACTIONS(4908), 1, + ACTIONS(4891), 1, anon_sym_COMMA, - STATE(2022), 1, + STATE(1919), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61986] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4910), 1, - anon_sym_SEMI, - ACTIONS(4912), 1, - anon_sym_RBRACK, + [61895] = 4, + ACTIONS(3867), 1, + anon_sym_RBRACE, + ACTIONS(4891), 1, + anon_sym_COMMA, + STATE(1948), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62000] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4914), 1, - anon_sym_SEMI, - STATE(2493), 1, - sym_where_clause, + [61909] = 4, + ACTIONS(4224), 1, + anon_sym_COMMA, + ACTIONS(4226), 1, + anon_sym_GT, + STATE(1868), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62014] = 3, - ACTIONS(4160), 1, - anon_sym_COLON_COLON, + [61923] = 4, + ACTIONS(4893), 1, + anon_sym_RPAREN, + ACTIONS(4895), 1, + anon_sym_COMMA, + STATE(1938), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62026] = 4, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4916), 1, + [61937] = 4, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4897), 1, + anon_sym_as, + ACTIONS(4899), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61951] = 4, + ACTIONS(777), 1, + anon_sym_RPAREN, + ACTIONS(4901), 1, anon_sym_COMMA, - STATE(1912), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1910), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62040] = 4, - ACTIONS(3445), 1, + [61965] = 4, + ACTIONS(2578), 1, anon_sym_LT2, - ACTIONS(3746), 1, - anon_sym_LBRACE, - STATE(1347), 1, + ACTIONS(4903), 1, + sym_identifier, + STATE(1202), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62054] = 4, - ACTIONS(3445), 1, + [61979] = 4, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(4918), 1, + ACTIONS(4905), 1, sym_identifier, - STATE(2372), 1, + STATE(2337), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62068] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4920), 1, - anon_sym_SEMI, - STATE(2384), 1, - sym_where_clause, + [61993] = 4, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(4907), 1, + anon_sym_EQ_GT, + ACTIONS(4909), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62082] = 4, - ACTIONS(3445), 1, + [62007] = 4, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(4922), 1, + ACTIONS(4905), 1, sym_identifier, - STATE(2374), 1, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62096] = 4, - ACTIONS(4075), 1, + [62021] = 4, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(4924), 1, + ACTIONS(4911), 1, anon_sym_SEMI, - ACTIONS(4926), 1, + ACTIONS(4913), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62110] = 4, - ACTIONS(3445), 1, + [62035] = 4, + ACTIONS(3342), 1, + anon_sym_LBRACE, + ACTIONS(4915), 1, + sym_identifier, + STATE(1912), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62049] = 4, + ACTIONS(2578), 1, anon_sym_LT2, - ACTIONS(4918), 1, + ACTIONS(4903), 1, sym_identifier, - STATE(2374), 1, + STATE(1203), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62124] = 4, - ACTIONS(4069), 1, + [62063] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4928), 1, + ACTIONS(4917), 1, anon_sym_SEMI, - STATE(1013), 1, + STATE(399), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62138] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, + [62077] = 4, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(4919), 1, anon_sym_SEMI, - STATE(471), 1, - sym_declaration_list, + ACTIONS(4921), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62152] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4932), 1, - anon_sym_SEMI, - ACTIONS(4934), 1, - anon_sym_RBRACK, + [62091] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62166] = 4, - ACTIONS(3824), 1, + ACTIONS(4923), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4916), 1, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_field_declaration_list_repeat1, + [62101] = 4, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4925), 1, + anon_sym_SEMI, + STATE(1006), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62180] = 4, - ACTIONS(4263), 1, - anon_sym_COMMA, - ACTIONS(4265), 1, - anon_sym_GT, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + [62115] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62194] = 4, - ACTIONS(4936), 1, + ACTIONS(2407), 3, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4938), 1, - anon_sym_COMMA, - STATE(1916), 1, - aux_sym_ordered_field_declaration_list_repeat1, + anon_sym_RBRACE, + [62125] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, 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, + ACTIONS(4927), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62137] = 4, + ACTIONS(3815), 1, + anon_sym_LT, + ACTIONS(4929), 1, anon_sym_EQ, + STATE(2558), 1, + sym_type_parameters, 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, + [62151] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62236] = 4, - ACTIONS(3445), 1, + ACTIONS(2423), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [62161] = 4, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(4922), 1, + ACTIONS(4931), 1, sym_identifier, - STATE(2372), 1, + STATE(2337), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62250] = 4, - ACTIONS(3832), 1, + [62175] = 4, + ACTIONS(4933), 1, anon_sym_RBRACE, - ACTIONS(4946), 1, + ACTIONS(4935), 1, anon_sym_COMMA, - STATE(1984), 1, + STATE(1997), 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, + [62189] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(4931), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62278] = 4, - ACTIONS(3832), 1, - anon_sym_RBRACE, - ACTIONS(4946), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_field_declaration_list_repeat1, + [62203] = 4, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4937), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62292] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4950), 1, + [62217] = 4, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4939), 1, anon_sym_SEMI, - ACTIONS(4952), 1, - anon_sym_EQ, + STATE(987), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62306] = 4, - ACTIONS(3445), 1, + [62231] = 4, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(4561), 1, + ACTIONS(4941), 1, sym_identifier, - STATE(2372), 1, + STATE(2337), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62320] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4954), 1, + [62245] = 4, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4943), 1, anon_sym_SEMI, - STATE(342), 1, - sym_declaration_list, + STATE(2459), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62334] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4956), 1, - anon_sym_SEMI, - STATE(428), 1, - sym_declaration_list, + [62259] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62348] = 4, - ACTIONS(3788), 1, + ACTIONS(4389), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62271] = 4, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4958), 1, + ACTIONS(4945), 1, anon_sym_SEMI, - STATE(348), 1, + STATE(410), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62362] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4960), 1, - anon_sym_SEMI, - STATE(2450), 1, - sym_where_clause, + [62285] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(4941), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62376] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4962), 1, - anon_sym_SEMI, - STATE(921), 1, - sym_declaration_list, + [62299] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4947), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62309] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(4949), 1, + sym_identifier, + STATE(2337), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62390] = 3, - ACTIONS(4075), 1, + [62323] = 4, + ACTIONS(4090), 1, anon_sym_PLUS, + ACTIONS(4951), 1, + anon_sym_SEMI, + ACTIONS(4953), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4964), 2, - anon_sym_COMMA, + [62337] = 4, + ACTIONS(882), 1, anon_sym_GT, - [62402] = 2, + ACTIONS(4955), 1, + anon_sym_COMMA, + STATE(1888), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4966), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [62351] = 4, + ACTIONS(4374), 1, anon_sym_COMMA, - [62412] = 4, - ACTIONS(4387), 1, + ACTIONS(4376), 1, anon_sym_GT, - ACTIONS(4968), 1, - anon_sym_COMMA, - STATE(2040), 1, + STATE(2093), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62426] = 3, - ACTIONS(4361), 1, - anon_sym_EQ, + [62365] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(4949), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, - anon_sym_COMMA, - anon_sym_GT, - [62438] = 4, - ACTIONS(3383), 1, - anon_sym_RBRACE, - ACTIONS(4971), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_use_list_repeat1, + [62379] = 3, + ACTIONS(3202), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62452] = 4, - ACTIONS(3840), 1, + ACTIONS(4957), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62391] = 4, + ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4973), 1, + ACTIONS(4959), 1, anon_sym_SEMI, - STATE(929), 1, + STATE(368), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62466] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4975), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62476] = 3, - ACTIONS(4075), 1, + [62405] = 3, + ACTIONS(4090), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4977), 2, + ACTIONS(4961), 2, anon_sym_COMMA, anon_sym_GT, - [62488] = 4, - ACTIONS(4852), 1, + [62417] = 4, + ACTIONS(4433), 1, anon_sym_GT, - ACTIONS(4979), 1, + ACTIONS(4963), 1, anon_sym_COMMA, - STATE(1929), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2039), 1, + aux_sym_type_parameters_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, + [62431] = 4, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(4966), 1, + anon_sym_SEMI, + STATE(881), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62516] = 3, - ACTIONS(4983), 1, - sym_identifier, + [62445] = 4, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(4968), 1, + anon_sym_SEMI, + STATE(328), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4985), 2, - anon_sym_default, - anon_sym_union, - [62528] = 2, + [62459] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4987), 3, + ACTIONS(4970), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62538] = 4, - ACTIONS(4989), 1, - anon_sym_RPAREN, - ACTIONS(4991), 1, + [62469] = 4, + ACTIONS(3414), 1, + anon_sym_RBRACE, + ACTIONS(4972), 1, anon_sym_COMMA, - STATE(2050), 1, - aux_sym_tuple_type_repeat1, + STATE(1975), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62552] = 3, - ACTIONS(4075), 1, + [62483] = 4, + ACTIONS(4090), 1, anon_sym_PLUS, + ACTIONS(4974), 1, + anon_sym_SEMI, + ACTIONS(4976), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4989), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [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, + [62497] = 4, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4996), 1, + ACTIONS(4978), 1, anon_sym_SEMI, - STATE(888), 1, - sym_declaration_list, + STATE(820), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62592] = 2, + [62511] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(4980), 1, + anon_sym_SEMI, + STATE(299), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4998), 3, + [62525] = 4, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(4982), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62602] = 4, - ACTIONS(4049), 1, - anon_sym_RBRACE, - ACTIONS(5000), 1, - anon_sym_COMMA, - STATE(1937), 1, - aux_sym_struct_pattern_repeat1, + STATE(2575), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62616] = 2, + [62539] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5002), 3, + ACTIONS(4984), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62626] = 3, - ACTIONS(5006), 1, - anon_sym_COLON, + [62549] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5004), 2, + ACTIONS(4986), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62638] = 4, - ACTIONS(880), 1, - anon_sym_GT, - ACTIONS(5008), 1, + [62559] = 4, + ACTIONS(783), 1, + anon_sym_RPAREN, + ACTIONS(4356), 1, anon_sym_COMMA, - STATE(1932), 1, - aux_sym_type_arguments_repeat1, + STATE(1960), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62652] = 2, + [62573] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5010), 3, + ACTIONS(4988), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62662] = 2, + [62583] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5012), 3, + ACTIONS(4990), 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, + [62593] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62686] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, + ACTIONS(4992), 3, anon_sym_SEMI, - STATE(364), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [62603] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62700] = 4, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(5018), 1, + ACTIONS(4994), 3, anon_sym_SEMI, - STATE(992), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [62613] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(4130), 1, + sym_identifier, + STATE(2337), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62714] = 4, - ACTIONS(762), 1, - anon_sym_RPAREN, - ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(1995), 1, - aux_sym_parameters_repeat1, + [62627] = 3, + ACTIONS(4449), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62728] = 4, - ACTIONS(3445), 1, + ACTIONS(4433), 2, + anon_sym_COMMA, + anon_sym_GT, + [62639] = 4, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(4106), 1, + ACTIONS(4130), 1, sym_identifier, - STATE(2372), 1, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62742] = 4, - ACTIONS(762), 1, + [62653] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(4996), 1, + anon_sym_SEMI, + STATE(451), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62667] = 4, + ACTIONS(783), 1, anon_sym_RPAREN, - ACTIONS(4292), 1, + ACTIONS(4356), 1, anon_sym_COMMA, - STATE(1946), 1, + STATE(1910), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62756] = 4, - ACTIONS(3788), 1, + [62681] = 4, + ACTIONS(2588), 1, anon_sym_LBRACE, - ACTIONS(5020), 1, - anon_sym_SEMI, - STATE(368), 1, - sym_declaration_list, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + STATE(907), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62770] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5022), 1, - anon_sym_SEMI, - ACTIONS(5024), 1, - anon_sym_EQ, + [62695] = 3, + ACTIONS(4293), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62784] = 4, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(4281), 1, + ACTIONS(5000), 2, anon_sym_COMMA, - STATE(1943), 1, - aux_sym_parameters_repeat1, + anon_sym_PIPE, + [62707] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62798] = 4, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(4281), 1, + ACTIONS(5002), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1946), 1, - aux_sym_parameters_repeat1, + [62719] = 4, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(5004), 1, + anon_sym_COMMA, + STATE(2063), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62812] = 2, + [62733] = 4, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(5007), 1, + anon_sym_SEMI, + STATE(838), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5026), 3, - anon_sym_SEMI, + [62747] = 4, + ACTIONS(284), 1, 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(4090), 1, + anon_sym_PLUS, + STATE(1012), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62836] = 4, - ACTIONS(5034), 1, + [62761] = 4, + ACTIONS(3871), 1, anon_sym_RBRACE, - ACTIONS(5036), 1, + ACTIONS(5009), 1, anon_sym_COMMA, - STATE(2084), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1972), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62850] = 2, + [62775] = 3, + ACTIONS(5013), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5038), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5011), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [62860] = 4, - ACTIONS(3842), 1, + [62787] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5015), 2, anon_sym_RBRACE, - ACTIONS(5040), 1, anon_sym_COMMA, - STATE(1958), 1, - aux_sym_enum_variant_list_repeat2, + [62799] = 4, + ACTIONS(5017), 1, + anon_sym_RPAREN, + ACTIONS(5019), 1, + anon_sym_COMMA, + STATE(1938), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62874] = 4, - ACTIONS(3445), 1, + [62813] = 4, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(4106), 1, + ACTIONS(5021), 1, sym_identifier, - STATE(2374), 1, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62888] = 4, - ACTIONS(3842), 1, + [62827] = 4, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(5023), 1, + anon_sym_SEMI, + ACTIONS(5025), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62841] = 3, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3464), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62853] = 4, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(5027), 1, + anon_sym_SEMI, + ACTIONS(5029), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62867] = 4, + ACTIONS(5031), 1, anon_sym_RBRACE, - ACTIONS(5040), 1, + ACTIONS(5033), 1, anon_sym_COMMA, - STATE(1960), 1, + STATE(2117), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62902] = 2, + [62881] = 4, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(5035), 1, + anon_sym_SEMI, + STATE(2460), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5042), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [62895] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5037), 2, anon_sym_COMMA, - [62912] = 3, - ACTIONS(5046), 1, - anon_sym_EQ, + anon_sym_GT, + [62907] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5044), 2, - anon_sym_RBRACE, + ACTIONS(5039), 2, anon_sym_COMMA, - [62924] = 4, - ACTIONS(4251), 1, + anon_sym_GT, + [62919] = 4, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5043), 1, + anon_sym_GT, + STATE(1893), 1, + aux_sym_for_lifetimes_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62933] = 4, + ACTIONS(4370), 1, anon_sym_RPAREN, - ACTIONS(4253), 1, + ACTIONS(4372), 1, anon_sym_COMMA, - STATE(2066), 1, + STATE(2059), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62938] = 4, - ACTIONS(2560), 1, - anon_sym_LT2, - ACTIONS(5048), 1, - sym_identifier, - STATE(793), 1, - sym_type_arguments, + [62947] = 4, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + ACTIONS(5043), 1, + anon_sym_GT, + STATE(2176), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62952] = 4, - ACTIONS(3814), 1, - anon_sym_RBRACE, - ACTIONS(5050), 1, + [62961] = 4, + ACTIONS(4633), 1, + anon_sym_RPAREN, + ACTIONS(5045), 1, anon_sym_COMMA, - STATE(2005), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2081), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62966] = 4, - ACTIONS(4069), 1, + [62975] = 4, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(5052), 1, + ACTIONS(5048), 1, anon_sym_SEMI, - STATE(873), 1, + STATE(855), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62980] = 4, - ACTIONS(3814), 1, + [62989] = 4, + ACTIONS(407), 1, + anon_sym_RPAREN, + ACTIONS(3204), 1, + anon_sym_COMMA, + STATE(1946), 1, + aux_sym_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63003] = 4, + ACTIONS(4052), 1, anon_sym_RBRACE, ACTIONS(5050), 1, anon_sym_COMMA, - STATE(1960), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1878), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62994] = 4, - ACTIONS(5054), 1, + [63017] = 4, + ACTIONS(4451), 1, + anon_sym_COMMA, + ACTIONS(4453), 1, + anon_sym_GT, + STATE(2033), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63031] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(5021), 1, sym_identifier, - ACTIONS(5056), 1, - anon_sym_await, - ACTIONS(5058), 1, - sym_integer_literal, + STATE(2337), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63008] = 4, - ACTIONS(4407), 1, - anon_sym_COMMA, - ACTIONS(4409), 1, + [63045] = 4, + ACTIONS(902), 1, anon_sym_GT, - STATE(2058), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + STATE(1888), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63022] = 4, + [63059] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_SEMI, + STATE(423), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63073] = 4, + ACTIONS(2546), 1, + anon_sym_RPAREN, + ACTIONS(5056), 1, + anon_sym_COMMA, + STATE(2081), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63087] = 4, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(5058), 1, + anon_sym_SEMI, ACTIONS(5060), 1, - sym_identifier, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63101] = 4, + ACTIONS(3873), 1, + anon_sym_GT, ACTIONS(5062), 1, - anon_sym_ref, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63115] = 4, ACTIONS(5064), 1, + sym_identifier, + ACTIONS(5066), 1, + anon_sym_ref, + ACTIONS(5068), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63036] = 3, - ACTIONS(4339), 1, - anon_sym_COLON, + [63129] = 4, + ACTIONS(3875), 1, + anon_sym_GT, + ACTIONS(5070), 1, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63143] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5066), 2, + ACTIONS(5072), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [63048] = 4, - ACTIONS(3249), 1, - anon_sym_LBRACE, - ACTIONS(5068), 1, - sym_identifier, - STATE(1933), 1, - sym_use_list, + [63155] = 4, + ACTIONS(2435), 1, + anon_sym_RPAREN, + ACTIONS(5074), 1, + anon_sym_COMMA, + STATE(1849), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63062] = 4, - ACTIONS(2518), 1, - anon_sym_RPAREN, - ACTIONS(5070), 1, - anon_sym_COMMA, - STATE(2050), 1, - aux_sym_tuple_type_repeat1, + [63169] = 4, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + anon_sym_SEMI, + STATE(882), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63076] = 4, - ACTIONS(5066), 1, - anon_sym_PIPE, - ACTIONS(5072), 1, - anon_sym_COMMA, - STATE(2091), 1, - aux_sym_closure_parameters_repeat1, + [63183] = 4, + ACTIONS(5078), 1, + anon_sym_for, + ACTIONS(5080), 1, + anon_sym_loop, + ACTIONS(5082), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63090] = 4, - ACTIONS(3872), 1, - anon_sym_GT, - ACTIONS(5075), 1, + [63197] = 4, + ACTIONS(4056), 1, + anon_sym_RBRACE, + ACTIONS(5084), 1, anon_sym_COMMA, - STATE(2040), 1, - aux_sym_type_parameters_repeat1, + STATE(1878), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63104] = 4, - ACTIONS(284), 1, + [63211] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - STATE(1009), 1, + ACTIONS(5086), 1, + anon_sym_SEMI, + STATE(304), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63118] = 4, - ACTIONS(3870), 1, - anon_sym_GT, - ACTIONS(5077), 1, - anon_sym_COMMA, - STATE(2040), 1, - aux_sym_type_parameters_repeat1, + [63225] = 4, + ACTIONS(4090), 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, - [63132] = 4, - ACTIONS(3846), 1, + [63239] = 4, + ACTIONS(5092), 1, anon_sym_RBRACE, - ACTIONS(5079), 1, + ACTIONS(5094), 1, anon_sym_COMMA, - STATE(1996), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2000), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63146] = 4, - ACTIONS(396), 1, - anon_sym_RPAREN, - ACTIONS(3185), 1, - anon_sym_COMMA, - STATE(1977), 1, - aux_sym_arguments_repeat1, + [63253] = 4, + ACTIONS(3813), 1, + anon_sym_where, + ACTIONS(5096), 1, + anon_sym_SEMI, + STATE(2501), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63267] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(3783), 1, + anon_sym_LBRACE, + STATE(1360), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63281] = 3, + ACTIONS(5100), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63160] = 4, - ACTIONS(3840), 1, + ACTIONS(5098), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63293] = 4, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(5102), 1, anon_sym_SEMI, - STATE(860), 1, + STATE(933), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63174] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(5083), 1, - anon_sym_SEMI, - STATE(2417), 1, - sym_where_clause, + [63307] = 4, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(5104), 1, + anon_sym_COMMA, + STATE(1932), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63188] = 3, - ACTIONS(5087), 1, + [63321] = 3, + ACTIONS(5108), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5085), 2, + ACTIONS(5106), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63200] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(5089), 1, - anon_sym_SEMI, - STATE(835), 1, - sym_declaration_list, + [63333] = 4, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(5104), 1, + anon_sym_COMMA, + STATE(1929), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63214] = 4, - ACTIONS(3804), 1, + [63347] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5110), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [63357] = 4, + ACTIONS(3813), 1, anon_sym_where, - ACTIONS(5091), 1, + ACTIONS(5112), 1, anon_sym_SEMI, - STATE(2507), 1, + STATE(2494), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63228] = 4, - ACTIONS(2560), 1, + [63371] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5114), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [63381] = 4, + ACTIONS(3466), 1, anon_sym_LT2, - ACTIONS(5048), 1, + ACTIONS(5116), 1, sym_identifier, - STATE(796), 1, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63242] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5093), 1, - anon_sym_as, - ACTIONS(5095), 1, - anon_sym_GT, + [63395] = 4, + ACTIONS(3466), 1, + anon_sym_LT2, + ACTIONS(5116), 1, + sym_identifier, + STATE(2337), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63256] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5097), 1, + [63409] = 4, + ACTIONS(3819), 1, + anon_sym_LBRACE, + ACTIONS(5118), 1, anon_sym_SEMI, - ACTIONS(5099), 1, - anon_sym_EQ, + STATE(355), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63270] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(5101), 1, - anon_sym_SEMI, - STATE(2423), 1, - sym_where_clause, + [63423] = 4, + ACTIONS(781), 1, + anon_sym_RPAREN, + ACTIONS(4334), 1, + anon_sym_COMMA, + STATE(1910), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63437] = 4, + ACTIONS(5120), 1, + sym_identifier, + ACTIONS(5122), 1, + anon_sym_ref, + ACTIONS(5124), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63284] = 4, - ACTIONS(5103), 1, + [63451] = 4, + ACTIONS(3893), 1, anon_sym_RBRACE, - ACTIONS(5105), 1, + ACTIONS(5126), 1, anon_sym_COMMA, - STATE(2030), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1932), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63298] = 3, - ACTIONS(5107), 1, - anon_sym_EQ_GT, - ACTIONS(5109), 1, - anon_sym_AMP_AMP, + [63465] = 4, + ACTIONS(3893), 1, + anon_sym_RBRACE, + ACTIONS(5126), 1, + anon_sym_COMMA, + STATE(1961), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63309] = 3, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(5111), 1, - anon_sym_RPAREN, + [63479] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(66), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63320] = 3, - ACTIONS(4059), 1, - anon_sym_COLON_COLON, - ACTIONS(5113), 1, - anon_sym_RPAREN, + [63490] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(5128), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63331] = 3, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, - ACTIONS(5113), 1, - anon_sym_RPAREN, + [63501] = 3, + ACTIONS(5130), 1, + sym_identifier, + ACTIONS(5132), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63342] = 3, - ACTIONS(4041), 1, - anon_sym_COLON_COLON, - ACTIONS(5113), 1, - anon_sym_RPAREN, + [63512] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2549), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63353] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1645), 1, - sym_parameters, + [63523] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(824), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63364] = 3, - ACTIONS(3802), 1, + [63534] = 3, + ACTIONS(3853), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(911), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63375] = 3, - ACTIONS(3840), 1, + [63545] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(847), 1, + STATE(913), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63386] = 3, - ACTIONS(3840), 1, + [63556] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(846), 1, + STATE(920), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63397] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(407), 1, - sym_field_declaration_list, + [63567] = 3, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(2176), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63408] = 3, - ACTIONS(4075), 1, + [63578] = 3, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(5115), 1, + ACTIONS(5134), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63419] = 3, - ACTIONS(5107), 1, - anon_sym_LBRACE, - ACTIONS(5117), 1, - anon_sym_AMP_AMP, + [63589] = 3, + ACTIONS(5120), 1, + sym_identifier, + ACTIONS(5124), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63430] = 3, - ACTIONS(3802), 1, + [63600] = 3, + ACTIONS(3853), 1, anon_sym_LBRACE, - STATE(840), 1, + STATE(927), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63441] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5121), 1, - anon_sym_RPAREN, + [63611] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63452] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5123), 1, - anon_sym_RPAREN, + ACTIONS(5136), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63620] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(5138), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63463] = 3, - ACTIONS(3840), 1, + [63631] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(834), 1, + STATE(934), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63474] = 2, + [63642] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(5140), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5125), 2, - sym_identifier, - sym_metavariable, - [63483] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_declaration_list, + [63653] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(5142), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63494] = 3, - ACTIONS(284), 1, + [63664] = 3, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(2429), 1, - sym_block, + STATE(435), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63505] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_parameters, + [63675] = 3, + ACTIONS(4064), 1, + anon_sym_RBRACE, + ACTIONS(5144), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63516] = 3, - ACTIONS(4112), 1, + [63686] = 3, + ACTIONS(4200), 1, anon_sym_LBRACE, - STATE(828), 1, + STATE(947), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63527] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_field_declaration_list, + [63697] = 3, + ACTIONS(2570), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63538] = 3, - ACTIONS(5127), 1, - anon_sym_SEMI, - ACTIONS(5129), 1, - anon_sym_as, + [63708] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63549] = 3, - ACTIONS(3802), 1, + ACTIONS(4389), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63717] = 3, + ACTIONS(3853), 1, anon_sym_LBRACE, - STATE(825), 1, + STATE(954), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63560] = 3, - ACTIONS(2552), 1, - anon_sym_LPAREN, - STATE(798), 1, - sym_parameters, + [63728] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63571] = 3, - ACTIONS(3802), 1, + ACTIONS(5146), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63737] = 3, + ACTIONS(3853), 1, anon_sym_LBRACE, - STATE(822), 1, + STATE(872), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63582] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5131), 1, - anon_sym_in, + [63748] = 3, + ACTIONS(4200), 1, + anon_sym_LBRACE, + STATE(835), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63593] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(62), 1, - sym_block, + [63759] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63604] = 3, - ACTIONS(5133), 1, + ACTIONS(5148), 2, + sym_identifier, + sym_metavariable, + [63768] = 3, + ACTIONS(5150), 1, anon_sym_SEMI, - ACTIONS(5135), 1, + ACTIONS(5152), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63615] = 3, + [63779] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(818), 1, + STATE(970), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63626] = 3, - ACTIONS(15), 1, + [63790] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(72), 1, + STATE(2538), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63637] = 2, + [63801] = 3, + ACTIONS(3599), 1, + anon_sym_COLON_COLON, + ACTIONS(5154), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5066), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [63646] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5137), 1, - anon_sym_GT, + [63812] = 3, + ACTIONS(3819), 1, + anon_sym_LBRACE, + STATE(309), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63657] = 3, - ACTIONS(284), 1, + [63823] = 3, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(2392), 1, - sym_block, + STATE(311), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63668] = 3, - ACTIONS(5119), 1, + [63834] = 3, + ACTIONS(5144), 1, anon_sym_SEMI, - ACTIONS(5139), 1, + ACTIONS(5156), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63679] = 3, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, + [63845] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(5158), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63690] = 3, - ACTIONS(5119), 1, + [63856] = 3, + ACTIONS(5144), 1, anon_sym_SEMI, - ACTIONS(5141), 1, + ACTIONS(5160), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63701] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5143), 1, + [63867] = 3, + ACTIONS(4016), 1, + anon_sym_COLON_COLON, + ACTIONS(5162), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63712] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5145), 1, - anon_sym_RBRACE, + [63878] = 3, + ACTIONS(4024), 1, + anon_sym_COLON_COLON, + ACTIONS(5162), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63723] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2389), 1, - sym_block, + [63889] = 3, + ACTIONS(4026), 1, + anon_sym_COLON_COLON, + ACTIONS(5162), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63734] = 3, - ACTIONS(5119), 1, + [63900] = 3, + ACTIONS(4066), 1, + anon_sym_RBRACE, + ACTIONS(5144), 1, anon_sym_SEMI, - ACTIONS(5147), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63745] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5149), 1, - anon_sym_RBRACE, + [63911] = 3, + ACTIONS(3819), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63756] = 3, - ACTIONS(4112), 1, - anon_sym_LBRACE, - STATE(877), 1, - sym_enum_variant_list, + [63922] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63767] = 3, - ACTIONS(5060), 1, + ACTIONS(5164), 2, sym_identifier, - ACTIONS(5064), 1, - sym_mutable_specifier, + sym_metavariable, + [63931] = 3, + ACTIONS(5166), 1, + anon_sym_SEMI, + ACTIONS(5168), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63778] = 3, - ACTIONS(4005), 1, + [63942] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4780), 2, anon_sym_RBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [63951] = 3, + ACTIONS(3853), 1, + anon_sym_LBRACE, + STATE(854), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63789] = 3, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(891), 1, - sym_type_arguments, + [63962] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(5170), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63800] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1664), 1, - sym_parameters, + [63973] = 3, + ACTIONS(3861), 1, + anon_sym_LBRACE, + STATE(861), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63811] = 3, - ACTIONS(3987), 1, - anon_sym_RPAREN, - ACTIONS(5119), 1, - anon_sym_SEMI, + [63984] = 3, + ACTIONS(3853), 1, + anon_sym_LBRACE, + STATE(867), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63822] = 2, + [63995] = 3, + ACTIONS(5172), 1, + anon_sym_LBRACK, + ACTIONS(5174), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4174), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63831] = 3, - ACTIONS(4007), 1, - anon_sym_RBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, + [64006] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63842] = 3, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, + ACTIONS(5176), 2, + sym_identifier, + sym_metavariable, + [64015] = 3, + ACTIONS(2570), 1, + anon_sym_LPAREN, + STATE(806), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63853] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2380), 1, - sym_block, + [64026] = 3, + ACTIONS(2331), 1, + anon_sym_SQUOTE, + STATE(1987), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63864] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(883), 1, - sym_block, + [64037] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(5178), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63875] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2325), 1, - sym_block, + [64048] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63886] = 3, - ACTIONS(4199), 1, + ACTIONS(5180), 2, + sym_identifier, + sym_metavariable, + [64057] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(413), 1, - sym_enum_variant_list, + STATE(72), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63897] = 3, - ACTIONS(5153), 1, - anon_sym_SEMI, - ACTIONS(5155), 1, - anon_sym_as, + [64068] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2576), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63908] = 3, - ACTIONS(3802), 1, + [64079] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(901), 1, - sym_field_declaration_list, + STATE(2578), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63919] = 2, + [64090] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, + ACTIONS(4651), 2, anon_sym_COMMA, 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, - [63939] = 3, - ACTIONS(3840), 1, + [64099] = 3, + ACTIONS(4200), 1, anon_sym_LBRACE, - STATE(908), 1, - sym_declaration_list, + STATE(924), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63950] = 3, - ACTIONS(3788), 1, + [64110] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(426), 1, - sym_declaration_list, + STATE(65), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63961] = 3, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_field_declaration_list, + [64121] = 3, + ACTIONS(3470), 1, + anon_sym_LPAREN, + STATE(1658), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63972] = 3, - ACTIONS(4015), 1, - anon_sym_RPAREN, - ACTIONS(5119), 1, - anon_sym_SEMI, + [64132] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63983] = 3, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(395), 1, - sym_enum_variant_list, + ACTIONS(4611), 2, + anon_sym_COMMA, + anon_sym_GT, + [64141] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63994] = 2, + ACTIONS(4300), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64150] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5157), 2, - anon_sym_const, - sym_mutable_specifier, - [64003] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(435), 1, - sym_field_declaration_list, + ACTIONS(4530), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64159] = 3, + ACTIONS(4010), 1, + anon_sym_COLON, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64014] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2538), 1, - sym_block, + [64170] = 3, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64025] = 3, + [64181] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2542), 1, + STATE(977), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64036] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1672), 1, - sym_parameters, + [64192] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64047] = 3, - ACTIONS(3840), 1, + ACTIONS(4738), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64201] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(986), 1, + STATE(1023), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64058] = 3, - ACTIONS(4075), 1, + [64212] = 3, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(5159), 1, + ACTIONS(5186), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64069] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2373), 1, - sym_block, + [64223] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(95), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64080] = 3, - ACTIONS(2552), 1, - anon_sym_LPAREN, - STATE(779), 1, - sym_parameters, + [64234] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64091] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5161), 1, - anon_sym_SEMI, + ACTIONS(5188), 2, + anon_sym_const, + sym_mutable_specifier, + [64243] = 3, + ACTIONS(2570), 1, + anon_sym_LPAREN, + STATE(811), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64102] = 3, - ACTIONS(3840), 1, + [64254] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(1000), 1, + STATE(1033), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64113] = 3, - ACTIONS(3840), 1, + [64265] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(1001), 1, + STATE(1034), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64124] = 3, - ACTIONS(15), 1, + [64276] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(48), 1, + STATE(2427), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64135] = 3, + [64287] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2455), 1, + STATE(2431), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64146] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(444), 1, - sym_declaration_list, + [64298] = 3, + ACTIONS(5190), 1, + sym_identifier, + ACTIONS(5192), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64157] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1038), 1, - sym_block, + [64309] = 3, + ACTIONS(5194), 1, + anon_sym_EQ_GT, + ACTIONS(5196), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64168] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5163), 1, - anon_sym_EQ, + [64320] = 3, + ACTIONS(3382), 1, + anon_sym_EQ_GT, + ACTIONS(5196), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64179] = 3, - ACTIONS(4112), 1, + [64331] = 3, + ACTIONS(4200), 1, anon_sym_LBRACE, - STATE(1016), 1, + STATE(1047), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64190] = 3, + [64342] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2370), 1, + STATE(2384), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64201] = 3, - ACTIONS(3351), 1, + [64353] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - anon_sym_AMP_AMP, + STATE(778), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64212] = 3, - ACTIONS(3802), 1, + [64364] = 3, + ACTIONS(3853), 1, anon_sym_LBRACE, - STATE(1020), 1, + STATE(1052), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64223] = 3, - ACTIONS(4075), 1, + [64375] = 3, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(5165), 1, + ACTIONS(5198), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64234] = 3, - ACTIONS(3802), 1, + [64386] = 3, + ACTIONS(3853), 1, anon_sym_LBRACE, - STATE(1030), 1, + STATE(1054), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64245] = 3, - ACTIONS(3840), 1, + [64397] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1055), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64256] = 3, - ACTIONS(5167), 1, - anon_sym_LT, - STATE(743), 1, - sym_type_parameters, + [64408] = 3, + ACTIONS(3470), 1, + anon_sym_LPAREN, + STATE(1361), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64267] = 3, - ACTIONS(3828), 1, + [64419] = 3, + ACTIONS(284), 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, + STATE(2450), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64289] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5171), 1, - anon_sym_EQ, + [64430] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1069), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64300] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(308), 1, - sym_declaration_list, + [64441] = 3, + ACTIONS(3470), 1, + anon_sym_LPAREN, + STATE(1709), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64311] = 3, - ACTIONS(4112), 1, + [64452] = 3, + ACTIONS(4098), 1, anon_sym_LBRACE, - STATE(964), 1, + STATE(321), 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, + [64463] = 3, + ACTIONS(647), 1, + anon_sym_LBRACE, + STATE(229), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64355] = 3, - ACTIONS(3449), 1, + [64474] = 3, + ACTIONS(3470), 1, anon_sym_LPAREN, - STATE(1352), 1, + STATE(1633), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64366] = 3, - ACTIONS(3788), 1, + [64485] = 3, + ACTIONS(2588), 1, anon_sym_LBRACE, - STATE(294), 1, - sym_declaration_list, + STATE(907), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64377] = 3, - ACTIONS(3788), 1, + [64496] = 3, + ACTIONS(872), 1, anon_sym_LBRACE, - STATE(292), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64388] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4889), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64397] = 2, + STATE(1463), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5175), 2, - sym_float_literal, - sym_integer_literal, - [64406] = 2, + [64507] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(99), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4872), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64415] = 3, - ACTIONS(284), 1, + [64518] = 3, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(2383), 1, - sym_block, + STATE(275), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64426] = 3, - ACTIONS(15), 1, + [64529] = 3, + ACTIONS(5200), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, anon_sym_LBRACE, - STATE(84), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64437] = 3, - ACTIONS(4041), 1, - anon_sym_COLON_COLON, - ACTIONS(5177), 1, - anon_sym_RPAREN, + [64540] = 3, + ACTIONS(5204), 1, + anon_sym_LPAREN, + ACTIONS(5206), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64448] = 3, - ACTIONS(4199), 1, + [64551] = 3, + ACTIONS(3811), 1, anon_sym_LBRACE, - STATE(282), 1, - sym_enum_variant_list, + STATE(279), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64459] = 2, + [64562] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1116), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5179), 2, - sym_identifier, - sym_metavariable, - [64468] = 3, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, - ACTIONS(5177), 1, - anon_sym_RPAREN, + [64573] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2468), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64479] = 3, - ACTIONS(5181), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, + [64584] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2470), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64490] = 3, + [64595] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(974), 1, + STATE(2341), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64501] = 3, + [64606] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(1085), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64512] = 3, - ACTIONS(4059), 1, - anon_sym_COLON_COLON, - ACTIONS(5177), 1, - anon_sym_RPAREN, + [64617] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1123), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64523] = 3, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(5185), 1, - anon_sym_RPAREN, + [64628] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1114), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64534] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(276), 1, - sym_field_declaration_list, + [64639] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(5208), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64545] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5187), 1, + [64650] = 3, + ACTIONS(5144), 1, anon_sym_SEMI, + ACTIONS(5210), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64556] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(269), 1, - sym_field_declaration_list, + [64661] = 3, + ACTIONS(5144), 1, + anon_sym_SEMI, + ACTIONS(5212), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64567] = 3, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, - ACTIONS(3928), 1, - anon_sym_BANG, + [64672] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(5214), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64578] = 3, - ACTIONS(3788), 1, + [64683] = 3, + ACTIONS(3811), 1, anon_sym_LBRACE, - STATE(268), 1, - sym_declaration_list, + STATE(489), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64589] = 3, - ACTIONS(3840), 1, + [64694] = 3, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(1101), 1, + STATE(468), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64600] = 3, - ACTIONS(5189), 1, - anon_sym_LPAREN, - ACTIONS(5191), 1, + [64705] = 3, + ACTIONS(3811), 1, anon_sym_LBRACE, + STATE(439), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64611] = 3, - ACTIONS(3828), 1, + [64716] = 3, + ACTIONS(3811), 1, anon_sym_LBRACE, - STATE(270), 1, + STATE(292), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64622] = 2, + [64727] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(91), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5193), 2, - anon_sym_const, - sym_mutable_specifier, - [64631] = 3, - ACTIONS(4075), 1, + [64738] = 3, + ACTIONS(2823), 1, + anon_sym_COLON, + ACTIONS(4090), 1, anon_sym_PLUS, - ACTIONS(5195), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64642] = 3, - ACTIONS(3840), 1, - anon_sym_LBRACE, - STATE(1113), 1, - sym_declaration_list, + [64749] = 3, + ACTIONS(3470), 1, + anon_sym_LPAREN, + STATE(1683), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64653] = 3, - ACTIONS(3840), 1, + [64760] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(1115), 1, + STATE(1107), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64664] = 3, - ACTIONS(3788), 1, + [64771] = 3, + ACTIONS(4098), 1, anon_sym_LBRACE, - STATE(273), 1, - sym_declaration_list, + STATE(316), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64675] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1616), 1, - sym_parameters, + [64782] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64686] = 3, + ACTIONS(4835), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64791] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2314), 1, + STATE(2513), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64697] = 3, - ACTIONS(2552), 1, - anon_sym_LPAREN, - STATE(802), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64708] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1363), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64719] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5197), 2, - sym_identifier, - sym_metavariable, - [64728] = 2, + [64802] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(5216), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5199), 2, - anon_sym_const, - sym_mutable_specifier, - [64737] = 3, - ACTIONS(284), 1, + [64813] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(801), 1, - sym_block, + STATE(1115), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64748] = 3, - ACTIONS(15), 1, + [64824] = 3, + ACTIONS(3861), 1, anon_sym_LBRACE, - STATE(75), 1, - sym_block, + STATE(1118), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64759] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym_field_declaration_list, + [64835] = 3, + ACTIONS(2855), 1, + anon_sym_COLON, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64770] = 3, - ACTIONS(3351), 1, - anon_sym_EQ_GT, - ACTIONS(5109), 1, - anon_sym_AMP_AMP, + [64846] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64781] = 3, - ACTIONS(5201), 1, - anon_sym_LBRACK, - ACTIONS(5203), 1, - anon_sym_BANG, + ACTIONS(4842), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64855] = 3, + ACTIONS(2859), 1, + anon_sym_COLON, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64792] = 3, - ACTIONS(5205), 1, - anon_sym_LPAREN, - ACTIONS(5207), 1, + [64866] = 3, + ACTIONS(3819), 1, anon_sym_LBRACE, + STATE(346), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64803] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5209), 1, - anon_sym_in, + [64877] = 3, + ACTIONS(5218), 1, + anon_sym_SEMI, + ACTIONS(5220), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64814] = 3, - ACTIONS(2590), 1, + [64888] = 3, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(1082), 1, - sym_field_initializer_list, + STATE(348), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64825] = 2, + [64899] = 3, + ACTIONS(2578), 1, + anon_sym_LT2, + STATE(1067), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4793), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64834] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1024), 1, - sym_block, + [64910] = 3, + ACTIONS(2939), 1, + anon_sym_COLON, + ACTIONS(4090), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64845] = 3, - ACTIONS(632), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_block, + [64921] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64856] = 3, - ACTIONS(858), 1, + ACTIONS(4604), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64930] = 3, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(1455), 1, - sym_block, + STATE(419), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64867] = 3, - ACTIONS(4031), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + [64941] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64878] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(98), 1, - sym_closure_parameters, + ACTIONS(2447), 2, + anon_sym_COMMA, + anon_sym_GT, + [64950] = 3, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, + ACTIONS(5222), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64889] = 2, + [64961] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5211), 2, - sym_identifier, - sym_metavariable, - [64898] = 3, - ACTIONS(3840), 1, + ACTIONS(5224), 2, + sym_float_literal, + sym_integer_literal, + [64970] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(937), 1, - sym_declaration_list, + STATE(2528), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64909] = 3, + [64981] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1039), 1, + STATE(2521), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64920] = 3, - ACTIONS(5213), 1, - anon_sym_LPAREN, - ACTIONS(5215), 1, - anon_sym_LBRACE, + [64992] = 3, + ACTIONS(3611), 1, + anon_sym_COLON_COLON, + ACTIONS(5222), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64931] = 3, - ACTIONS(5217), 1, - anon_sym_LPAREN, - ACTIONS(5219), 1, - anon_sym_LBRACE, + [65003] = 3, + ACTIONS(4006), 1, + anon_sym_RPAREN, + ACTIONS(5144), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64942] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(90), 1, - sym_closure_parameters, + [65014] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64953] = 2, + ACTIONS(4433), 2, + anon_sym_COMMA, + anon_sym_GT, + [65023] = 3, + ACTIONS(4000), 1, + anon_sym_RPAREN, + ACTIONS(5144), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4478), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64962] = 3, - ACTIONS(5221), 1, - anon_sym_LBRACK, - ACTIONS(5223), 1, - anon_sym_BANG, + [65034] = 3, + ACTIONS(4098), 1, + anon_sym_LBRACE, + STATE(294), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65045] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(5226), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64973] = 2, + [65056] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4273), 2, + ACTIONS(4100), 2, anon_sym_RPAREN, anon_sym_COMMA, - [64982] = 2, + [65065] = 3, + ACTIONS(3861), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4741), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64991] = 2, + [65076] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4735), 2, - anon_sym_COMMA, - anon_sym_GT, - [65000] = 2, + ACTIONS(5228), 2, + sym_identifier, + sym_metavariable, + [65085] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(5230), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4724), 2, - anon_sym_COMMA, - anon_sym_GT, - [65009] = 3, + [65096] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2556), 1, + STATE(2555), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65020] = 3, - ACTIONS(632), 1, + [65107] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(226), 1, + STATE(93), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65031] = 3, - ACTIONS(5225), 1, - anon_sym_SEMI, - ACTIONS(5227), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65042] = 3, - ACTIONS(632), 1, + [65118] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(227), 1, + STATE(38), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65053] = 3, - ACTIONS(5229), 1, - sym_identifier, - ACTIONS(5231), 1, - sym_mutable_specifier, + [65129] = 3, + ACTIONS(4060), 1, + anon_sym_RPAREN, + ACTIONS(5144), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65064] = 2, + [65140] = 3, + ACTIONS(3382), 1, + anon_sym_LBRACE, + ACTIONS(5232), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5233), 2, - sym_identifier, - sym_metavariable, - [65073] = 3, - ACTIONS(632), 1, + [65151] = 3, + ACTIONS(5194), 1, anon_sym_LBRACE, - STATE(234), 1, - sym_block, + ACTIONS(5232), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65084] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5235), 1, - anon_sym_in, + [65162] = 3, + ACTIONS(5144), 1, + anon_sym_SEMI, + ACTIONS(5234), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65095] = 2, + [65173] = 3, + ACTIONS(4068), 1, + anon_sym_RBRACE, + ACTIONS(5144), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4671), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65104] = 3, - ACTIONS(632), 1, - anon_sym_LBRACE, - STATE(210), 1, - sym_block, + [65184] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65115] = 3, - ACTIONS(3788), 1, + ACTIONS(5236), 2, + anon_sym_const, + sym_mutable_specifier, + [65193] = 3, + ACTIONS(647), 1, anon_sym_LBRACE, - STATE(355), 1, - sym_declaration_list, + STATE(230), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65126] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5237), 1, - anon_sym_in, + [65204] = 3, + ACTIONS(4058), 1, + anon_sym_RPAREN, + ACTIONS(5144), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65137] = 3, - ACTIONS(632), 1, + [65215] = 3, + ACTIONS(647), 1, anon_sym_LBRACE, - STATE(217), 1, + STATE(228), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65148] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5239), 1, + [65226] = 3, + ACTIONS(4050), 1, + anon_sym_RBRACE, + ACTIONS(5144), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65159] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(379), 1, - sym_declaration_list, + [65237] = 3, + ACTIONS(5144), 1, + anon_sym_SEMI, + ACTIONS(5238), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65170] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4339), 1, - anon_sym_COLON, + [65248] = 3, + ACTIONS(647), 1, + anon_sym_LBRACE, + STATE(235), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65181] = 3, - ACTIONS(2792), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + [65259] = 3, + ACTIONS(3470), 1, + anon_sym_LPAREN, + STATE(1657), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65192] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(380), 1, - sym_declaration_list, + [65270] = 3, + ACTIONS(5144), 1, + anon_sym_SEMI, + ACTIONS(5240), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65203] = 2, + [65281] = 3, + ACTIONS(647), 1, + anon_sym_LBRACE, + STATE(217), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5241), 2, + [65292] = 3, + ACTIONS(5144), 1, + anon_sym_SEMI, + ACTIONS(5242), 1, 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, - [65223] = 2, + [65303] = 3, + ACTIONS(3470), 1, + anon_sym_LPAREN, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5245), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65232] = 2, + [65314] = 3, + ACTIONS(647), 1, + anon_sym_LBRACE, + STATE(241), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4385), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65241] = 3, - ACTIONS(3586), 1, - anon_sym_COLON_COLON, - ACTIONS(5247), 1, + [65325] = 3, + ACTIONS(5244), 1, anon_sym_BANG, + ACTIONS(5246), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65252] = 3, - ACTIONS(2840), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + [65336] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(5248), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65263] = 3, - ACTIONS(3592), 1, + [65347] = 3, + ACTIONS(5250), 1, + anon_sym_SEMI, + ACTIONS(5252), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65358] = 3, + ACTIONS(2685), 1, anon_sym_COLON_COLON, - ACTIONS(5247), 1, + ACTIONS(3909), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65274] = 3, - ACTIONS(2848), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + [65369] = 3, + ACTIONS(3811), 1, + anon_sym_LBRACE, + STATE(271), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65285] = 3, - ACTIONS(632), 1, - anon_sym_LBRACE, - STATE(219), 1, - sym_block, + [65380] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65296] = 3, - ACTIONS(4199), 1, + ACTIONS(5254), 2, + anon_sym_const, + sym_mutable_specifier, + [65389] = 3, + ACTIONS(3811), 1, anon_sym_LBRACE, - STATE(420), 1, - sym_enum_variant_list, + STATE(262), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65307] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2555), 1, - sym_block, + [65400] = 3, + ACTIONS(3815), 1, + anon_sym_LT, + STATE(713), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65318] = 3, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(2265), 1, - sym_lifetime, + [65411] = 3, + ACTIONS(3470), 1, + anon_sym_LPAREN, + STATE(1670), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65329] = 3, - ACTIONS(3916), 1, + [65422] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5000), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [65431] = 3, + ACTIONS(3940), 1, anon_sym_COLON, - STATE(2074), 1, + STATE(2109), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65340] = 3, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(690), 1, - sym_type_parameters, + [65442] = 3, + ACTIONS(5256), 1, + anon_sym_LPAREN, + ACTIONS(5258), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65351] = 3, - ACTIONS(4617), 1, - sym_identifier, - ACTIONS(4621), 1, - sym_mutable_specifier, + [65453] = 3, + ACTIONS(5260), 1, + anon_sym_LPAREN, + ACTIONS(5262), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65362] = 3, - ACTIONS(15), 1, + [65464] = 3, + ACTIONS(647), 1, anon_sym_LBRACE, - STATE(63), 1, + STATE(240), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65373] = 3, - ACTIONS(632), 1, - anon_sym_LBRACE, - STATE(220), 1, - sym_block, + [65475] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65384] = 3, - ACTIONS(5249), 1, + ACTIONS(5264), 2, sym_identifier, - ACTIONS(5251), 1, - sym_mutable_specifier, + sym_metavariable, + [65484] = 3, + ACTIONS(4090), 1, + anon_sym_PLUS, + ACTIONS(5266), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65395] = 3, - ACTIONS(284), 1, + [65495] = 3, + ACTIONS(4098), 1, anon_sym_LBRACE, - STATE(2561), 1, - sym_block, + STATE(318), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65406] = 2, + [65506] = 3, + ACTIONS(3819), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5253), 2, - sym_identifier, - sym_metavariable, - [65415] = 2, + [65517] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5255), 2, - anon_sym_RBRACE, + ACTIONS(5268), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [65424] = 3, - ACTIONS(2880), 1, + [65526] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(4293), 1, anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65435] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, + [65537] = 3, + ACTIONS(4026), 1, + anon_sym_COLON_COLON, + ACTIONS(5270), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65446] = 3, - ACTIONS(284), 1, + [65548] = 3, + ACTIONS(647), 1, anon_sym_LBRACE, - STATE(2503), 1, + STATE(238), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65457] = 3, - ACTIONS(4009), 1, - anon_sym_RBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, + [65559] = 3, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(5272), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65468] = 3, - ACTIONS(4011), 1, - anon_sym_RPAREN, - ACTIONS(5119), 1, - anon_sym_SEMI, + [65570] = 3, + ACTIONS(3811), 1, + anon_sym_LBRACE, + STATE(373), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65479] = 3, - ACTIONS(4027), 1, - anon_sym_RBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, + [65581] = 3, + ACTIONS(3811), 1, + anon_sym_LBRACE, + STATE(403), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65490] = 3, - ACTIONS(4043), 1, - anon_sym_RPAREN, - ACTIONS(5119), 1, - anon_sym_SEMI, + [65592] = 3, + ACTIONS(647), 1, + anon_sym_LBRACE, + STATE(222), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65603] = 3, + ACTIONS(5274), 1, + anon_sym_LT, + STATE(684), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65501] = 3, - ACTIONS(5257), 1, + [65614] = 3, + ACTIONS(5276), 1, sym_identifier, - ACTIONS(5259), 1, + ACTIONS(5278), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65512] = 2, + [65625] = 3, + ACTIONS(3819), 1, + anon_sym_LBRACE, + STATE(391), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2433), 2, - anon_sym_COMMA, - anon_sym_GT, - [65521] = 2, - ACTIONS(5261), 1, - anon_sym_SEMI, + [65636] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(69), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65529] = 2, - ACTIONS(5263), 1, - anon_sym_EQ_GT, + [65647] = 3, + ACTIONS(3599), 1, + anon_sym_COLON_COLON, + ACTIONS(5280), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65537] = 2, - ACTIONS(4605), 1, - anon_sym_RBRACE, + [65658] = 3, + ACTIONS(4714), 1, + sym_identifier, + ACTIONS(4718), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65545] = 2, - ACTIONS(5265), 1, - sym_identifier, + [65669] = 3, + ACTIONS(3819), 1, + anon_sym_LBRACE, + STATE(323), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65553] = 2, - ACTIONS(5267), 1, - anon_sym_SEMI, + [65680] = 3, + ACTIONS(4024), 1, + anon_sym_COLON_COLON, + ACTIONS(5270), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65561] = 2, - ACTIONS(4571), 1, - sym_identifier, + [65691] = 3, + ACTIONS(3470), 1, + anon_sym_LPAREN, + STATE(1365), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65569] = 2, - ACTIONS(5269), 1, - sym_identifier, + [65702] = 3, + ACTIONS(3532), 1, + anon_sym_BANG, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65577] = 2, - ACTIONS(4009), 1, - anon_sym_SEMI, + [65713] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2443), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65585] = 2, - ACTIONS(5271), 1, - anon_sym_RBRACK, + [65724] = 3, + ACTIONS(4016), 1, + anon_sym_COLON_COLON, + ACTIONS(5270), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65593] = 2, - ACTIONS(4027), 1, - anon_sym_SEMI, + [65735] = 2, + ACTIONS(4702), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65601] = 2, - ACTIONS(5273), 1, - sym_identifier, + [65743] = 2, + ACTIONS(5282), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65609] = 2, - ACTIONS(5275), 1, - anon_sym_SEMI, + [65751] = 2, + ACTIONS(5284), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65617] = 2, - ACTIONS(3195), 1, + [65759] = 2, + ACTIONS(4291), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65625] = 2, - ACTIONS(3161), 1, - sym_identifier, + [65767] = 2, + ACTIONS(5286), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65633] = 2, - ACTIONS(5277), 1, - sym_identifier, + [65775] = 2, + ACTIONS(5288), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65641] = 2, - ACTIONS(5279), 1, - sym_identifier, + [65783] = 2, + ACTIONS(4817), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65649] = 2, - ACTIONS(5281), 1, - anon_sym_SEMI, + [65791] = 2, + ACTIONS(5290), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65657] = 2, - ACTIONS(5283), 1, - sym_identifier, + [65799] = 2, + ACTIONS(2667), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65665] = 2, - ACTIONS(5285), 1, - anon_sym_RPAREN, + [65807] = 2, + ACTIONS(2693), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65673] = 2, - ACTIONS(5287), 1, + [65815] = 2, + ACTIONS(4861), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65681] = 2, - ACTIONS(5289), 1, + [65823] = 2, + ACTIONS(5292), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65689] = 2, - ACTIONS(5291), 1, - sym_identifier, + [65831] = 2, + ACTIONS(5294), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65697] = 2, - ACTIONS(4623), 1, + [65839] = 2, + ACTIONS(5296), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65705] = 2, - ACTIONS(5293), 1, + [65847] = 2, + ACTIONS(5298), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65713] = 2, - ACTIONS(5295), 1, + [65855] = 2, + ACTIONS(5300), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65721] = 2, - ACTIONS(5297), 1, - anon_sym_RBRACK, + [65863] = 2, + ACTIONS(4905), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65729] = 2, - ACTIONS(5299), 1, + [65871] = 2, + ACTIONS(5302), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65737] = 2, - ACTIONS(5301), 1, - anon_sym_COLON, + [65879] = 2, + ACTIONS(5304), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65745] = 2, - ACTIONS(5303), 1, + [65887] = 2, + ACTIONS(5306), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65753] = 2, - ACTIONS(4255), 1, - anon_sym_RPAREN, + [65895] = 2, + ACTIONS(5308), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65761] = 2, - ACTIONS(5305), 1, - sym_identifier, + [65903] = 2, + ACTIONS(5310), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65769] = 2, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, + [65911] = 2, + ACTIONS(5312), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65777] = 2, - ACTIONS(5307), 1, + [65919] = 2, + ACTIONS(5314), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65785] = 2, - ACTIONS(4633), 1, + [65927] = 2, + ACTIONS(5316), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65793] = 2, - ACTIONS(5309), 1, - sym_identifier, + [65935] = 2, + ACTIONS(5318), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65801] = 2, - ACTIONS(5311), 1, - sym_identifier, + [65943] = 2, + ACTIONS(5320), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65809] = 2, - ACTIONS(4659), 1, + [65951] = 2, + ACTIONS(5322), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65817] = 2, - ACTIONS(5313), 1, - sym_identifier, + [65959] = 2, + ACTIONS(4933), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65825] = 2, - ACTIONS(5315), 1, + [65967] = 2, + ACTIONS(4931), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65833] = 2, - ACTIONS(5317), 1, + [65975] = 2, + ACTIONS(5324), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65841] = 2, - ACTIONS(5319), 1, - sym_identifier, + [65983] = 2, + ACTIONS(5326), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65849] = 2, - ACTIONS(4637), 1, - anon_sym_RBRACE, + [65991] = 2, + ACTIONS(5328), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65857] = 2, - ACTIONS(4337), 1, - anon_sym_RPAREN, + [65999] = 2, + ACTIONS(5330), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65865] = 2, - ACTIONS(5321), 1, - anon_sym_COLON_COLON, + [66007] = 2, + ACTIONS(5332), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65873] = 2, - ACTIONS(4728), 1, - anon_sym_RBRACE, + [66015] = 2, + ACTIONS(5334), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65881] = 2, - ACTIONS(5323), 1, - sym_identifier, + [66023] = 2, + ACTIONS(5336), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65889] = 2, - ACTIONS(5325), 1, + [66031] = 2, + ACTIONS(5338), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65897] = 2, - ACTIONS(5327), 1, + [66039] = 2, + ACTIONS(5340), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65905] = 2, - ACTIONS(5329), 1, + [66047] = 2, + ACTIONS(5342), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65913] = 2, - ACTIONS(5331), 1, - anon_sym_RBRACK, + [66055] = 2, + ACTIONS(4949), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65921] = 2, - ACTIONS(5068), 1, + [66063] = 2, + ACTIONS(5344), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65929] = 2, - ACTIONS(5333), 1, + [66071] = 2, + ACTIONS(5346), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65937] = 2, - ACTIONS(5335), 1, - sym_identifier, + [66079] = 2, + ACTIONS(5348), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65945] = 2, - ACTIONS(3183), 1, - anon_sym_COLON_COLON, + [66087] = 2, + ACTIONS(5350), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65953] = 2, - ACTIONS(5337), 1, + [66095] = 2, + ACTIONS(5352), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65961] = 2, - ACTIONS(3533), 1, - anon_sym_COLON_COLON, + [66103] = 2, + ACTIONS(5354), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65969] = 2, - ACTIONS(5339), 1, - anon_sym_SEMI, + [66111] = 2, + ACTIONS(5356), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65977] = 2, - ACTIONS(5341), 1, + [66119] = 2, + ACTIONS(4507), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65985] = 2, - ACTIONS(2712), 1, - anon_sym_COLON_COLON, + [66127] = 2, + ACTIONS(5358), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65993] = 2, - ACTIONS(5343), 1, - anon_sym_SEMI, + [66135] = 2, + ACTIONS(2508), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66001] = 2, - ACTIONS(2700), 1, + [66143] = 2, + ACTIONS(3210), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66009] = 2, - ACTIONS(4771), 1, - anon_sym_RBRACE, + [66151] = 2, + ACTIONS(5360), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66017] = 2, - ACTIONS(4777), 1, - anon_sym_RBRACE, + [66159] = 2, + ACTIONS(3569), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66025] = 2, - ACTIONS(5345), 1, + [66167] = 2, + ACTIONS(5362), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66033] = 2, - ACTIONS(3163), 1, - anon_sym_COLON_COLON, + [66175] = 2, + ACTIONS(5364), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66041] = 2, - ACTIONS(5347), 1, - anon_sym_COLON_COLON, + [66183] = 2, + ACTIONS(4578), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66049] = 2, - ACTIONS(5349), 1, - anon_sym_SEMI, + [66191] = 2, + ACTIONS(5366), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66057] = 2, - ACTIONS(5351), 1, - anon_sym_COLON, + [66199] = 2, + ACTIONS(5368), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66065] = 2, - ACTIONS(5353), 1, - anon_sym_SEMI, + [66207] = 2, + ACTIONS(5370), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66073] = 2, - ACTIONS(5355), 1, - anon_sym_SEMI, + [66215] = 2, + ACTIONS(5372), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66081] = 2, - ACTIONS(5357), 1, - anon_sym_SEMI, + [66223] = 2, + ACTIONS(5374), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66089] = 2, - ACTIONS(5359), 1, - anon_sym_RBRACE, + [66231] = 2, + ACTIONS(3202), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66097] = 2, - ACTIONS(5361), 1, - anon_sym_fn, + [66239] = 2, + ACTIONS(5376), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66105] = 2, - ACTIONS(5363), 1, - anon_sym_EQ_GT, + [66247] = 2, + ACTIONS(5378), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66113] = 2, - ACTIONS(5365), 1, - anon_sym_COLON, + [66255] = 2, + ACTIONS(4720), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66121] = 2, - ACTIONS(5367), 1, - anon_sym_SEMI, + [66263] = 2, + ACTIONS(5380), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66129] = 2, - ACTIONS(5369), 1, + [66271] = 2, + ACTIONS(5382), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66137] = 2, - ACTIONS(5371), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66145] = 2, - ACTIONS(5373), 1, - anon_sym_SEMI, + [66279] = 2, + ACTIONS(5384), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66153] = 2, - ACTIONS(5375), 1, + [66287] = 2, + ACTIONS(5386), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66161] = 2, - ACTIONS(5377), 1, + [66295] = 2, + ACTIONS(5388), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66169] = 2, - ACTIONS(5379), 1, + [66303] = 2, + ACTIONS(5390), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66177] = 2, - ACTIONS(5381), 1, + [66311] = 2, + ACTIONS(5392), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66185] = 2, - ACTIONS(5383), 1, + [66319] = 2, + ACTIONS(3192), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66193] = 2, - ACTIONS(5385), 1, + [66327] = 2, + ACTIONS(5394), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66201] = 2, - ACTIONS(5387), 1, - sym_identifier, + [66335] = 2, + ACTIONS(2439), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66209] = 2, - ACTIONS(5389), 1, - anon_sym_COLON, + [66343] = 2, + ACTIONS(5396), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66217] = 2, - ACTIONS(5391), 1, - anon_sym_RPAREN, + [66351] = 2, + ACTIONS(5398), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66225] = 2, - ACTIONS(5393), 1, - anon_sym_RPAREN, + [66359] = 2, + ACTIONS(4698), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66233] = 2, - ACTIONS(4906), 1, - anon_sym_RBRACE, + [66367] = 2, + ACTIONS(5400), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66241] = 2, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, + [66375] = 2, + ACTIONS(5402), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66249] = 2, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, + [66383] = 2, + ACTIONS(5404), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66257] = 2, - ACTIONS(5395), 1, - anon_sym_COLON, + [66391] = 2, + ACTIONS(5406), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66265] = 2, - ACTIONS(5397), 1, - anon_sym_SEMI, + [66399] = 2, + ACTIONS(5408), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66273] = 2, - ACTIONS(5399), 1, - anon_sym_SEMI, + [66407] = 2, + ACTIONS(5410), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66281] = 2, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, + [66415] = 2, + ACTIONS(5240), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66289] = 2, - ACTIONS(5401), 1, + [66423] = 2, + ACTIONS(5412), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66297] = 2, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, + [66431] = 2, + ACTIONS(5414), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66305] = 2, - ACTIONS(5403), 1, - anon_sym_SEMI, + [66439] = 2, + ACTIONS(5416), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66313] = 2, - ACTIONS(5405), 1, - anon_sym_fn, + [66447] = 2, + ACTIONS(5234), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66321] = 2, - ACTIONS(5407), 1, + [66455] = 2, + ACTIONS(5418), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66329] = 2, - ACTIONS(5409), 1, - sym_identifier, + [66463] = 2, + ACTIONS(5420), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66337] = 2, - ACTIONS(4922), 1, + [66471] = 2, + ACTIONS(5422), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66345] = 2, - ACTIONS(5411), 1, - anon_sym_SEMI, + [66479] = 2, + ACTIONS(2685), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66353] = 2, - ACTIONS(5413), 1, + [66487] = 2, + ACTIONS(4050), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66361] = 2, - ACTIONS(5415), 1, - sym_identifier, + [66495] = 2, + ACTIONS(5246), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66369] = 2, - ACTIONS(4419), 1, - anon_sym_RBRACK, + [66503] = 2, + ACTIONS(5424), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66377] = 2, - ACTIONS(4411), 1, - anon_sym_RPAREN, + [66511] = 2, + ACTIONS(5426), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66385] = 2, - ACTIONS(5417), 1, + [66519] = 2, + ACTIONS(5428), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66393] = 2, - ACTIONS(5419), 1, - anon_sym_SEMI, + [66527] = 2, + ACTIONS(5430), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66401] = 2, - ACTIONS(5421), 1, - sym_identifier, + [66535] = 2, + ACTIONS(5432), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66409] = 2, - ACTIONS(5423), 1, - sym_identifier, + [66543] = 2, + ACTIONS(4068), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66417] = 2, - ACTIONS(624), 1, - anon_sym_RBRACK, + [66551] = 2, + ACTIONS(5434), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66425] = 2, - ACTIONS(5425), 1, - anon_sym_RBRACE, + [66559] = 2, + ACTIONS(3216), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66433] = 2, - ACTIONS(5427), 1, + [66567] = 2, + ACTIONS(5436), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66441] = 2, - ACTIONS(5429), 1, - anon_sym_SEMI, + [66575] = 2, + ACTIONS(5438), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66583] = 2, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66449] = 2, - ACTIONS(4553), 1, + [66591] = 2, + ACTIONS(4130), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66457] = 2, - ACTIONS(5431), 1, - anon_sym_RBRACK, + [66599] = 2, + ACTIONS(5440), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66465] = 2, - ACTIONS(5433), 1, - anon_sym_RBRACK, + [66607] = 2, + ACTIONS(5442), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66473] = 2, - ACTIONS(5435), 1, - anon_sym_RBRACK, + [66615] = 2, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66481] = 2, - ACTIONS(5437), 1, - sym_identifier, + [66623] = 2, + ACTIONS(5444), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66489] = 2, - ACTIONS(4106), 1, + [66631] = 2, + ACTIONS(5446), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66497] = 2, - ACTIONS(5439), 1, - anon_sym_fn, + [66639] = 2, + ACTIONS(5448), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66505] = 2, - ACTIONS(5441), 1, + [66647] = 2, + ACTIONS(5450), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66513] = 2, - ACTIONS(5443), 1, - sym_identifier, + [66655] = 2, + ACTIONS(5452), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66521] = 2, - ACTIONS(5445), 1, + [66663] = 2, + ACTIONS(5454), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66529] = 2, - ACTIONS(5141), 1, - anon_sym_SEMI, + [66671] = 2, + ACTIONS(5456), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66537] = 2, - ACTIONS(5447), 1, - sym_identifier, + [66679] = 2, + ACTIONS(5458), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66545] = 2, - ACTIONS(5139), 1, - anon_sym_SEMI, + [66687] = 2, + ACTIONS(5460), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66553] = 2, - ACTIONS(5449), 1, - sym_identifier, + [66695] = 2, + ACTIONS(5462), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66561] = 2, - ACTIONS(5451), 1, - anon_sym_RBRACK, + [66703] = 2, + ACTIONS(5464), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66569] = 2, - ACTIONS(5048), 1, - sym_identifier, + [66711] = 2, + ACTIONS(3599), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66577] = 2, - ACTIONS(5453), 1, - sym_identifier, + [66719] = 2, + ACTIONS(4613), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66585] = 2, - ACTIONS(5455), 1, - anon_sym_COLON, + [66727] = 2, + ACTIONS(4370), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66593] = 2, - ACTIONS(5095), 1, - anon_sym_GT, + [66735] = 2, + ACTIONS(4326), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66601] = 2, - ACTIONS(5457), 1, - sym_identifier, + [66743] = 2, + ACTIONS(5466), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66609] = 2, - ACTIONS(5459), 1, + [66751] = 2, + ACTIONS(5468), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66617] = 2, - ACTIONS(5103), 1, - anon_sym_RBRACE, + [66759] = 2, + ACTIONS(5470), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66625] = 2, - ACTIONS(5461), 1, + [66767] = 2, + ACTIONS(4915), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66633] = 2, - ACTIONS(5463), 1, - anon_sym_LBRACK, + [66775] = 2, + ACTIONS(5472), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66641] = 2, - ACTIONS(5465), 1, - anon_sym_RBRACE, + [66783] = 2, + ACTIONS(5474), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66649] = 2, - ACTIONS(5467), 1, - anon_sym_SEMI, + [66791] = 2, + ACTIONS(5476), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66657] = 2, - ACTIONS(5469), 1, - anon_sym_EQ, + [66799] = 2, + ACTIONS(5478), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66665] = 2, - ACTIONS(5471), 1, - anon_sym_COLON_COLON, + [66807] = 2, + ACTIONS(5480), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66673] = 2, - ACTIONS(5473), 1, - anon_sym_SEMI, + [66815] = 2, + ACTIONS(5482), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66681] = 2, - ACTIONS(2359), 1, - anon_sym_EQ_GT, + [66823] = 2, + ACTIONS(5484), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66689] = 2, - ACTIONS(5475), 1, - anon_sym_LPAREN, + [66831] = 2, + ACTIONS(5486), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66839] = 2, + ACTIONS(5092), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66697] = 2, - ACTIONS(5145), 1, + [66847] = 2, + ACTIONS(5488), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66705] = 2, - ACTIONS(5149), 1, + [66855] = 2, + ACTIONS(391), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66863] = 2, + ACTIONS(5490), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66713] = 2, - ACTIONS(5477), 1, - sym_identifier, + [66871] = 2, + ACTIONS(5492), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66721] = 2, - ACTIONS(5479), 1, + [66879] = 2, + ACTIONS(5494), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66729] = 2, - ACTIONS(5481), 1, + [66887] = 2, + ACTIONS(5496), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66737] = 2, - ACTIONS(4251), 1, + [66895] = 2, + ACTIONS(5498), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66745] = 2, - ACTIONS(5034), 1, - anon_sym_RBRACE, + [66903] = 2, + ACTIONS(5500), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66753] = 2, - ACTIONS(5483), 1, + [66911] = 2, + ACTIONS(5502), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66761] = 2, - ACTIONS(5485), 1, - sym_self, + [66919] = 2, + ACTIONS(5504), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66769] = 2, - ACTIONS(4005), 1, - anon_sym_SEMI, + [66927] = 2, + ACTIONS(4899), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66777] = 2, - ACTIONS(2449), 1, - anon_sym_PLUS, + [66935] = 2, + ACTIONS(635), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66785] = 2, - ACTIONS(5487), 1, - anon_sym_fn, + [66943] = 2, + ACTIONS(5506), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66951] = 2, + ACTIONS(5508), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66959] = 2, + ACTIONS(5510), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66793] = 2, - ACTIONS(4007), 1, + [66967] = 2, + ACTIONS(5512), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66801] = 2, - ACTIONS(5489), 1, + [66975] = 2, + ACTIONS(5514), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66809] = 2, - ACTIONS(5491), 1, + [66983] = 2, + ACTIONS(5516), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66817] = 2, - ACTIONS(5493), 1, - anon_sym_LT, + [66991] = 2, + ACTIONS(4024), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66825] = 2, - ACTIONS(5495), 1, - anon_sym_RBRACK, + [66999] = 2, + ACTIONS(5518), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66833] = 2, - ACTIONS(5497), 1, + [67007] = 2, + ACTIONS(5520), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66841] = 2, - ACTIONS(5499), 1, + [67015] = 2, + ACTIONS(2377), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67023] = 2, + ACTIONS(5522), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66849] = 2, - ACTIONS(5501), 1, - anon_sym_RPAREN, + [67031] = 2, + ACTIONS(3506), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66857] = 2, - ACTIONS(5503), 1, - anon_sym_EQ_GT, + [67039] = 2, + ACTIONS(5524), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66865] = 2, - ACTIONS(5505), 1, - anon_sym_RBRACE, + [67047] = 2, + ACTIONS(5144), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66873] = 2, - ACTIONS(5507), 1, - anon_sym_COLON, + [67055] = 2, + ACTIONS(5526), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66881] = 2, - ACTIONS(5509), 1, - sym_identifier, + [67063] = 2, + ACTIONS(2805), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66889] = 2, - ACTIONS(5511), 1, - sym_identifier, + [67071] = 2, + ACTIONS(5528), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67079] = 2, + ACTIONS(5530), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66897] = 2, - ACTIONS(4918), 1, + [67087] = 2, + ACTIONS(5532), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66905] = 2, - ACTIONS(5513), 1, - anon_sym_COLON_COLON, + [67095] = 2, + ACTIONS(5534), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66913] = 2, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, + [67103] = 2, + ACTIONS(5536), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66921] = 2, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, + [67111] = 2, + ACTIONS(5538), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66929] = 2, - ACTIONS(5515), 1, + [67119] = 2, + ACTIONS(4903), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66937] = 2, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, + [67127] = 2, + ACTIONS(5116), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66945] = 2, - ACTIONS(5517), 1, - anon_sym_COLON_COLON, + [67135] = 2, + ACTIONS(5540), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66953] = 2, - ACTIONS(5519), 1, - anon_sym_SEMI, + [67143] = 2, + ACTIONS(2687), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66961] = 2, - ACTIONS(5521), 1, - anon_sym_SEMI, + [67151] = 2, + ACTIONS(5542), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66969] = 2, - ACTIONS(5523), 1, + [67159] = 2, + ACTIONS(5544), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66977] = 2, - ACTIONS(5525), 1, + [67167] = 2, + ACTIONS(5546), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66985] = 2, - ACTIONS(5527), 1, - anon_sym_COLON, + [67175] = 2, + ACTIONS(5548), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66993] = 2, - ACTIONS(4561), 1, + [67183] = 2, + ACTIONS(5550), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67001] = 2, - ACTIONS(5529), 1, + [67191] = 2, + ACTIONS(5552), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67009] = 2, - ACTIONS(374), 1, - anon_sym_RBRACK, + [67199] = 2, + ACTIONS(5554), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67017] = 2, - ACTIONS(5531), 1, - anon_sym_LBRACK, + [67207] = 2, + ACTIONS(5556), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67215] = 2, + ACTIONS(5272), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67223] = 2, + ACTIONS(5558), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67025] = 2, - ACTIONS(4868), 1, + [67231] = 2, + ACTIONS(5560), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67033] = 2, - ACTIONS(5533), 1, - anon_sym_SEMI, + [67239] = 2, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67247] = 2, + ACTIONS(5562), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67041] = 2, - ACTIONS(4227), 1, + [67255] = 2, + ACTIONS(4156), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67049] = 2, - ACTIONS(5535), 1, + [67263] = 2, + ACTIONS(5564), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67057] = 2, - ACTIONS(5537), 1, + [67271] = 2, + ACTIONS(5566), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67065] = 2, - ACTIONS(5539), 1, - anon_sym_SEMI, + [67279] = 2, + ACTIONS(4941), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67073] = 2, - ACTIONS(4160), 1, + [67287] = 2, + ACTIONS(4230), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67081] = 2, - ACTIONS(5541), 1, + [67295] = 2, + ACTIONS(5568), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67089] = 2, - ACTIONS(5543), 1, + [67303] = 2, + ACTIONS(5570), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67097] = 2, - ACTIONS(4207), 1, + [67311] = 2, + ACTIONS(4112), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67105] = 2, - ACTIONS(5545), 1, + [67319] = 2, + ACTIONS(5572), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67113] = 2, - ACTIONS(2470), 1, - anon_sym_PLUS, + [67327] = 2, + ACTIONS(5574), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67121] = 2, - ACTIONS(2373), 1, - anon_sym_EQ_GT, + [67335] = 2, + ACTIONS(5576), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67129] = 2, - ACTIONS(5547), 1, - sym_identifier, + [67343] = 2, + ACTIONS(4425), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67137] = 2, - ACTIONS(5549), 1, - anon_sym_SEMI, + [67351] = 2, + ACTIONS(5578), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67145] = 2, - ACTIONS(5551), 1, + [67359] = 2, + ACTIONS(5580), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67153] = 2, - ACTIONS(5553), 1, + [67367] = 2, + ACTIONS(5582), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67161] = 2, - ACTIONS(5555), 1, + [67375] = 2, + ACTIONS(5584), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67169] = 2, - ACTIONS(5557), 1, - sym_identifier, + [67383] = 2, + ACTIONS(5586), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67177] = 2, - ACTIONS(5559), 1, - anon_sym_COLON, + [67391] = 2, + ACTIONS(5588), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67185] = 2, - ACTIONS(5119), 1, + [67399] = 2, + ACTIONS(5590), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67193] = 2, - ACTIONS(5561), 1, + [67407] = 2, + ACTIONS(5592), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67201] = 2, - ACTIONS(5563), 1, + [67415] = 2, + ACTIONS(5594), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67209] = 2, - ACTIONS(5565), 1, + [67423] = 2, + ACTIONS(5596), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67217] = 2, - ACTIONS(5567), 1, - sym_identifier, + [67431] = 2, + ACTIONS(5598), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67225] = 2, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, + [67439] = 2, + ACTIONS(2480), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67233] = 2, - ACTIONS(3485), 1, - anon_sym_fn, + [67447] = 2, + ACTIONS(5600), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67241] = 2, - ACTIONS(5569), 1, - ts_builtin_sym_end, + [67455] = 2, + ACTIONS(4479), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67249] = 2, - ACTIONS(2904), 1, - anon_sym_COLON_COLON, + [67463] = 2, + ACTIONS(5160), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67257] = 2, - ACTIONS(5571), 1, - sym_identifier, + [67471] = 2, + ACTIONS(5156), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67265] = 2, - ACTIONS(5573), 1, + [67479] = 2, + ACTIONS(5602), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67273] = 2, - ACTIONS(5575), 1, - sym_identifier, + [67487] = 2, + ACTIONS(5604), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67281] = 2, - ACTIONS(5577), 1, - sym_identifier, + [67495] = 2, + ACTIONS(5606), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67289] = 2, - ACTIONS(5579), 1, + [67503] = 2, + ACTIONS(5608), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67297] = 2, - ACTIONS(5581), 1, + [67511] = 2, + ACTIONS(5610), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67305] = 2, - ACTIONS(5583), 1, - anon_sym_RPAREN, + [67519] = 2, + ACTIONS(5612), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67313] = 2, - ACTIONS(5585), 1, - anon_sym_SEMI, + [67527] = 2, + ACTIONS(5614), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67321] = 2, - ACTIONS(5587), 1, + [67535] = 2, + ACTIONS(5616), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67329] = 2, - ACTIONS(5589), 1, - sym_identifier, + [67543] = 2, + ACTIONS(5618), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67337] = 2, - ACTIONS(5591), 1, - sym_identifier, + [67551] = 2, + ACTIONS(4066), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67345] = 2, - ACTIONS(5593), 1, + [67559] = 2, + ACTIONS(4064), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67353] = 2, - ACTIONS(5595), 1, + [67567] = 2, + ACTIONS(5620), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67361] = 2, - ACTIONS(5597), 1, - anon_sym_EQ_GT, + [67575] = 2, + ACTIONS(5622), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67369] = 2, - ACTIONS(5599), 1, + [67583] = 2, + ACTIONS(5624), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67377] = 2, - ACTIONS(5601), 1, + [67591] = 2, + ACTIONS(5626), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67385] = 2, - ACTIONS(5603), 1, + [67599] = 2, + ACTIONS(5628), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67393] = 2, - ACTIONS(5605), 1, - anon_sym_EQ_GT, + [67607] = 2, + ACTIONS(5031), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67401] = 2, - ACTIONS(5607), 1, - anon_sym_SEMI, + [67615] = 2, + ACTIONS(5021), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67409] = 2, - ACTIONS(5609), 1, + [67623] = 2, + ACTIONS(5630), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67417] = 2, - ACTIONS(5611), 1, - anon_sym_SEMI, + [67631] = 2, + ACTIONS(5632), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67425] = 2, - ACTIONS(3459), 1, + [67639] = 2, + ACTIONS(3480), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67433] = 2, - ACTIONS(5613), 1, - anon_sym_LPAREN, + [67647] = 2, + ACTIONS(5634), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67441] = 2, - ACTIONS(5615), 1, + [67655] = 2, + ACTIONS(5636), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67449] = 2, - ACTIONS(5617), 1, + [67663] = 2, + ACTIONS(5638), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67457] = 2, - ACTIONS(5619), 1, + [67671] = 2, + ACTIONS(5640), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67465] = 2, - ACTIONS(5621), 1, + [67679] = 2, + ACTIONS(5642), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67473] = 2, - ACTIONS(5623), 1, + [67687] = 2, + ACTIONS(5644), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67481] = 2, - ACTIONS(5625), 1, + [67695] = 2, + ACTIONS(5646), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67489] = 2, - ACTIONS(5627), 1, - anon_sym_EQ_GT, + [67703] = 2, + ACTIONS(5648), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67497] = 2, - ACTIONS(5629), 1, + [67711] = 2, + ACTIONS(5650), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67505] = 2, - ACTIONS(5631), 1, + [67719] = 2, + ACTIONS(5652), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67513] = 2, - ACTIONS(5633), 1, - sym_identifier, + [67727] = 2, + ACTIONS(5654), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67521] = 2, - ACTIONS(5635), 1, + [67735] = 2, + ACTIONS(5656), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -127845,1932 +128979,1938 @@ 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)] = 2451, - [SMALL_STATE(659)] = 2580, - [SMALL_STATE(660)] = 2709, - [SMALL_STATE(661)] = 2838, - [SMALL_STATE(662)] = 2967, - [SMALL_STATE(663)] = 3096, - [SMALL_STATE(664)] = 3225, - [SMALL_STATE(665)] = 3354, - [SMALL_STATE(666)] = 3483, - [SMALL_STATE(667)] = 3612, - [SMALL_STATE(668)] = 3741, - [SMALL_STATE(669)] = 3870, - [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, - [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)] = 13942, - [SMALL_STATE(749)] = 14008, - [SMALL_STATE(750)] = 14074, - [SMALL_STATE(751)] = 14140, - [SMALL_STATE(752)] = 14202, - [SMALL_STATE(753)] = 14273, - [SMALL_STATE(754)] = 14341, - [SMALL_STATE(755)] = 14409, - [SMALL_STATE(756)] = 14470, - [SMALL_STATE(757)] = 14531, - [SMALL_STATE(758)] = 14596, - [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)] = 15027, - [SMALL_STATE(766)] = 15089, - [SMALL_STATE(767)] = 15147, - [SMALL_STATE(768)] = 15203, - [SMALL_STATE(769)] = 15259, - [SMALL_STATE(770)] = 15317, - [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)] = 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)] = 16562, - [SMALL_STATE(793)] = 16621, - [SMALL_STATE(794)] = 16678, - [SMALL_STATE(795)] = 16733, - [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)] = 17240, - [SMALL_STATE(805)] = 17295, - [SMALL_STATE(806)] = 17352, - [SMALL_STATE(807)] = 17407, - [SMALL_STATE(808)] = 17464, - [SMALL_STATE(809)] = 17518, - [SMALL_STATE(810)] = 17572, - [SMALL_STATE(811)] = 17626, - [SMALL_STATE(812)] = 17680, - [SMALL_STATE(813)] = 17734, - [SMALL_STATE(814)] = 17788, - [SMALL_STATE(815)] = 17842, - [SMALL_STATE(816)] = 17896, - [SMALL_STATE(817)] = 17950, - [SMALL_STATE(818)] = 18004, - [SMALL_STATE(819)] = 18058, - [SMALL_STATE(820)] = 18112, - [SMALL_STATE(821)] = 18166, - [SMALL_STATE(822)] = 18220, - [SMALL_STATE(823)] = 18274, - [SMALL_STATE(824)] = 18328, - [SMALL_STATE(825)] = 18382, - [SMALL_STATE(826)] = 18436, - [SMALL_STATE(827)] = 18490, - [SMALL_STATE(828)] = 18544, - [SMALL_STATE(829)] = 18598, - [SMALL_STATE(830)] = 18652, - [SMALL_STATE(831)] = 18706, - [SMALL_STATE(832)] = 18760, - [SMALL_STATE(833)] = 18814, - [SMALL_STATE(834)] = 18868, - [SMALL_STATE(835)] = 18922, - [SMALL_STATE(836)] = 18976, - [SMALL_STATE(837)] = 19030, - [SMALL_STATE(838)] = 19084, - [SMALL_STATE(839)] = 19138, - [SMALL_STATE(840)] = 19192, - [SMALL_STATE(841)] = 19246, - [SMALL_STATE(842)] = 19300, - [SMALL_STATE(843)] = 19354, - [SMALL_STATE(844)] = 19408, - [SMALL_STATE(845)] = 19462, - [SMALL_STATE(846)] = 19516, - [SMALL_STATE(847)] = 19570, - [SMALL_STATE(848)] = 19624, - [SMALL_STATE(849)] = 19678, - [SMALL_STATE(850)] = 19732, - [SMALL_STATE(851)] = 19786, - [SMALL_STATE(852)] = 19840, - [SMALL_STATE(853)] = 19894, - [SMALL_STATE(854)] = 19948, - [SMALL_STATE(855)] = 20002, - [SMALL_STATE(856)] = 20056, - [SMALL_STATE(857)] = 20110, - [SMALL_STATE(858)] = 20164, - [SMALL_STATE(859)] = 20218, - [SMALL_STATE(860)] = 20272, - [SMALL_STATE(861)] = 20326, - [SMALL_STATE(862)] = 20380, - [SMALL_STATE(863)] = 20434, - [SMALL_STATE(864)] = 20488, - [SMALL_STATE(865)] = 20542, - [SMALL_STATE(866)] = 20596, - [SMALL_STATE(867)] = 20650, - [SMALL_STATE(868)] = 20704, - [SMALL_STATE(869)] = 20758, - [SMALL_STATE(870)] = 20812, - [SMALL_STATE(871)] = 20866, - [SMALL_STATE(872)] = 20920, - [SMALL_STATE(873)] = 20974, - [SMALL_STATE(874)] = 21028, - [SMALL_STATE(875)] = 21082, - [SMALL_STATE(876)] = 21136, - [SMALL_STATE(877)] = 21190, - [SMALL_STATE(878)] = 21244, - [SMALL_STATE(879)] = 21298, - [SMALL_STATE(880)] = 21352, - [SMALL_STATE(881)] = 21406, - [SMALL_STATE(882)] = 21460, - [SMALL_STATE(883)] = 21514, - [SMALL_STATE(884)] = 21568, - [SMALL_STATE(885)] = 21622, - [SMALL_STATE(886)] = 21676, - [SMALL_STATE(887)] = 21730, - [SMALL_STATE(888)] = 21784, - [SMALL_STATE(889)] = 21838, - [SMALL_STATE(890)] = 21892, - [SMALL_STATE(891)] = 21946, - [SMALL_STATE(892)] = 22000, - [SMALL_STATE(893)] = 22054, - [SMALL_STATE(894)] = 22108, - [SMALL_STATE(895)] = 22162, - [SMALL_STATE(896)] = 22216, - [SMALL_STATE(897)] = 22270, - [SMALL_STATE(898)] = 22324, - [SMALL_STATE(899)] = 22378, - [SMALL_STATE(900)] = 22432, - [SMALL_STATE(901)] = 22486, - [SMALL_STATE(902)] = 22540, - [SMALL_STATE(903)] = 22594, - [SMALL_STATE(904)] = 22648, - [SMALL_STATE(905)] = 22702, - [SMALL_STATE(906)] = 22756, - [SMALL_STATE(907)] = 22810, - [SMALL_STATE(908)] = 22864, - [SMALL_STATE(909)] = 22918, - [SMALL_STATE(910)] = 22972, - [SMALL_STATE(911)] = 23026, - [SMALL_STATE(912)] = 23080, - [SMALL_STATE(913)] = 23134, - [SMALL_STATE(914)] = 23188, - [SMALL_STATE(915)] = 23242, - [SMALL_STATE(916)] = 23296, - [SMALL_STATE(917)] = 23350, - [SMALL_STATE(918)] = 23404, - [SMALL_STATE(919)] = 23458, - [SMALL_STATE(920)] = 23512, - [SMALL_STATE(921)] = 23566, - [SMALL_STATE(922)] = 23620, - [SMALL_STATE(923)] = 23674, - [SMALL_STATE(924)] = 23728, - [SMALL_STATE(925)] = 23782, - [SMALL_STATE(926)] = 23836, - [SMALL_STATE(927)] = 23890, - [SMALL_STATE(928)] = 23944, - [SMALL_STATE(929)] = 23998, - [SMALL_STATE(930)] = 24052, - [SMALL_STATE(931)] = 24106, - [SMALL_STATE(932)] = 24160, - [SMALL_STATE(933)] = 24214, - [SMALL_STATE(934)] = 24268, - [SMALL_STATE(935)] = 24322, - [SMALL_STATE(936)] = 24376, - [SMALL_STATE(937)] = 24430, - [SMALL_STATE(938)] = 24484, - [SMALL_STATE(939)] = 24538, - [SMALL_STATE(940)] = 24592, - [SMALL_STATE(941)] = 24646, - [SMALL_STATE(942)] = 24700, - [SMALL_STATE(943)] = 24754, - [SMALL_STATE(944)] = 24808, - [SMALL_STATE(945)] = 24862, - [SMALL_STATE(946)] = 24916, - [SMALL_STATE(947)] = 24970, - [SMALL_STATE(948)] = 25024, - [SMALL_STATE(949)] = 25078, - [SMALL_STATE(950)] = 25132, - [SMALL_STATE(951)] = 25186, - [SMALL_STATE(952)] = 25240, - [SMALL_STATE(953)] = 25294, - [SMALL_STATE(954)] = 25348, - [SMALL_STATE(955)] = 25402, - [SMALL_STATE(956)] = 25456, - [SMALL_STATE(957)] = 25510, - [SMALL_STATE(958)] = 25564, - [SMALL_STATE(959)] = 25618, - [SMALL_STATE(960)] = 25672, - [SMALL_STATE(961)] = 25726, - [SMALL_STATE(962)] = 25780, - [SMALL_STATE(963)] = 25834, - [SMALL_STATE(964)] = 25888, - [SMALL_STATE(965)] = 25942, - [SMALL_STATE(966)] = 25996, - [SMALL_STATE(967)] = 26050, - [SMALL_STATE(968)] = 26104, - [SMALL_STATE(969)] = 26158, - [SMALL_STATE(970)] = 26212, - [SMALL_STATE(971)] = 26266, - [SMALL_STATE(972)] = 26320, - [SMALL_STATE(973)] = 26374, - [SMALL_STATE(974)] = 26428, - [SMALL_STATE(975)] = 26482, - [SMALL_STATE(976)] = 26536, - [SMALL_STATE(977)] = 26590, - [SMALL_STATE(978)] = 26644, - [SMALL_STATE(979)] = 26698, - [SMALL_STATE(980)] = 26752, - [SMALL_STATE(981)] = 26806, - [SMALL_STATE(982)] = 26860, - [SMALL_STATE(983)] = 26914, - [SMALL_STATE(984)] = 26968, - [SMALL_STATE(985)] = 27022, - [SMALL_STATE(986)] = 27076, - [SMALL_STATE(987)] = 27130, - [SMALL_STATE(988)] = 27184, - [SMALL_STATE(989)] = 27238, - [SMALL_STATE(990)] = 27292, - [SMALL_STATE(991)] = 27346, - [SMALL_STATE(992)] = 27400, - [SMALL_STATE(993)] = 27454, - [SMALL_STATE(994)] = 27508, - [SMALL_STATE(995)] = 27562, - [SMALL_STATE(996)] = 27616, - [SMALL_STATE(997)] = 27670, - [SMALL_STATE(998)] = 27724, - [SMALL_STATE(999)] = 27778, - [SMALL_STATE(1000)] = 27832, - [SMALL_STATE(1001)] = 27886, - [SMALL_STATE(1002)] = 27940, - [SMALL_STATE(1003)] = 27994, - [SMALL_STATE(1004)] = 28048, - [SMALL_STATE(1005)] = 28102, - [SMALL_STATE(1006)] = 28156, - [SMALL_STATE(1007)] = 28210, - [SMALL_STATE(1008)] = 28264, - [SMALL_STATE(1009)] = 28318, - [SMALL_STATE(1010)] = 28372, - [SMALL_STATE(1011)] = 28426, - [SMALL_STATE(1012)] = 28480, - [SMALL_STATE(1013)] = 28534, - [SMALL_STATE(1014)] = 28588, - [SMALL_STATE(1015)] = 28642, - [SMALL_STATE(1016)] = 28696, - [SMALL_STATE(1017)] = 28750, - [SMALL_STATE(1018)] = 28804, - [SMALL_STATE(1019)] = 28858, - [SMALL_STATE(1020)] = 28912, - [SMALL_STATE(1021)] = 28966, - [SMALL_STATE(1022)] = 29020, - [SMALL_STATE(1023)] = 29074, - [SMALL_STATE(1024)] = 29128, - [SMALL_STATE(1025)] = 29182, - [SMALL_STATE(1026)] = 29236, - [SMALL_STATE(1027)] = 29290, - [SMALL_STATE(1028)] = 29344, - [SMALL_STATE(1029)] = 29398, - [SMALL_STATE(1030)] = 29452, - [SMALL_STATE(1031)] = 29506, - [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)] = 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)] = 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)] = 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)] = 37806, - [SMALL_STATE(1173)] = 37860, - [SMALL_STATE(1174)] = 37936, - [SMALL_STATE(1175)] = 38012, - [SMALL_STATE(1176)] = 38101, - [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)] = 38989, - [SMALL_STATE(1194)] = 39075, - [SMALL_STATE(1195)] = 39125, - [SMALL_STATE(1196)] = 39203, - [SMALL_STATE(1197)] = 39281, - [SMALL_STATE(1198)] = 39367, - [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(648)] = 0, + [SMALL_STATE(649)] = 129, + [SMALL_STATE(650)] = 258, + [SMALL_STATE(651)] = 329, + [SMALL_STATE(652)] = 458, + [SMALL_STATE(653)] = 587, + [SMALL_STATE(654)] = 716, + [SMALL_STATE(655)] = 845, + [SMALL_STATE(656)] = 974, + [SMALL_STATE(657)] = 1103, + [SMALL_STATE(658)] = 1232, + [SMALL_STATE(659)] = 1361, + [SMALL_STATE(660)] = 1490, + [SMALL_STATE(661)] = 1619, + [SMALL_STATE(662)] = 1748, + [SMALL_STATE(663)] = 1877, + [SMALL_STATE(664)] = 2006, + [SMALL_STATE(665)] = 2135, + [SMALL_STATE(666)] = 2264, + [SMALL_STATE(667)] = 2393, + [SMALL_STATE(668)] = 2522, + [SMALL_STATE(669)] = 2651, + [SMALL_STATE(670)] = 2780, + [SMALL_STATE(671)] = 2909, + [SMALL_STATE(672)] = 3038, + [SMALL_STATE(673)] = 3167, + [SMALL_STATE(674)] = 3296, + [SMALL_STATE(675)] = 3425, + [SMALL_STATE(676)] = 3554, + [SMALL_STATE(677)] = 3683, + [SMALL_STATE(678)] = 3812, + [SMALL_STATE(679)] = 3941, + [SMALL_STATE(680)] = 4070, + [SMALL_STATE(681)] = 4199, + [SMALL_STATE(682)] = 4328, + [SMALL_STATE(683)] = 4457, + [SMALL_STATE(684)] = 4586, + [SMALL_STATE(685)] = 4715, + [SMALL_STATE(686)] = 4844, + [SMALL_STATE(687)] = 4973, + [SMALL_STATE(688)] = 5102, + [SMALL_STATE(689)] = 5231, + [SMALL_STATE(690)] = 5360, + [SMALL_STATE(691)] = 5489, + [SMALL_STATE(692)] = 5618, + [SMALL_STATE(693)] = 5747, + [SMALL_STATE(694)] = 5876, + [SMALL_STATE(695)] = 6005, + [SMALL_STATE(696)] = 6134, + [SMALL_STATE(697)] = 6263, + [SMALL_STATE(698)] = 6392, + [SMALL_STATE(699)] = 6521, + [SMALL_STATE(700)] = 6650, + [SMALL_STATE(701)] = 6779, + [SMALL_STATE(702)] = 6908, + [SMALL_STATE(703)] = 7037, + [SMALL_STATE(704)] = 7166, + [SMALL_STATE(705)] = 7295, + [SMALL_STATE(706)] = 7424, + [SMALL_STATE(707)] = 7553, + [SMALL_STATE(708)] = 7682, + [SMALL_STATE(709)] = 7811, + [SMALL_STATE(710)] = 7940, + [SMALL_STATE(711)] = 8069, + [SMALL_STATE(712)] = 8198, + [SMALL_STATE(713)] = 8327, + [SMALL_STATE(714)] = 8456, + [SMALL_STATE(715)] = 8585, + [SMALL_STATE(716)] = 8714, + [SMALL_STATE(717)] = 8843, + [SMALL_STATE(718)] = 8972, + [SMALL_STATE(719)] = 9101, + [SMALL_STATE(720)] = 9230, + [SMALL_STATE(721)] = 9359, + [SMALL_STATE(722)] = 9488, + [SMALL_STATE(723)] = 9617, + [SMALL_STATE(724)] = 9746, + [SMALL_STATE(725)] = 9875, + [SMALL_STATE(726)] = 10004, + [SMALL_STATE(727)] = 10133, + [SMALL_STATE(728)] = 10262, + [SMALL_STATE(729)] = 10391, + [SMALL_STATE(730)] = 10520, + [SMALL_STATE(731)] = 10649, + [SMALL_STATE(732)] = 10778, + [SMALL_STATE(733)] = 10907, + [SMALL_STATE(734)] = 11036, + [SMALL_STATE(735)] = 11165, + [SMALL_STATE(736)] = 11294, + [SMALL_STATE(737)] = 11423, + [SMALL_STATE(738)] = 11552, + [SMALL_STATE(739)] = 11681, + [SMALL_STATE(740)] = 11810, + [SMALL_STATE(741)] = 11939, + [SMALL_STATE(742)] = 12068, + [SMALL_STATE(743)] = 12197, + [SMALL_STATE(744)] = 12326, + [SMALL_STATE(745)] = 12455, + [SMALL_STATE(746)] = 12584, + [SMALL_STATE(747)] = 12713, + [SMALL_STATE(748)] = 12842, + [SMALL_STATE(749)] = 12971, + [SMALL_STATE(750)] = 13100, + [SMALL_STATE(751)] = 13229, + [SMALL_STATE(752)] = 13360, + [SMALL_STATE(753)] = 13489, + [SMALL_STATE(754)] = 13618, + [SMALL_STATE(755)] = 13747, + [SMALL_STATE(756)] = 13876, + [SMALL_STATE(757)] = 13942, + [SMALL_STATE(758)] = 14008, + [SMALL_STATE(759)] = 14074, + [SMALL_STATE(760)] = 14140, + [SMALL_STATE(761)] = 14202, + [SMALL_STATE(762)] = 14273, + [SMALL_STATE(763)] = 14341, + [SMALL_STATE(764)] = 14409, + [SMALL_STATE(765)] = 14474, + [SMALL_STATE(766)] = 14535, + [SMALL_STATE(767)] = 14596, + [SMALL_STATE(768)] = 14661, + [SMALL_STATE(769)] = 14722, + [SMALL_STATE(770)] = 14783, + [SMALL_STATE(771)] = 14848, + [SMALL_STATE(772)] = 14913, + [SMALL_STATE(773)] = 14969, + [SMALL_STATE(774)] = 15025, + [SMALL_STATE(775)] = 15083, + [SMALL_STATE(776)] = 15141, + [SMALL_STATE(777)] = 15197, + [SMALL_STATE(778)] = 15255, + [SMALL_STATE(779)] = 15315, + [SMALL_STATE(780)] = 15373, + [SMALL_STATE(781)] = 15433, + [SMALL_STATE(782)] = 15493, + [SMALL_STATE(783)] = 15553, + [SMALL_STATE(784)] = 15615, + [SMALL_STATE(785)] = 15671, + [SMALL_STATE(786)] = 15727, + [SMALL_STATE(787)] = 15783, + [SMALL_STATE(788)] = 15840, + [SMALL_STATE(789)] = 15897, + [SMALL_STATE(790)] = 15952, + [SMALL_STATE(791)] = 16007, + [SMALL_STATE(792)] = 16064, + [SMALL_STATE(793)] = 16121, + [SMALL_STATE(794)] = 16180, + [SMALL_STATE(795)] = 16237, + [SMALL_STATE(796)] = 16294, + [SMALL_STATE(797)] = 16351, + [SMALL_STATE(798)] = 16408, + [SMALL_STATE(799)] = 16463, + [SMALL_STATE(800)] = 16518, + [SMALL_STATE(801)] = 16575, + [SMALL_STATE(802)] = 16630, + [SMALL_STATE(803)] = 16685, + [SMALL_STATE(804)] = 16740, + [SMALL_STATE(805)] = 16797, + [SMALL_STATE(806)] = 16856, + [SMALL_STATE(807)] = 16913, + [SMALL_STATE(808)] = 16968, + [SMALL_STATE(809)] = 17025, + [SMALL_STATE(810)] = 17082, + [SMALL_STATE(811)] = 17139, + [SMALL_STATE(812)] = 17196, + [SMALL_STATE(813)] = 17251, + [SMALL_STATE(814)] = 17306, + [SMALL_STATE(815)] = 17365, + [SMALL_STATE(816)] = 17420, + [SMALL_STATE(817)] = 17475, + [SMALL_STATE(818)] = 17530, + [SMALL_STATE(819)] = 17585, + [SMALL_STATE(820)] = 17639, + [SMALL_STATE(821)] = 17693, + [SMALL_STATE(822)] = 17747, + [SMALL_STATE(823)] = 17801, + [SMALL_STATE(824)] = 17855, + [SMALL_STATE(825)] = 17909, + [SMALL_STATE(826)] = 17963, + [SMALL_STATE(827)] = 18017, + [SMALL_STATE(828)] = 18071, + [SMALL_STATE(829)] = 18125, + [SMALL_STATE(830)] = 18181, + [SMALL_STATE(831)] = 18235, + [SMALL_STATE(832)] = 18289, + [SMALL_STATE(833)] = 18343, + [SMALL_STATE(834)] = 18397, + [SMALL_STATE(835)] = 18451, + [SMALL_STATE(836)] = 18505, + [SMALL_STATE(837)] = 18559, + [SMALL_STATE(838)] = 18613, + [SMALL_STATE(839)] = 18667, + [SMALL_STATE(840)] = 18721, + [SMALL_STATE(841)] = 18775, + [SMALL_STATE(842)] = 18829, + [SMALL_STATE(843)] = 18883, + [SMALL_STATE(844)] = 18937, + [SMALL_STATE(845)] = 18993, + [SMALL_STATE(846)] = 19047, + [SMALL_STATE(847)] = 19101, + [SMALL_STATE(848)] = 19155, + [SMALL_STATE(849)] = 19209, + [SMALL_STATE(850)] = 19263, + [SMALL_STATE(851)] = 19317, + [SMALL_STATE(852)] = 19371, + [SMALL_STATE(853)] = 19425, + [SMALL_STATE(854)] = 19479, + [SMALL_STATE(855)] = 19533, + [SMALL_STATE(856)] = 19587, + [SMALL_STATE(857)] = 19641, + [SMALL_STATE(858)] = 19695, + [SMALL_STATE(859)] = 19749, + [SMALL_STATE(860)] = 19803, + [SMALL_STATE(861)] = 19857, + [SMALL_STATE(862)] = 19911, + [SMALL_STATE(863)] = 19965, + [SMALL_STATE(864)] = 20019, + [SMALL_STATE(865)] = 20073, + [SMALL_STATE(866)] = 20127, + [SMALL_STATE(867)] = 20181, + [SMALL_STATE(868)] = 20235, + [SMALL_STATE(869)] = 20289, + [SMALL_STATE(870)] = 20343, + [SMALL_STATE(871)] = 20397, + [SMALL_STATE(872)] = 20451, + [SMALL_STATE(873)] = 20505, + [SMALL_STATE(874)] = 20559, + [SMALL_STATE(875)] = 20613, + [SMALL_STATE(876)] = 20667, + [SMALL_STATE(877)] = 20721, + [SMALL_STATE(878)] = 20775, + [SMALL_STATE(879)] = 20829, + [SMALL_STATE(880)] = 20883, + [SMALL_STATE(881)] = 20937, + [SMALL_STATE(882)] = 20991, + [SMALL_STATE(883)] = 21045, + [SMALL_STATE(884)] = 21099, + [SMALL_STATE(885)] = 21153, + [SMALL_STATE(886)] = 21207, + [SMALL_STATE(887)] = 21261, + [SMALL_STATE(888)] = 21315, + [SMALL_STATE(889)] = 21369, + [SMALL_STATE(890)] = 21423, + [SMALL_STATE(891)] = 21477, + [SMALL_STATE(892)] = 21531, + [SMALL_STATE(893)] = 21585, + [SMALL_STATE(894)] = 21639, + [SMALL_STATE(895)] = 21693, + [SMALL_STATE(896)] = 21747, + [SMALL_STATE(897)] = 21801, + [SMALL_STATE(898)] = 21855, + [SMALL_STATE(899)] = 21909, + [SMALL_STATE(900)] = 21963, + [SMALL_STATE(901)] = 22017, + [SMALL_STATE(902)] = 22071, + [SMALL_STATE(903)] = 22125, + [SMALL_STATE(904)] = 22179, + [SMALL_STATE(905)] = 22233, + [SMALL_STATE(906)] = 22287, + [SMALL_STATE(907)] = 22341, + [SMALL_STATE(908)] = 22395, + [SMALL_STATE(909)] = 22449, + [SMALL_STATE(910)] = 22503, + [SMALL_STATE(911)] = 22557, + [SMALL_STATE(912)] = 22611, + [SMALL_STATE(913)] = 22665, + [SMALL_STATE(914)] = 22719, + [SMALL_STATE(915)] = 22773, + [SMALL_STATE(916)] = 22827, + [SMALL_STATE(917)] = 22881, + [SMALL_STATE(918)] = 22935, + [SMALL_STATE(919)] = 22989, + [SMALL_STATE(920)] = 23043, + [SMALL_STATE(921)] = 23097, + [SMALL_STATE(922)] = 23151, + [SMALL_STATE(923)] = 23205, + [SMALL_STATE(924)] = 23259, + [SMALL_STATE(925)] = 23313, + [SMALL_STATE(926)] = 23367, + [SMALL_STATE(927)] = 23421, + [SMALL_STATE(928)] = 23475, + [SMALL_STATE(929)] = 23529, + [SMALL_STATE(930)] = 23583, + [SMALL_STATE(931)] = 23637, + [SMALL_STATE(932)] = 23691, + [SMALL_STATE(933)] = 23745, + [SMALL_STATE(934)] = 23799, + [SMALL_STATE(935)] = 23853, + [SMALL_STATE(936)] = 23907, + [SMALL_STATE(937)] = 23961, + [SMALL_STATE(938)] = 24015, + [SMALL_STATE(939)] = 24069, + [SMALL_STATE(940)] = 24123, + [SMALL_STATE(941)] = 24177, + [SMALL_STATE(942)] = 24231, + [SMALL_STATE(943)] = 24285, + [SMALL_STATE(944)] = 24339, + [SMALL_STATE(945)] = 24393, + [SMALL_STATE(946)] = 24447, + [SMALL_STATE(947)] = 24501, + [SMALL_STATE(948)] = 24555, + [SMALL_STATE(949)] = 24609, + [SMALL_STATE(950)] = 24663, + [SMALL_STATE(951)] = 24717, + [SMALL_STATE(952)] = 24771, + [SMALL_STATE(953)] = 24825, + [SMALL_STATE(954)] = 24879, + [SMALL_STATE(955)] = 24933, + [SMALL_STATE(956)] = 24987, + [SMALL_STATE(957)] = 25041, + [SMALL_STATE(958)] = 25095, + [SMALL_STATE(959)] = 25149, + [SMALL_STATE(960)] = 25203, + [SMALL_STATE(961)] = 25257, + [SMALL_STATE(962)] = 25311, + [SMALL_STATE(963)] = 25365, + [SMALL_STATE(964)] = 25419, + [SMALL_STATE(965)] = 25473, + [SMALL_STATE(966)] = 25527, + [SMALL_STATE(967)] = 25581, + [SMALL_STATE(968)] = 25635, + [SMALL_STATE(969)] = 25689, + [SMALL_STATE(970)] = 25743, + [SMALL_STATE(971)] = 25797, + [SMALL_STATE(972)] = 25851, + [SMALL_STATE(973)] = 25905, + [SMALL_STATE(974)] = 25959, + [SMALL_STATE(975)] = 26013, + [SMALL_STATE(976)] = 26067, + [SMALL_STATE(977)] = 26121, + [SMALL_STATE(978)] = 26175, + [SMALL_STATE(979)] = 26229, + [SMALL_STATE(980)] = 26283, + [SMALL_STATE(981)] = 26337, + [SMALL_STATE(982)] = 26391, + [SMALL_STATE(983)] = 26445, + [SMALL_STATE(984)] = 26499, + [SMALL_STATE(985)] = 26553, + [SMALL_STATE(986)] = 26607, + [SMALL_STATE(987)] = 26661, + [SMALL_STATE(988)] = 26715, + [SMALL_STATE(989)] = 26769, + [SMALL_STATE(990)] = 26823, + [SMALL_STATE(991)] = 26877, + [SMALL_STATE(992)] = 26931, + [SMALL_STATE(993)] = 26985, + [SMALL_STATE(994)] = 27039, + [SMALL_STATE(995)] = 27093, + [SMALL_STATE(996)] = 27147, + [SMALL_STATE(997)] = 27201, + [SMALL_STATE(998)] = 27255, + [SMALL_STATE(999)] = 27309, + [SMALL_STATE(1000)] = 27363, + [SMALL_STATE(1001)] = 27417, + [SMALL_STATE(1002)] = 27471, + [SMALL_STATE(1003)] = 27525, + [SMALL_STATE(1004)] = 27579, + [SMALL_STATE(1005)] = 27633, + [SMALL_STATE(1006)] = 27687, + [SMALL_STATE(1007)] = 27741, + [SMALL_STATE(1008)] = 27795, + [SMALL_STATE(1009)] = 27849, + [SMALL_STATE(1010)] = 27903, + [SMALL_STATE(1011)] = 27957, + [SMALL_STATE(1012)] = 28011, + [SMALL_STATE(1013)] = 28065, + [SMALL_STATE(1014)] = 28119, + [SMALL_STATE(1015)] = 28173, + [SMALL_STATE(1016)] = 28227, + [SMALL_STATE(1017)] = 28281, + [SMALL_STATE(1018)] = 28335, + [SMALL_STATE(1019)] = 28389, + [SMALL_STATE(1020)] = 28443, + [SMALL_STATE(1021)] = 28497, + [SMALL_STATE(1022)] = 28551, + [SMALL_STATE(1023)] = 28605, + [SMALL_STATE(1024)] = 28659, + [SMALL_STATE(1025)] = 28713, + [SMALL_STATE(1026)] = 28767, + [SMALL_STATE(1027)] = 28821, + [SMALL_STATE(1028)] = 28875, + [SMALL_STATE(1029)] = 28929, + [SMALL_STATE(1030)] = 28983, + [SMALL_STATE(1031)] = 29037, + [SMALL_STATE(1032)] = 29091, + [SMALL_STATE(1033)] = 29145, + [SMALL_STATE(1034)] = 29199, + [SMALL_STATE(1035)] = 29253, + [SMALL_STATE(1036)] = 29307, + [SMALL_STATE(1037)] = 29361, + [SMALL_STATE(1038)] = 29415, + [SMALL_STATE(1039)] = 29469, + [SMALL_STATE(1040)] = 29523, + [SMALL_STATE(1041)] = 29577, + [SMALL_STATE(1042)] = 29631, + [SMALL_STATE(1043)] = 29685, + [SMALL_STATE(1044)] = 29739, + [SMALL_STATE(1045)] = 29793, + [SMALL_STATE(1046)] = 29847, + [SMALL_STATE(1047)] = 29901, + [SMALL_STATE(1048)] = 29955, + [SMALL_STATE(1049)] = 30009, + [SMALL_STATE(1050)] = 30063, + [SMALL_STATE(1051)] = 30117, + [SMALL_STATE(1052)] = 30171, + [SMALL_STATE(1053)] = 30225, + [SMALL_STATE(1054)] = 30279, + [SMALL_STATE(1055)] = 30333, + [SMALL_STATE(1056)] = 30387, + [SMALL_STATE(1057)] = 30441, + [SMALL_STATE(1058)] = 30495, + [SMALL_STATE(1059)] = 30549, + [SMALL_STATE(1060)] = 30603, + [SMALL_STATE(1061)] = 30657, + [SMALL_STATE(1062)] = 30711, + [SMALL_STATE(1063)] = 30765, + [SMALL_STATE(1064)] = 30819, + [SMALL_STATE(1065)] = 30873, + [SMALL_STATE(1066)] = 30927, + [SMALL_STATE(1067)] = 30981, + [SMALL_STATE(1068)] = 31035, + [SMALL_STATE(1069)] = 31089, + [SMALL_STATE(1070)] = 31143, + [SMALL_STATE(1071)] = 31197, + [SMALL_STATE(1072)] = 31251, + [SMALL_STATE(1073)] = 31305, + [SMALL_STATE(1074)] = 31359, + [SMALL_STATE(1075)] = 31413, + [SMALL_STATE(1076)] = 31467, + [SMALL_STATE(1077)] = 31521, + [SMALL_STATE(1078)] = 31575, + [SMALL_STATE(1079)] = 31629, + [SMALL_STATE(1080)] = 31683, + [SMALL_STATE(1081)] = 31737, + [SMALL_STATE(1082)] = 31791, + [SMALL_STATE(1083)] = 31845, + [SMALL_STATE(1084)] = 31899, + [SMALL_STATE(1085)] = 31953, + [SMALL_STATE(1086)] = 32007, + [SMALL_STATE(1087)] = 32061, + [SMALL_STATE(1088)] = 32115, + [SMALL_STATE(1089)] = 32169, + [SMALL_STATE(1090)] = 32223, + [SMALL_STATE(1091)] = 32277, + [SMALL_STATE(1092)] = 32331, + [SMALL_STATE(1093)] = 32385, + [SMALL_STATE(1094)] = 32439, + [SMALL_STATE(1095)] = 32493, + [SMALL_STATE(1096)] = 32547, + [SMALL_STATE(1097)] = 32601, + [SMALL_STATE(1098)] = 32655, + [SMALL_STATE(1099)] = 32709, + [SMALL_STATE(1100)] = 32763, + [SMALL_STATE(1101)] = 32817, + [SMALL_STATE(1102)] = 32871, + [SMALL_STATE(1103)] = 32925, + [SMALL_STATE(1104)] = 32979, + [SMALL_STATE(1105)] = 33033, + [SMALL_STATE(1106)] = 33087, + [SMALL_STATE(1107)] = 33141, + [SMALL_STATE(1108)] = 33195, + [SMALL_STATE(1109)] = 33249, + [SMALL_STATE(1110)] = 33303, + [SMALL_STATE(1111)] = 33357, + [SMALL_STATE(1112)] = 33411, + [SMALL_STATE(1113)] = 33465, + [SMALL_STATE(1114)] = 33519, + [SMALL_STATE(1115)] = 33573, + [SMALL_STATE(1116)] = 33627, + [SMALL_STATE(1117)] = 33681, + [SMALL_STATE(1118)] = 33735, + [SMALL_STATE(1119)] = 33789, + [SMALL_STATE(1120)] = 33843, + [SMALL_STATE(1121)] = 33897, + [SMALL_STATE(1122)] = 33951, + [SMALL_STATE(1123)] = 34005, + [SMALL_STATE(1124)] = 34059, + [SMALL_STATE(1125)] = 34113, + [SMALL_STATE(1126)] = 34167, + [SMALL_STATE(1127)] = 34221, + [SMALL_STATE(1128)] = 34275, + [SMALL_STATE(1129)] = 34329, + [SMALL_STATE(1130)] = 34383, + [SMALL_STATE(1131)] = 34437, + [SMALL_STATE(1132)] = 34491, + [SMALL_STATE(1133)] = 34545, + [SMALL_STATE(1134)] = 34599, + [SMALL_STATE(1135)] = 34653, + [SMALL_STATE(1136)] = 34707, + [SMALL_STATE(1137)] = 34761, + [SMALL_STATE(1138)] = 34815, + [SMALL_STATE(1139)] = 34869, + [SMALL_STATE(1140)] = 34923, + [SMALL_STATE(1141)] = 34980, + [SMALL_STATE(1142)] = 35063, + [SMALL_STATE(1143)] = 35124, + [SMALL_STATE(1144)] = 35177, + [SMALL_STATE(1145)] = 35260, + [SMALL_STATE(1146)] = 35313, + [SMALL_STATE(1147)] = 35366, + [SMALL_STATE(1148)] = 35453, + [SMALL_STATE(1149)] = 35506, + [SMALL_STATE(1150)] = 35589, + [SMALL_STATE(1151)] = 35644, + [SMALL_STATE(1152)] = 35727, + [SMALL_STATE(1153)] = 35816, + [SMALL_STATE(1154)] = 35905, + [SMALL_STATE(1155)] = 35988, + [SMALL_STATE(1156)] = 36049, + [SMALL_STATE(1157)] = 36124, + [SMALL_STATE(1158)] = 36207, + [SMALL_STATE(1159)] = 36260, + [SMALL_STATE(1160)] = 36323, + [SMALL_STATE(1161)] = 36376, + [SMALL_STATE(1162)] = 36441, + [SMALL_STATE(1163)] = 36502, + [SMALL_STATE(1164)] = 36581, + [SMALL_STATE(1165)] = 36662, + [SMALL_STATE(1166)] = 36731, + [SMALL_STATE(1167)] = 36786, + [SMALL_STATE(1168)] = 36853, + [SMALL_STATE(1169)] = 36924, + [SMALL_STATE(1170)] = 37011, + [SMALL_STATE(1171)] = 37084, + [SMALL_STATE(1172)] = 37136, + [SMALL_STATE(1173)] = 37188, + [SMALL_STATE(1174)] = 37248, + [SMALL_STATE(1175)] = 37299, + [SMALL_STATE(1176)] = 37350, + [SMALL_STATE(1177)] = 37435, + [SMALL_STATE(1178)] = 37492, + [SMALL_STATE(1179)] = 37579, + [SMALL_STATE(1180)] = 37664, + [SMALL_STATE(1181)] = 37751, + [SMALL_STATE(1182)] = 37838, + [SMALL_STATE(1183)] = 37925, + [SMALL_STATE(1184)] = 37979, + [SMALL_STATE(1185)] = 38035, + [SMALL_STATE(1186)] = 38111, + [SMALL_STATE(1187)] = 38187, + [SMALL_STATE(1188)] = 38236, + [SMALL_STATE(1189)] = 38285, + [SMALL_STATE(1190)] = 38374, + [SMALL_STATE(1191)] = 38427, + [SMALL_STATE(1192)] = 38476, + [SMALL_STATE(1193)] = 38529, + [SMALL_STATE(1194)] = 38578, + [SMALL_STATE(1195)] = 38627, + [SMALL_STATE(1196)] = 38676, + [SMALL_STATE(1197)] = 38727, + [SMALL_STATE(1198)] = 38776, + [SMALL_STATE(1199)] = 38865, + [SMALL_STATE(1200)] = 38914, + [SMALL_STATE(1201)] = 38965, + [SMALL_STATE(1202)] = 39014, + [SMALL_STATE(1203)] = 39064, + [SMALL_STATE(1204)] = 39114, + [SMALL_STATE(1205)] = 39200, + [SMALL_STATE(1206)] = 39278, + [SMALL_STATE(1207)] = 39328, + [SMALL_STATE(1208)] = 39378, + [SMALL_STATE(1209)] = 39456, + [SMALL_STATE(1210)] = 39542, + [SMALL_STATE(1211)] = 39625, + [SMALL_STATE(1212)] = 39708, + [SMALL_STATE(1213)] = 39771, + [SMALL_STATE(1214)] = 39854, + [SMALL_STATE(1215)] = 39935, + [SMALL_STATE(1216)] = 40008, + [SMALL_STATE(1217)] = 40083, + [SMALL_STATE(1218)] = 40150, + [SMALL_STATE(1219)] = 40215, + [SMALL_STATE(1220)] = 40276, + [SMALL_STATE(1221)] = 40353, + [SMALL_STATE(1222)] = 40436, + [SMALL_STATE(1223)] = 40519, + [SMALL_STATE(1224)] = 40602, + [SMALL_STATE(1225)] = 40657, + [SMALL_STATE(1226)] = 40734, + [SMALL_STATE(1227)] = 40817, + [SMALL_STATE(1228)] = 40900, + [SMALL_STATE(1229)] = 40981, + [SMALL_STATE(1230)] = 41062, + [SMALL_STATE(1231)] = 41143, + [SMALL_STATE(1232)] = 41226, + [SMALL_STATE(1233)] = 41307, + [SMALL_STATE(1234)] = 41384, + [SMALL_STATE(1235)] = 41439, + [SMALL_STATE(1236)] = 41516, + [SMALL_STATE(1237)] = 41597, + [SMALL_STATE(1238)] = 41680, + [SMALL_STATE(1239)] = 41763, + [SMALL_STATE(1240)] = 41818, + [SMALL_STATE(1241)] = 41875, + [SMALL_STATE(1242)] = 41958, + [SMALL_STATE(1243)] = 42041, + [SMALL_STATE(1244)] = 42110, + [SMALL_STATE(1245)] = 42193, + [SMALL_STATE(1246)] = 42276, + [SMALL_STATE(1247)] = 42359, + [SMALL_STATE(1248)] = 42436, + [SMALL_STATE(1249)] = 42519, + [SMALL_STATE(1250)] = 42578, + [SMALL_STATE(1251)] = 42661, + [SMALL_STATE(1252)] = 42738, + [SMALL_STATE(1253)] = 42819, + [SMALL_STATE(1254)] = 42902, + [SMALL_STATE(1255)] = 42985, + [SMALL_STATE(1256)] = 43068, + [SMALL_STATE(1257)] = 43149, + [SMALL_STATE(1258)] = 43232, + [SMALL_STATE(1259)] = 43315, + [SMALL_STATE(1260)] = 43398, + [SMALL_STATE(1261)] = 43479, + [SMALL_STATE(1262)] = 43562, + [SMALL_STATE(1263)] = 43645, + [SMALL_STATE(1264)] = 43726, + [SMALL_STATE(1265)] = 43807, + [SMALL_STATE(1266)] = 43890, + [SMALL_STATE(1267)] = 43973, + [SMALL_STATE(1268)] = 44056, + [SMALL_STATE(1269)] = 44139, + [SMALL_STATE(1270)] = 44222, + [SMALL_STATE(1271)] = 44303, + [SMALL_STATE(1272)] = 44386, + [SMALL_STATE(1273)] = 44469, + [SMALL_STATE(1274)] = 44552, + [SMALL_STATE(1275)] = 44635, + [SMALL_STATE(1276)] = 44706, + [SMALL_STATE(1277)] = 44786, + [SMALL_STATE(1278)] = 44866, + [SMALL_STATE(1279)] = 44946, + [SMALL_STATE(1280)] = 45026, + [SMALL_STATE(1281)] = 45106, + [SMALL_STATE(1282)] = 45186, + [SMALL_STATE(1283)] = 45264, + [SMALL_STATE(1284)] = 45344, + [SMALL_STATE(1285)] = 45424, + [SMALL_STATE(1286)] = 45504, + [SMALL_STATE(1287)] = 45584, + [SMALL_STATE(1288)] = 45662, + [SMALL_STATE(1289)] = 45742, + [SMALL_STATE(1290)] = 45822, + [SMALL_STATE(1291)] = 45902, + [SMALL_STATE(1292)] = 45982, + [SMALL_STATE(1293)] = 46062, + [SMALL_STATE(1294)] = 46142, + [SMALL_STATE(1295)] = 46222, + [SMALL_STATE(1296)] = 46302, + [SMALL_STATE(1297)] = 46382, + [SMALL_STATE(1298)] = 46450, + [SMALL_STATE(1299)] = 46528, + [SMALL_STATE(1300)] = 46608, + [SMALL_STATE(1301)] = 46688, + [SMALL_STATE(1302)] = 46768, + [SMALL_STATE(1303)] = 46848, + [SMALL_STATE(1304)] = 46928, + [SMALL_STATE(1305)] = 47008, + [SMALL_STATE(1306)] = 47088, + [SMALL_STATE(1307)] = 47156, + [SMALL_STATE(1308)] = 47234, + [SMALL_STATE(1309)] = 47299, + [SMALL_STATE(1310)] = 47364, + [SMALL_STATE(1311)] = 47429, + [SMALL_STATE(1312)] = 47494, + [SMALL_STATE(1313)] = 47559, + [SMALL_STATE(1314)] = 47599, + [SMALL_STATE(1315)] = 47639, + [SMALL_STATE(1316)] = 47679, + [SMALL_STATE(1317)] = 47734, + [SMALL_STATE(1318)] = 47789, + [SMALL_STATE(1319)] = 47844, + [SMALL_STATE(1320)] = 47899, + [SMALL_STATE(1321)] = 47954, + [SMALL_STATE(1322)] = 48009, + [SMALL_STATE(1323)] = 48064, + [SMALL_STATE(1324)] = 48116, + [SMALL_STATE(1325)] = 48168, + [SMALL_STATE(1326)] = 48199, + [SMALL_STATE(1327)] = 48230, + [SMALL_STATE(1328)] = 48276, + [SMALL_STATE(1329)] = 48317, + [SMALL_STATE(1330)] = 48347, + [SMALL_STATE(1331)] = 48377, + [SMALL_STATE(1332)] = 48407, + [SMALL_STATE(1333)] = 48437, + [SMALL_STATE(1334)] = 48467, + [SMALL_STATE(1335)] = 48497, + [SMALL_STATE(1336)] = 48527, + [SMALL_STATE(1337)] = 48565, + [SMALL_STATE(1338)] = 48595, + [SMALL_STATE(1339)] = 48633, + [SMALL_STATE(1340)] = 48666, + [SMALL_STATE(1341)] = 48699, + [SMALL_STATE(1342)] = 48726, + [SMALL_STATE(1343)] = 48753, + [SMALL_STATE(1344)] = 48780, + [SMALL_STATE(1345)] = 48813, + [SMALL_STATE(1346)] = 48839, + [SMALL_STATE(1347)] = 48865, + [SMALL_STATE(1348)] = 48891, + [SMALL_STATE(1349)] = 48945, + [SMALL_STATE(1350)] = 48971, + [SMALL_STATE(1351)] = 48995, + [SMALL_STATE(1352)] = 49029, + [SMALL_STATE(1353)] = 49083, + [SMALL_STATE(1354)] = 49108, + [SMALL_STATE(1355)] = 49139, + [SMALL_STATE(1356)] = 49164, + [SMALL_STATE(1357)] = 49189, + [SMALL_STATE(1358)] = 49212, + [SMALL_STATE(1359)] = 49237, + [SMALL_STATE(1360)] = 49262, + [SMALL_STATE(1361)] = 49287, + [SMALL_STATE(1362)] = 49311, + [SMALL_STATE(1363)] = 49337, + [SMALL_STATE(1364)] = 49363, + [SMALL_STATE(1365)] = 49409, + [SMALL_STATE(1366)] = 49433, + [SMALL_STATE(1367)] = 49455, + [SMALL_STATE(1368)] = 49477, + [SMALL_STATE(1369)] = 49499, + [SMALL_STATE(1370)] = 49521, + [SMALL_STATE(1371)] = 49545, + [SMALL_STATE(1372)] = 49569, + [SMALL_STATE(1373)] = 49593, + [SMALL_STATE(1374)] = 49637, + [SMALL_STATE(1375)] = 49663, + [SMALL_STATE(1376)] = 49689, + [SMALL_STATE(1377)] = 49733, + [SMALL_STATE(1378)] = 49761, + [SMALL_STATE(1379)] = 49785, + [SMALL_STATE(1380)] = 49809, + [SMALL_STATE(1381)] = 49831, + [SMALL_STATE(1382)] = 49853, + [SMALL_STATE(1383)] = 49877, + [SMALL_STATE(1384)] = 49901, + [SMALL_STATE(1385)] = 49923, + [SMALL_STATE(1386)] = 49949, + [SMALL_STATE(1387)] = 49971, + [SMALL_STATE(1388)] = 49995, + [SMALL_STATE(1389)] = 50016, + [SMALL_STATE(1390)] = 50037, + [SMALL_STATE(1391)] = 50058, + [SMALL_STATE(1392)] = 50081, + [SMALL_STATE(1393)] = 50106, + [SMALL_STATE(1394)] = 50127, + [SMALL_STATE(1395)] = 50148, + [SMALL_STATE(1396)] = 50169, + [SMALL_STATE(1397)] = 50190, + [SMALL_STATE(1398)] = 50211, + [SMALL_STATE(1399)] = 50232, + [SMALL_STATE(1400)] = 50253, + [SMALL_STATE(1401)] = 50298, + [SMALL_STATE(1402)] = 50319, + [SMALL_STATE(1403)] = 50340, + [SMALL_STATE(1404)] = 50361, + [SMALL_STATE(1405)] = 50382, + [SMALL_STATE(1406)] = 50403, + [SMALL_STATE(1407)] = 50424, + [SMALL_STATE(1408)] = 50445, + [SMALL_STATE(1409)] = 50466, + [SMALL_STATE(1410)] = 50487, + [SMALL_STATE(1411)] = 50508, + [SMALL_STATE(1412)] = 50531, + [SMALL_STATE(1413)] = 50552, + [SMALL_STATE(1414)] = 50577, + [SMALL_STATE(1415)] = 50598, + [SMALL_STATE(1416)] = 50621, + [SMALL_STATE(1417)] = 50652, + [SMALL_STATE(1418)] = 50673, + [SMALL_STATE(1419)] = 50697, + [SMALL_STATE(1420)] = 50721, + [SMALL_STATE(1421)] = 50745, + [SMALL_STATE(1422)] = 50769, + [SMALL_STATE(1423)] = 50793, + [SMALL_STATE(1424)] = 50817, + [SMALL_STATE(1425)] = 50841, + [SMALL_STATE(1426)] = 50869, + [SMALL_STATE(1427)] = 50893, + [SMALL_STATE(1428)] = 50915, + [SMALL_STATE(1429)] = 50937, + [SMALL_STATE(1430)] = 50959, + [SMALL_STATE(1431)] = 50984, + [SMALL_STATE(1432)] = 51005, + [SMALL_STATE(1433)] = 51026, + [SMALL_STATE(1434)] = 51049, + [SMALL_STATE(1435)] = 51074, + [SMALL_STATE(1436)] = 51099, + [SMALL_STATE(1437)] = 51124, + [SMALL_STATE(1438)] = 51145, + [SMALL_STATE(1439)] = 51170, + [SMALL_STATE(1440)] = 51191, + [SMALL_STATE(1441)] = 51212, + [SMALL_STATE(1442)] = 51233, + [SMALL_STATE(1443)] = 51258, + [SMALL_STATE(1444)] = 51283, + [SMALL_STATE(1445)] = 51304, + [SMALL_STATE(1446)] = 51325, + [SMALL_STATE(1447)] = 51350, + [SMALL_STATE(1448)] = 51371, + [SMALL_STATE(1449)] = 51392, + [SMALL_STATE(1450)] = 51413, + [SMALL_STATE(1451)] = 51434, + [SMALL_STATE(1452)] = 51455, + [SMALL_STATE(1453)] = 51476, + [SMALL_STATE(1454)] = 51505, + [SMALL_STATE(1455)] = 51528, + [SMALL_STATE(1456)] = 51551, + [SMALL_STATE(1457)] = 51574, + [SMALL_STATE(1458)] = 51595, + [SMALL_STATE(1459)] = 51616, + [SMALL_STATE(1460)] = 51637, + [SMALL_STATE(1461)] = 51658, + [SMALL_STATE(1462)] = 51679, + [SMALL_STATE(1463)] = 51700, + [SMALL_STATE(1464)] = 51721, + [SMALL_STATE(1465)] = 51742, + [SMALL_STATE(1466)] = 51763, + [SMALL_STATE(1467)] = 51784, + [SMALL_STATE(1468)] = 51805, + [SMALL_STATE(1469)] = 51826, + [SMALL_STATE(1470)] = 51847, + [SMALL_STATE(1471)] = 51868, + [SMALL_STATE(1472)] = 51889, + [SMALL_STATE(1473)] = 51910, + [SMALL_STATE(1474)] = 51931, + [SMALL_STATE(1475)] = 51963, + [SMALL_STATE(1476)] = 51995, + [SMALL_STATE(1477)] = 52027, + [SMALL_STATE(1478)] = 52059, + [SMALL_STATE(1479)] = 52083, + [SMALL_STATE(1480)] = 52115, + [SMALL_STATE(1481)] = 52139, + [SMALL_STATE(1482)] = 52171, + [SMALL_STATE(1483)] = 52203, + [SMALL_STATE(1484)] = 52227, + [SMALL_STATE(1485)] = 52259, + [SMALL_STATE(1486)] = 52283, + [SMALL_STATE(1487)] = 52312, + [SMALL_STATE(1488)] = 52345, + [SMALL_STATE(1489)] = 52372, + [SMALL_STATE(1490)] = 52405, + [SMALL_STATE(1491)] = 52438, + [SMALL_STATE(1492)] = 52469, + [SMALL_STATE(1493)] = 52502, + [SMALL_STATE(1494)] = 52527, + [SMALL_STATE(1495)] = 52557, + [SMALL_STATE(1496)] = 52587, + [SMALL_STATE(1497)] = 52619, + [SMALL_STATE(1498)] = 52641, + [SMALL_STATE(1499)] = 52671, + [SMALL_STATE(1500)] = 52701, + [SMALL_STATE(1501)] = 52731, + [SMALL_STATE(1502)] = 52761, + [SMALL_STATE(1503)] = 52783, + [SMALL_STATE(1504)] = 52813, + [SMALL_STATE(1505)] = 52839, + [SMALL_STATE(1506)] = 52869, + [SMALL_STATE(1507)] = 52899, + [SMALL_STATE(1508)] = 52929, + [SMALL_STATE(1509)] = 52959, + [SMALL_STATE(1510)] = 52989, + [SMALL_STATE(1511)] = 53021, + [SMALL_STATE(1512)] = 53047, + [SMALL_STATE(1513)] = 53073, + [SMALL_STATE(1514)] = 53095, + [SMALL_STATE(1515)] = 53121, + [SMALL_STATE(1516)] = 53151, + [SMALL_STATE(1517)] = 53181, + [SMALL_STATE(1518)] = 53213, + [SMALL_STATE(1519)] = 53239, + [SMALL_STATE(1520)] = 53269, + [SMALL_STATE(1521)] = 53299, + [SMALL_STATE(1522)] = 53325, + [SMALL_STATE(1523)] = 53351, + [SMALL_STATE(1524)] = 53373, + [SMALL_STATE(1525)] = 53399, + [SMALL_STATE(1526)] = 53429, + [SMALL_STATE(1527)] = 53459, + [SMALL_STATE(1528)] = 53485, + [SMALL_STATE(1529)] = 53511, + [SMALL_STATE(1530)] = 53541, + [SMALL_STATE(1531)] = 53571, + [SMALL_STATE(1532)] = 53593, + [SMALL_STATE(1533)] = 53623, + [SMALL_STATE(1534)] = 53649, + [SMALL_STATE(1535)] = 53681, + [SMALL_STATE(1536)] = 53703, + [SMALL_STATE(1537)] = 53726, + [SMALL_STATE(1538)] = 53745, + [SMALL_STATE(1539)] = 53772, + [SMALL_STATE(1540)] = 53799, + [SMALL_STATE(1541)] = 53822, + [SMALL_STATE(1542)] = 53849, + [SMALL_STATE(1543)] = 53876, + [SMALL_STATE(1544)] = 53903, + [SMALL_STATE(1545)] = 53930, + [SMALL_STATE(1546)] = 53957, + [SMALL_STATE(1547)] = 53984, + [SMALL_STATE(1548)] = 54013, + [SMALL_STATE(1549)] = 54036, + [SMALL_STATE(1550)] = 54055, + [SMALL_STATE(1551)] = 54082, + [SMALL_STATE(1552)] = 54101, + [SMALL_STATE(1553)] = 54130, + [SMALL_STATE(1554)] = 54149, + [SMALL_STATE(1555)] = 54176, + [SMALL_STATE(1556)] = 54195, + [SMALL_STATE(1557)] = 54216, + [SMALL_STATE(1558)] = 54235, + [SMALL_STATE(1559)] = 54264, + [SMALL_STATE(1560)] = 54293, + [SMALL_STATE(1561)] = 54314, + [SMALL_STATE(1562)] = 54333, + [SMALL_STATE(1563)] = 54360, + [SMALL_STATE(1564)] = 54383, + [SMALL_STATE(1565)] = 54410, + [SMALL_STATE(1566)] = 54425, + [SMALL_STATE(1567)] = 54444, + [SMALL_STATE(1568)] = 54471, + [SMALL_STATE(1569)] = 54496, + [SMALL_STATE(1570)] = 54515, + [SMALL_STATE(1571)] = 54538, + [SMALL_STATE(1572)] = 54565, + [SMALL_STATE(1573)] = 54584, + [SMALL_STATE(1574)] = 54603, + [SMALL_STATE(1575)] = 54630, + [SMALL_STATE(1576)] = 54659, + [SMALL_STATE(1577)] = 54688, + [SMALL_STATE(1578)] = 54714, + [SMALL_STATE(1579)] = 54740, + [SMALL_STATE(1580)] = 54766, + [SMALL_STATE(1581)] = 54792, + [SMALL_STATE(1582)] = 54806, + [SMALL_STATE(1583)] = 54832, + [SMALL_STATE(1584)] = 54858, + [SMALL_STATE(1585)] = 54884, + [SMALL_STATE(1586)] = 54904, + [SMALL_STATE(1587)] = 54930, + [SMALL_STATE(1588)] = 54944, + [SMALL_STATE(1589)] = 54958, + [SMALL_STATE(1590)] = 54984, + [SMALL_STATE(1591)] = 54998, + [SMALL_STATE(1592)] = 55012, + [SMALL_STATE(1593)] = 55038, + [SMALL_STATE(1594)] = 55064, + [SMALL_STATE(1595)] = 55088, + [SMALL_STATE(1596)] = 55114, + [SMALL_STATE(1597)] = 55130, + [SMALL_STATE(1598)] = 55154, + [SMALL_STATE(1599)] = 55170, + [SMALL_STATE(1600)] = 55186, + [SMALL_STATE(1601)] = 55210, + [SMALL_STATE(1602)] = 55224, + [SMALL_STATE(1603)] = 55250, + [SMALL_STATE(1604)] = 55276, + [SMALL_STATE(1605)] = 55302, + [SMALL_STATE(1606)] = 55326, + [SMALL_STATE(1607)] = 55340, + [SMALL_STATE(1608)] = 55356, + [SMALL_STATE(1609)] = 55382, + [SMALL_STATE(1610)] = 55406, + [SMALL_STATE(1611)] = 55432, + [SMALL_STATE(1612)] = 55458, + [SMALL_STATE(1613)] = 55474, + [SMALL_STATE(1614)] = 55500, + [SMALL_STATE(1615)] = 55526, + [SMALL_STATE(1616)] = 55542, + [SMALL_STATE(1617)] = 55568, + [SMALL_STATE(1618)] = 55590, + [SMALL_STATE(1619)] = 55606, + [SMALL_STATE(1620)] = 55632, + [SMALL_STATE(1621)] = 55654, + [SMALL_STATE(1622)] = 55680, + [SMALL_STATE(1623)] = 55706, + [SMALL_STATE(1624)] = 55722, + [SMALL_STATE(1625)] = 55745, + [SMALL_STATE(1626)] = 55768, + [SMALL_STATE(1627)] = 55789, + [SMALL_STATE(1628)] = 55812, + [SMALL_STATE(1629)] = 55831, + [SMALL_STATE(1630)] = 55854, + [SMALL_STATE(1631)] = 55877, + [SMALL_STATE(1632)] = 55900, + [SMALL_STATE(1633)] = 55917, + [SMALL_STATE(1634)] = 55940, + [SMALL_STATE(1635)] = 55963, + [SMALL_STATE(1636)] = 55986, + [SMALL_STATE(1637)] = 56001, + [SMALL_STATE(1638)] = 56024, + [SMALL_STATE(1639)] = 56047, + [SMALL_STATE(1640)] = 56070, + [SMALL_STATE(1641)] = 56093, + [SMALL_STATE(1642)] = 56116, + [SMALL_STATE(1643)] = 56139, + [SMALL_STATE(1644)] = 56162, + [SMALL_STATE(1645)] = 56185, + [SMALL_STATE(1646)] = 56208, + [SMALL_STATE(1647)] = 56231, + [SMALL_STATE(1648)] = 56254, + [SMALL_STATE(1649)] = 56277, + [SMALL_STATE(1650)] = 56294, + [SMALL_STATE(1651)] = 56311, + [SMALL_STATE(1652)] = 56328, + [SMALL_STATE(1653)] = 56351, + [SMALL_STATE(1654)] = 56374, + [SMALL_STATE(1655)] = 56393, + [SMALL_STATE(1656)] = 56410, + [SMALL_STATE(1657)] = 56427, + [SMALL_STATE(1658)] = 56450, + [SMALL_STATE(1659)] = 56473, + [SMALL_STATE(1660)] = 56496, + [SMALL_STATE(1661)] = 56519, + [SMALL_STATE(1662)] = 56542, + [SMALL_STATE(1663)] = 56565, + [SMALL_STATE(1664)] = 56588, + [SMALL_STATE(1665)] = 56605, + [SMALL_STATE(1666)] = 56628, + [SMALL_STATE(1667)] = 56651, + [SMALL_STATE(1668)] = 56674, + [SMALL_STATE(1669)] = 56697, + [SMALL_STATE(1670)] = 56714, + [SMALL_STATE(1671)] = 56737, + [SMALL_STATE(1672)] = 56758, + [SMALL_STATE(1673)] = 56781, + [SMALL_STATE(1674)] = 56804, + [SMALL_STATE(1675)] = 56827, + [SMALL_STATE(1676)] = 56844, + [SMALL_STATE(1677)] = 56867, + [SMALL_STATE(1678)] = 56890, + [SMALL_STATE(1679)] = 56913, + [SMALL_STATE(1680)] = 56936, + [SMALL_STATE(1681)] = 56959, + [SMALL_STATE(1682)] = 56982, + [SMALL_STATE(1683)] = 57005, + [SMALL_STATE(1684)] = 57028, + [SMALL_STATE(1685)] = 57051, + [SMALL_STATE(1686)] = 57074, + [SMALL_STATE(1687)] = 57097, + [SMALL_STATE(1688)] = 57120, + [SMALL_STATE(1689)] = 57137, + [SMALL_STATE(1690)] = 57160, + [SMALL_STATE(1691)] = 57183, + [SMALL_STATE(1692)] = 57206, + [SMALL_STATE(1693)] = 57229, + [SMALL_STATE(1694)] = 57252, + [SMALL_STATE(1695)] = 57269, + [SMALL_STATE(1696)] = 57292, + [SMALL_STATE(1697)] = 57315, + [SMALL_STATE(1698)] = 57338, + [SMALL_STATE(1699)] = 57361, + [SMALL_STATE(1700)] = 57384, + [SMALL_STATE(1701)] = 57405, + [SMALL_STATE(1702)] = 57428, + [SMALL_STATE(1703)] = 57451, + [SMALL_STATE(1704)] = 57468, + [SMALL_STATE(1705)] = 57491, + [SMALL_STATE(1706)] = 57506, + [SMALL_STATE(1707)] = 57529, + [SMALL_STATE(1708)] = 57546, + [SMALL_STATE(1709)] = 57563, + [SMALL_STATE(1710)] = 57586, + [SMALL_STATE(1711)] = 57609, + [SMALL_STATE(1712)] = 57628, + [SMALL_STATE(1713)] = 57651, + [SMALL_STATE(1714)] = 57668, + [SMALL_STATE(1715)] = 57691, + [SMALL_STATE(1716)] = 57714, + [SMALL_STATE(1717)] = 57737, + [SMALL_STATE(1718)] = 57749, + [SMALL_STATE(1719)] = 57761, + [SMALL_STATE(1720)] = 57777, + [SMALL_STATE(1721)] = 57797, + [SMALL_STATE(1722)] = 57809, + [SMALL_STATE(1723)] = 57823, + [SMALL_STATE(1724)] = 57837, + [SMALL_STATE(1725)] = 57853, + [SMALL_STATE(1726)] = 57869, + [SMALL_STATE(1727)] = 57887, + [SMALL_STATE(1728)] = 57899, + [SMALL_STATE(1729)] = 57919, + [SMALL_STATE(1730)] = 57935, + [SMALL_STATE(1731)] = 57951, + [SMALL_STATE(1732)] = 57967, + [SMALL_STATE(1733)] = 57979, + [SMALL_STATE(1734)] = 57991, + [SMALL_STATE(1735)] = 58003, + [SMALL_STATE(1736)] = 58019, + [SMALL_STATE(1737)] = 58035, + [SMALL_STATE(1738)] = 58051, + [SMALL_STATE(1739)] = 58071, + [SMALL_STATE(1740)] = 58083, + [SMALL_STATE(1741)] = 58095, + [SMALL_STATE(1742)] = 58111, + [SMALL_STATE(1743)] = 58131, + [SMALL_STATE(1744)] = 58143, + [SMALL_STATE(1745)] = 58155, + [SMALL_STATE(1746)] = 58173, + [SMALL_STATE(1747)] = 58189, + [SMALL_STATE(1748)] = 58201, + [SMALL_STATE(1749)] = 58213, + [SMALL_STATE(1750)] = 58231, + [SMALL_STATE(1751)] = 58243, + [SMALL_STATE(1752)] = 58255, + [SMALL_STATE(1753)] = 58269, + [SMALL_STATE(1754)] = 58289, + [SMALL_STATE(1755)] = 58301, + [SMALL_STATE(1756)] = 58321, + [SMALL_STATE(1757)] = 58333, + [SMALL_STATE(1758)] = 58351, + [SMALL_STATE(1759)] = 58363, + [SMALL_STATE(1760)] = 58375, + [SMALL_STATE(1761)] = 58395, + [SMALL_STATE(1762)] = 58413, + [SMALL_STATE(1763)] = 58429, + [SMALL_STATE(1764)] = 58449, + [SMALL_STATE(1765)] = 58469, + [SMALL_STATE(1766)] = 58489, + [SMALL_STATE(1767)] = 58501, + [SMALL_STATE(1768)] = 58519, + [SMALL_STATE(1769)] = 58531, + [SMALL_STATE(1770)] = 58548, + [SMALL_STATE(1771)] = 58565, + [SMALL_STATE(1772)] = 58580, + [SMALL_STATE(1773)] = 58597, + [SMALL_STATE(1774)] = 58614, + [SMALL_STATE(1775)] = 58631, + [SMALL_STATE(1776)] = 58648, + [SMALL_STATE(1777)] = 58661, + [SMALL_STATE(1778)] = 58678, + [SMALL_STATE(1779)] = 58693, + [SMALL_STATE(1780)] = 58710, + [SMALL_STATE(1781)] = 58723, + [SMALL_STATE(1782)] = 58740, + [SMALL_STATE(1783)] = 58757, + [SMALL_STATE(1784)] = 58774, + [SMALL_STATE(1785)] = 58787, + [SMALL_STATE(1786)] = 58804, + [SMALL_STATE(1787)] = 58819, + [SMALL_STATE(1788)] = 58836, + [SMALL_STATE(1789)] = 58851, + [SMALL_STATE(1790)] = 58868, + [SMALL_STATE(1791)] = 58885, + [SMALL_STATE(1792)] = 58900, + [SMALL_STATE(1793)] = 58917, + [SMALL_STATE(1794)] = 58934, + [SMALL_STATE(1795)] = 58951, + [SMALL_STATE(1796)] = 58968, + [SMALL_STATE(1797)] = 58985, + [SMALL_STATE(1798)] = 59002, + [SMALL_STATE(1799)] = 59019, + [SMALL_STATE(1800)] = 59036, + [SMALL_STATE(1801)] = 59053, + [SMALL_STATE(1802)] = 59070, + [SMALL_STATE(1803)] = 59087, + [SMALL_STATE(1804)] = 59102, + [SMALL_STATE(1805)] = 59119, + [SMALL_STATE(1806)] = 59134, + [SMALL_STATE(1807)] = 59151, + [SMALL_STATE(1808)] = 59168, + [SMALL_STATE(1809)] = 59185, + [SMALL_STATE(1810)] = 59202, + [SMALL_STATE(1811)] = 59219, + [SMALL_STATE(1812)] = 59236, + [SMALL_STATE(1813)] = 59253, + [SMALL_STATE(1814)] = 59270, + [SMALL_STATE(1815)] = 59287, + [SMALL_STATE(1816)] = 59304, + [SMALL_STATE(1817)] = 59321, + [SMALL_STATE(1818)] = 59336, + [SMALL_STATE(1819)] = 59353, + [SMALL_STATE(1820)] = 59370, + [SMALL_STATE(1821)] = 59385, + [SMALL_STATE(1822)] = 59402, + [SMALL_STATE(1823)] = 59419, + [SMALL_STATE(1824)] = 59436, + [SMALL_STATE(1825)] = 59453, + [SMALL_STATE(1826)] = 59468, + [SMALL_STATE(1827)] = 59485, + [SMALL_STATE(1828)] = 59502, + [SMALL_STATE(1829)] = 59519, + [SMALL_STATE(1830)] = 59532, + [SMALL_STATE(1831)] = 59547, + [SMALL_STATE(1832)] = 59564, + [SMALL_STATE(1833)] = 59579, + [SMALL_STATE(1834)] = 59596, + [SMALL_STATE(1835)] = 59613, + [SMALL_STATE(1836)] = 59630, + [SMALL_STATE(1837)] = 59647, + [SMALL_STATE(1838)] = 59662, + [SMALL_STATE(1839)] = 59677, + [SMALL_STATE(1840)] = 59694, + [SMALL_STATE(1841)] = 59711, + [SMALL_STATE(1842)] = 59728, + [SMALL_STATE(1843)] = 59741, + [SMALL_STATE(1844)] = 59754, + [SMALL_STATE(1845)] = 59769, + [SMALL_STATE(1846)] = 59786, + [SMALL_STATE(1847)] = 59803, + [SMALL_STATE(1848)] = 59820, + [SMALL_STATE(1849)] = 59837, + [SMALL_STATE(1850)] = 59852, + [SMALL_STATE(1851)] = 59869, + [SMALL_STATE(1852)] = 59886, + [SMALL_STATE(1853)] = 59903, + [SMALL_STATE(1854)] = 59918, + [SMALL_STATE(1855)] = 59935, + [SMALL_STATE(1856)] = 59950, + [SMALL_STATE(1857)] = 59965, [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, + [SMALL_STATE(1859)] = 59997, + [SMALL_STATE(1860)] = 60014, + [SMALL_STATE(1861)] = 60027, + [SMALL_STATE(1862)] = 60044, + [SMALL_STATE(1863)] = 60059, + [SMALL_STATE(1864)] = 60074, + [SMALL_STATE(1865)] = 60087, + [SMALL_STATE(1866)] = 60104, + [SMALL_STATE(1867)] = 60121, + [SMALL_STATE(1868)] = 60135, + [SMALL_STATE(1869)] = 60149, + [SMALL_STATE(1870)] = 60163, + [SMALL_STATE(1871)] = 60177, + [SMALL_STATE(1872)] = 60189, + [SMALL_STATE(1873)] = 60203, + [SMALL_STATE(1874)] = 60217, + [SMALL_STATE(1875)] = 60231, + [SMALL_STATE(1876)] = 60245, + [SMALL_STATE(1877)] = 60257, + [SMALL_STATE(1878)] = 60269, + [SMALL_STATE(1879)] = 60283, + [SMALL_STATE(1880)] = 60295, + [SMALL_STATE(1881)] = 60307, + [SMALL_STATE(1882)] = 60321, + [SMALL_STATE(1883)] = 60333, + [SMALL_STATE(1884)] = 60345, + [SMALL_STATE(1885)] = 60359, + [SMALL_STATE(1886)] = 60373, + [SMALL_STATE(1887)] = 60385, + [SMALL_STATE(1888)] = 60399, + [SMALL_STATE(1889)] = 60413, + [SMALL_STATE(1890)] = 60427, + [SMALL_STATE(1891)] = 60441, + [SMALL_STATE(1892)] = 60455, + [SMALL_STATE(1893)] = 60469, + [SMALL_STATE(1894)] = 60483, + [SMALL_STATE(1895)] = 60497, + [SMALL_STATE(1896)] = 60509, + [SMALL_STATE(1897)] = 60523, + [SMALL_STATE(1898)] = 60537, + [SMALL_STATE(1899)] = 60551, + [SMALL_STATE(1900)] = 60565, + [SMALL_STATE(1901)] = 60575, + [SMALL_STATE(1902)] = 60589, + [SMALL_STATE(1903)] = 60603, + [SMALL_STATE(1904)] = 60617, + [SMALL_STATE(1905)] = 60631, + [SMALL_STATE(1906)] = 60643, + [SMALL_STATE(1907)] = 60657, + [SMALL_STATE(1908)] = 60671, + [SMALL_STATE(1909)] = 60683, + [SMALL_STATE(1910)] = 60697, + [SMALL_STATE(1911)] = 60711, + [SMALL_STATE(1912)] = 60723, + [SMALL_STATE(1913)] = 60733, + [SMALL_STATE(1914)] = 60747, + [SMALL_STATE(1915)] = 60761, + [SMALL_STATE(1916)] = 60775, + [SMALL_STATE(1917)] = 60789, + [SMALL_STATE(1918)] = 60803, + [SMALL_STATE(1919)] = 60813, + [SMALL_STATE(1920)] = 60827, + [SMALL_STATE(1921)] = 60837, + [SMALL_STATE(1922)] = 60851, + [SMALL_STATE(1923)] = 60863, + [SMALL_STATE(1924)] = 60877, + [SMALL_STATE(1925)] = 60891, + [SMALL_STATE(1926)] = 60901, + [SMALL_STATE(1927)] = 60915, + [SMALL_STATE(1928)] = 60929, + [SMALL_STATE(1929)] = 60943, + [SMALL_STATE(1930)] = 60957, + [SMALL_STATE(1931)] = 60969, + [SMALL_STATE(1932)] = 60983, + [SMALL_STATE(1933)] = 60997, + [SMALL_STATE(1934)] = 61011, + [SMALL_STATE(1935)] = 61021, + [SMALL_STATE(1936)] = 61035, + [SMALL_STATE(1937)] = 61047, + [SMALL_STATE(1938)] = 61061, + [SMALL_STATE(1939)] = 61075, + [SMALL_STATE(1940)] = 61089, + [SMALL_STATE(1941)] = 61103, + [SMALL_STATE(1942)] = 61117, + [SMALL_STATE(1943)] = 61131, + [SMALL_STATE(1944)] = 61143, + [SMALL_STATE(1945)] = 61157, + [SMALL_STATE(1946)] = 61171, + [SMALL_STATE(1947)] = 61185, + [SMALL_STATE(1948)] = 61195, + [SMALL_STATE(1949)] = 61209, + [SMALL_STATE(1950)] = 61223, + [SMALL_STATE(1951)] = 61237, + [SMALL_STATE(1952)] = 61251, + [SMALL_STATE(1953)] = 61265, + [SMALL_STATE(1954)] = 61279, + [SMALL_STATE(1955)] = 61293, + [SMALL_STATE(1956)] = 61307, + [SMALL_STATE(1957)] = 61321, + [SMALL_STATE(1958)] = 61335, + [SMALL_STATE(1959)] = 61349, + [SMALL_STATE(1960)] = 61363, + [SMALL_STATE(1961)] = 61377, + [SMALL_STATE(1962)] = 61391, + [SMALL_STATE(1963)] = 61405, + [SMALL_STATE(1964)] = 61417, + [SMALL_STATE(1965)] = 61431, + [SMALL_STATE(1966)] = 61445, + [SMALL_STATE(1967)] = 61459, + [SMALL_STATE(1968)] = 61473, + [SMALL_STATE(1969)] = 61487, + [SMALL_STATE(1970)] = 61497, + [SMALL_STATE(1971)] = 61511, + [SMALL_STATE(1972)] = 61525, + [SMALL_STATE(1973)] = 61539, + [SMALL_STATE(1974)] = 61553, + [SMALL_STATE(1975)] = 61567, + [SMALL_STATE(1976)] = 61581, + [SMALL_STATE(1977)] = 61591, + [SMALL_STATE(1978)] = 61603, + [SMALL_STATE(1979)] = 61617, + [SMALL_STATE(1980)] = 61631, + [SMALL_STATE(1981)] = 61645, + [SMALL_STATE(1982)] = 61659, + [SMALL_STATE(1983)] = 61669, + [SMALL_STATE(1984)] = 61683, + [SMALL_STATE(1985)] = 61697, + [SMALL_STATE(1986)] = 61711, + [SMALL_STATE(1987)] = 61723, + [SMALL_STATE(1988)] = 61737, + [SMALL_STATE(1989)] = 61747, + [SMALL_STATE(1990)] = 61757, + [SMALL_STATE(1991)] = 61771, + [SMALL_STATE(1992)] = 61785, + [SMALL_STATE(1993)] = 61797, + [SMALL_STATE(1994)] = 61811, + [SMALL_STATE(1995)] = 61825, + [SMALL_STATE(1996)] = 61839, + [SMALL_STATE(1997)] = 61853, + [SMALL_STATE(1998)] = 61867, + [SMALL_STATE(1999)] = 61881, + [SMALL_STATE(2000)] = 61895, + [SMALL_STATE(2001)] = 61909, + [SMALL_STATE(2002)] = 61923, + [SMALL_STATE(2003)] = 61937, + [SMALL_STATE(2004)] = 61951, + [SMALL_STATE(2005)] = 61965, + [SMALL_STATE(2006)] = 61979, + [SMALL_STATE(2007)] = 61993, + [SMALL_STATE(2008)] = 62007, + [SMALL_STATE(2009)] = 62021, + [SMALL_STATE(2010)] = 62035, + [SMALL_STATE(2011)] = 62049, + [SMALL_STATE(2012)] = 62063, + [SMALL_STATE(2013)] = 62077, + [SMALL_STATE(2014)] = 62091, + [SMALL_STATE(2015)] = 62101, + [SMALL_STATE(2016)] = 62115, + [SMALL_STATE(2017)] = 62125, + [SMALL_STATE(2018)] = 62137, + [SMALL_STATE(2019)] = 62151, + [SMALL_STATE(2020)] = 62161, + [SMALL_STATE(2021)] = 62175, + [SMALL_STATE(2022)] = 62189, + [SMALL_STATE(2023)] = 62203, + [SMALL_STATE(2024)] = 62217, + [SMALL_STATE(2025)] = 62231, + [SMALL_STATE(2026)] = 62245, + [SMALL_STATE(2027)] = 62259, + [SMALL_STATE(2028)] = 62271, + [SMALL_STATE(2029)] = 62285, + [SMALL_STATE(2030)] = 62299, + [SMALL_STATE(2031)] = 62309, + [SMALL_STATE(2032)] = 62323, + [SMALL_STATE(2033)] = 62337, + [SMALL_STATE(2034)] = 62351, + [SMALL_STATE(2035)] = 62365, + [SMALL_STATE(2036)] = 62379, + [SMALL_STATE(2037)] = 62391, + [SMALL_STATE(2038)] = 62405, + [SMALL_STATE(2039)] = 62417, + [SMALL_STATE(2040)] = 62431, + [SMALL_STATE(2041)] = 62445, + [SMALL_STATE(2042)] = 62459, + [SMALL_STATE(2043)] = 62469, + [SMALL_STATE(2044)] = 62483, + [SMALL_STATE(2045)] = 62497, + [SMALL_STATE(2046)] = 62511, + [SMALL_STATE(2047)] = 62525, + [SMALL_STATE(2048)] = 62539, + [SMALL_STATE(2049)] = 62549, + [SMALL_STATE(2050)] = 62559, + [SMALL_STATE(2051)] = 62573, + [SMALL_STATE(2052)] = 62583, + [SMALL_STATE(2053)] = 62593, + [SMALL_STATE(2054)] = 62603, + [SMALL_STATE(2055)] = 62613, + [SMALL_STATE(2056)] = 62627, + [SMALL_STATE(2057)] = 62639, + [SMALL_STATE(2058)] = 62653, + [SMALL_STATE(2059)] = 62667, + [SMALL_STATE(2060)] = 62681, + [SMALL_STATE(2061)] = 62695, + [SMALL_STATE(2062)] = 62707, + [SMALL_STATE(2063)] = 62719, + [SMALL_STATE(2064)] = 62733, + [SMALL_STATE(2065)] = 62747, + [SMALL_STATE(2066)] = 62761, + [SMALL_STATE(2067)] = 62775, + [SMALL_STATE(2068)] = 62787, + [SMALL_STATE(2069)] = 62799, + [SMALL_STATE(2070)] = 62813, + [SMALL_STATE(2071)] = 62827, + [SMALL_STATE(2072)] = 62841, + [SMALL_STATE(2073)] = 62853, + [SMALL_STATE(2074)] = 62867, + [SMALL_STATE(2075)] = 62881, + [SMALL_STATE(2076)] = 62895, + [SMALL_STATE(2077)] = 62907, + [SMALL_STATE(2078)] = 62919, + [SMALL_STATE(2079)] = 62933, + [SMALL_STATE(2080)] = 62947, + [SMALL_STATE(2081)] = 62961, + [SMALL_STATE(2082)] = 62975, + [SMALL_STATE(2083)] = 62989, + [SMALL_STATE(2084)] = 63003, + [SMALL_STATE(2085)] = 63017, + [SMALL_STATE(2086)] = 63031, + [SMALL_STATE(2087)] = 63045, + [SMALL_STATE(2088)] = 63059, + [SMALL_STATE(2089)] = 63073, + [SMALL_STATE(2090)] = 63087, + [SMALL_STATE(2091)] = 63101, + [SMALL_STATE(2092)] = 63115, + [SMALL_STATE(2093)] = 63129, + [SMALL_STATE(2094)] = 63143, + [SMALL_STATE(2095)] = 63155, + [SMALL_STATE(2096)] = 63169, + [SMALL_STATE(2097)] = 63183, + [SMALL_STATE(2098)] = 63197, + [SMALL_STATE(2099)] = 63211, + [SMALL_STATE(2100)] = 63225, + [SMALL_STATE(2101)] = 63239, + [SMALL_STATE(2102)] = 63253, + [SMALL_STATE(2103)] = 63267, + [SMALL_STATE(2104)] = 63281, + [SMALL_STATE(2105)] = 63293, + [SMALL_STATE(2106)] = 63307, + [SMALL_STATE(2107)] = 63321, + [SMALL_STATE(2108)] = 63333, + [SMALL_STATE(2109)] = 63347, + [SMALL_STATE(2110)] = 63357, + [SMALL_STATE(2111)] = 63371, + [SMALL_STATE(2112)] = 63381, + [SMALL_STATE(2113)] = 63395, + [SMALL_STATE(2114)] = 63409, + [SMALL_STATE(2115)] = 63423, + [SMALL_STATE(2116)] = 63437, + [SMALL_STATE(2117)] = 63451, + [SMALL_STATE(2118)] = 63465, + [SMALL_STATE(2119)] = 63479, + [SMALL_STATE(2120)] = 63490, + [SMALL_STATE(2121)] = 63501, + [SMALL_STATE(2122)] = 63512, + [SMALL_STATE(2123)] = 63523, + [SMALL_STATE(2124)] = 63534, + [SMALL_STATE(2125)] = 63545, + [SMALL_STATE(2126)] = 63556, + [SMALL_STATE(2127)] = 63567, + [SMALL_STATE(2128)] = 63578, + [SMALL_STATE(2129)] = 63589, + [SMALL_STATE(2130)] = 63600, + [SMALL_STATE(2131)] = 63611, + [SMALL_STATE(2132)] = 63620, + [SMALL_STATE(2133)] = 63631, + [SMALL_STATE(2134)] = 63642, + [SMALL_STATE(2135)] = 63653, + [SMALL_STATE(2136)] = 63664, + [SMALL_STATE(2137)] = 63675, + [SMALL_STATE(2138)] = 63686, + [SMALL_STATE(2139)] = 63697, + [SMALL_STATE(2140)] = 63708, + [SMALL_STATE(2141)] = 63717, + [SMALL_STATE(2142)] = 63728, + [SMALL_STATE(2143)] = 63737, + [SMALL_STATE(2144)] = 63748, + [SMALL_STATE(2145)] = 63759, + [SMALL_STATE(2146)] = 63768, + [SMALL_STATE(2147)] = 63779, + [SMALL_STATE(2148)] = 63790, + [SMALL_STATE(2149)] = 63801, + [SMALL_STATE(2150)] = 63812, + [SMALL_STATE(2151)] = 63823, + [SMALL_STATE(2152)] = 63834, + [SMALL_STATE(2153)] = 63845, + [SMALL_STATE(2154)] = 63856, + [SMALL_STATE(2155)] = 63867, + [SMALL_STATE(2156)] = 63878, + [SMALL_STATE(2157)] = 63889, + [SMALL_STATE(2158)] = 63900, + [SMALL_STATE(2159)] = 63911, + [SMALL_STATE(2160)] = 63922, + [SMALL_STATE(2161)] = 63931, + [SMALL_STATE(2162)] = 63942, + [SMALL_STATE(2163)] = 63951, + [SMALL_STATE(2164)] = 63962, + [SMALL_STATE(2165)] = 63973, + [SMALL_STATE(2166)] = 63984, + [SMALL_STATE(2167)] = 63995, + [SMALL_STATE(2168)] = 64006, + [SMALL_STATE(2169)] = 64015, + [SMALL_STATE(2170)] = 64026, + [SMALL_STATE(2171)] = 64037, + [SMALL_STATE(2172)] = 64048, + [SMALL_STATE(2173)] = 64057, + [SMALL_STATE(2174)] = 64068, + [SMALL_STATE(2175)] = 64079, + [SMALL_STATE(2176)] = 64090, + [SMALL_STATE(2177)] = 64099, + [SMALL_STATE(2178)] = 64110, + [SMALL_STATE(2179)] = 64121, + [SMALL_STATE(2180)] = 64132, + [SMALL_STATE(2181)] = 64141, + [SMALL_STATE(2182)] = 64150, + [SMALL_STATE(2183)] = 64159, + [SMALL_STATE(2184)] = 64170, + [SMALL_STATE(2185)] = 64181, + [SMALL_STATE(2186)] = 64192, + [SMALL_STATE(2187)] = 64201, + [SMALL_STATE(2188)] = 64212, + [SMALL_STATE(2189)] = 64223, + [SMALL_STATE(2190)] = 64234, + [SMALL_STATE(2191)] = 64243, + [SMALL_STATE(2192)] = 64254, + [SMALL_STATE(2193)] = 64265, + [SMALL_STATE(2194)] = 64276, + [SMALL_STATE(2195)] = 64287, + [SMALL_STATE(2196)] = 64298, + [SMALL_STATE(2197)] = 64309, + [SMALL_STATE(2198)] = 64320, + [SMALL_STATE(2199)] = 64331, + [SMALL_STATE(2200)] = 64342, + [SMALL_STATE(2201)] = 64353, + [SMALL_STATE(2202)] = 64364, + [SMALL_STATE(2203)] = 64375, + [SMALL_STATE(2204)] = 64386, + [SMALL_STATE(2205)] = 64397, + [SMALL_STATE(2206)] = 64408, + [SMALL_STATE(2207)] = 64419, + [SMALL_STATE(2208)] = 64430, + [SMALL_STATE(2209)] = 64441, + [SMALL_STATE(2210)] = 64452, + [SMALL_STATE(2211)] = 64463, + [SMALL_STATE(2212)] = 64474, + [SMALL_STATE(2213)] = 64485, + [SMALL_STATE(2214)] = 64496, + [SMALL_STATE(2215)] = 64507, + [SMALL_STATE(2216)] = 64518, + [SMALL_STATE(2217)] = 64529, + [SMALL_STATE(2218)] = 64540, + [SMALL_STATE(2219)] = 64551, + [SMALL_STATE(2220)] = 64562, + [SMALL_STATE(2221)] = 64573, + [SMALL_STATE(2222)] = 64584, + [SMALL_STATE(2223)] = 64595, + [SMALL_STATE(2224)] = 64606, + [SMALL_STATE(2225)] = 64617, + [SMALL_STATE(2226)] = 64628, + [SMALL_STATE(2227)] = 64639, + [SMALL_STATE(2228)] = 64650, + [SMALL_STATE(2229)] = 64661, + [SMALL_STATE(2230)] = 64672, + [SMALL_STATE(2231)] = 64683, + [SMALL_STATE(2232)] = 64694, + [SMALL_STATE(2233)] = 64705, + [SMALL_STATE(2234)] = 64716, + [SMALL_STATE(2235)] = 64727, + [SMALL_STATE(2236)] = 64738, + [SMALL_STATE(2237)] = 64749, + [SMALL_STATE(2238)] = 64760, + [SMALL_STATE(2239)] = 64771, + [SMALL_STATE(2240)] = 64782, + [SMALL_STATE(2241)] = 64791, + [SMALL_STATE(2242)] = 64802, + [SMALL_STATE(2243)] = 64813, + [SMALL_STATE(2244)] = 64824, + [SMALL_STATE(2245)] = 64835, + [SMALL_STATE(2246)] = 64846, + [SMALL_STATE(2247)] = 64855, + [SMALL_STATE(2248)] = 64866, + [SMALL_STATE(2249)] = 64877, + [SMALL_STATE(2250)] = 64888, + [SMALL_STATE(2251)] = 64899, + [SMALL_STATE(2252)] = 64910, + [SMALL_STATE(2253)] = 64921, + [SMALL_STATE(2254)] = 64930, + [SMALL_STATE(2255)] = 64941, + [SMALL_STATE(2256)] = 64950, + [SMALL_STATE(2257)] = 64961, + [SMALL_STATE(2258)] = 64970, + [SMALL_STATE(2259)] = 64981, + [SMALL_STATE(2260)] = 64992, + [SMALL_STATE(2261)] = 65003, + [SMALL_STATE(2262)] = 65014, + [SMALL_STATE(2263)] = 65023, + [SMALL_STATE(2264)] = 65034, + [SMALL_STATE(2265)] = 65045, + [SMALL_STATE(2266)] = 65056, + [SMALL_STATE(2267)] = 65065, + [SMALL_STATE(2268)] = 65076, + [SMALL_STATE(2269)] = 65085, + [SMALL_STATE(2270)] = 65096, + [SMALL_STATE(2271)] = 65107, + [SMALL_STATE(2272)] = 65118, + [SMALL_STATE(2273)] = 65129, + [SMALL_STATE(2274)] = 65140, + [SMALL_STATE(2275)] = 65151, + [SMALL_STATE(2276)] = 65162, + [SMALL_STATE(2277)] = 65173, + [SMALL_STATE(2278)] = 65184, + [SMALL_STATE(2279)] = 65193, + [SMALL_STATE(2280)] = 65204, + [SMALL_STATE(2281)] = 65215, + [SMALL_STATE(2282)] = 65226, + [SMALL_STATE(2283)] = 65237, + [SMALL_STATE(2284)] = 65248, + [SMALL_STATE(2285)] = 65259, + [SMALL_STATE(2286)] = 65270, + [SMALL_STATE(2287)] = 65281, + [SMALL_STATE(2288)] = 65292, + [SMALL_STATE(2289)] = 65303, + [SMALL_STATE(2290)] = 65314, + [SMALL_STATE(2291)] = 65325, + [SMALL_STATE(2292)] = 65336, + [SMALL_STATE(2293)] = 65347, + [SMALL_STATE(2294)] = 65358, + [SMALL_STATE(2295)] = 65369, + [SMALL_STATE(2296)] = 65380, + [SMALL_STATE(2297)] = 65389, + [SMALL_STATE(2298)] = 65400, + [SMALL_STATE(2299)] = 65411, + [SMALL_STATE(2300)] = 65422, + [SMALL_STATE(2301)] = 65431, + [SMALL_STATE(2302)] = 65442, + [SMALL_STATE(2303)] = 65453, + [SMALL_STATE(2304)] = 65464, + [SMALL_STATE(2305)] = 65475, + [SMALL_STATE(2306)] = 65484, + [SMALL_STATE(2307)] = 65495, + [SMALL_STATE(2308)] = 65506, + [SMALL_STATE(2309)] = 65517, + [SMALL_STATE(2310)] = 65526, + [SMALL_STATE(2311)] = 65537, + [SMALL_STATE(2312)] = 65548, + [SMALL_STATE(2313)] = 65559, + [SMALL_STATE(2314)] = 65570, + [SMALL_STATE(2315)] = 65581, + [SMALL_STATE(2316)] = 65592, + [SMALL_STATE(2317)] = 65603, + [SMALL_STATE(2318)] = 65614, + [SMALL_STATE(2319)] = 65625, + [SMALL_STATE(2320)] = 65636, + [SMALL_STATE(2321)] = 65647, + [SMALL_STATE(2322)] = 65658, + [SMALL_STATE(2323)] = 65669, + [SMALL_STATE(2324)] = 65680, + [SMALL_STATE(2325)] = 65691, + [SMALL_STATE(2326)] = 65702, + [SMALL_STATE(2327)] = 65713, + [SMALL_STATE(2328)] = 65724, + [SMALL_STATE(2329)] = 65735, + [SMALL_STATE(2330)] = 65743, + [SMALL_STATE(2331)] = 65751, + [SMALL_STATE(2332)] = 65759, + [SMALL_STATE(2333)] = 65767, + [SMALL_STATE(2334)] = 65775, + [SMALL_STATE(2335)] = 65783, + [SMALL_STATE(2336)] = 65791, + [SMALL_STATE(2337)] = 65799, + [SMALL_STATE(2338)] = 65807, + [SMALL_STATE(2339)] = 65815, + [SMALL_STATE(2340)] = 65823, + [SMALL_STATE(2341)] = 65831, + [SMALL_STATE(2342)] = 65839, + [SMALL_STATE(2343)] = 65847, + [SMALL_STATE(2344)] = 65855, + [SMALL_STATE(2345)] = 65863, + [SMALL_STATE(2346)] = 65871, + [SMALL_STATE(2347)] = 65879, + [SMALL_STATE(2348)] = 65887, + [SMALL_STATE(2349)] = 65895, + [SMALL_STATE(2350)] = 65903, + [SMALL_STATE(2351)] = 65911, + [SMALL_STATE(2352)] = 65919, + [SMALL_STATE(2353)] = 65927, + [SMALL_STATE(2354)] = 65935, + [SMALL_STATE(2355)] = 65943, + [SMALL_STATE(2356)] = 65951, + [SMALL_STATE(2357)] = 65959, + [SMALL_STATE(2358)] = 65967, + [SMALL_STATE(2359)] = 65975, + [SMALL_STATE(2360)] = 65983, + [SMALL_STATE(2361)] = 65991, + [SMALL_STATE(2362)] = 65999, + [SMALL_STATE(2363)] = 66007, + [SMALL_STATE(2364)] = 66015, + [SMALL_STATE(2365)] = 66023, + [SMALL_STATE(2366)] = 66031, + [SMALL_STATE(2367)] = 66039, + [SMALL_STATE(2368)] = 66047, + [SMALL_STATE(2369)] = 66055, + [SMALL_STATE(2370)] = 66063, + [SMALL_STATE(2371)] = 66071, + [SMALL_STATE(2372)] = 66079, + [SMALL_STATE(2373)] = 66087, + [SMALL_STATE(2374)] = 66095, + [SMALL_STATE(2375)] = 66103, + [SMALL_STATE(2376)] = 66111, + [SMALL_STATE(2377)] = 66119, + [SMALL_STATE(2378)] = 66127, + [SMALL_STATE(2379)] = 66135, + [SMALL_STATE(2380)] = 66143, + [SMALL_STATE(2381)] = 66151, + [SMALL_STATE(2382)] = 66159, + [SMALL_STATE(2383)] = 66167, + [SMALL_STATE(2384)] = 66175, + [SMALL_STATE(2385)] = 66183, + [SMALL_STATE(2386)] = 66191, + [SMALL_STATE(2387)] = 66199, + [SMALL_STATE(2388)] = 66207, + [SMALL_STATE(2389)] = 66215, + [SMALL_STATE(2390)] = 66223, + [SMALL_STATE(2391)] = 66231, + [SMALL_STATE(2392)] = 66239, + [SMALL_STATE(2393)] = 66247, + [SMALL_STATE(2394)] = 66255, + [SMALL_STATE(2395)] = 66263, + [SMALL_STATE(2396)] = 66271, + [SMALL_STATE(2397)] = 66279, + [SMALL_STATE(2398)] = 66287, + [SMALL_STATE(2399)] = 66295, + [SMALL_STATE(2400)] = 66303, + [SMALL_STATE(2401)] = 66311, + [SMALL_STATE(2402)] = 66319, + [SMALL_STATE(2403)] = 66327, + [SMALL_STATE(2404)] = 66335, + [SMALL_STATE(2405)] = 66343, + [SMALL_STATE(2406)] = 66351, + [SMALL_STATE(2407)] = 66359, + [SMALL_STATE(2408)] = 66367, + [SMALL_STATE(2409)] = 66375, + [SMALL_STATE(2410)] = 66383, + [SMALL_STATE(2411)] = 66391, + [SMALL_STATE(2412)] = 66399, + [SMALL_STATE(2413)] = 66407, + [SMALL_STATE(2414)] = 66415, + [SMALL_STATE(2415)] = 66423, + [SMALL_STATE(2416)] = 66431, + [SMALL_STATE(2417)] = 66439, + [SMALL_STATE(2418)] = 66447, + [SMALL_STATE(2419)] = 66455, + [SMALL_STATE(2420)] = 66463, + [SMALL_STATE(2421)] = 66471, + [SMALL_STATE(2422)] = 66479, + [SMALL_STATE(2423)] = 66487, + [SMALL_STATE(2424)] = 66495, + [SMALL_STATE(2425)] = 66503, + [SMALL_STATE(2426)] = 66511, + [SMALL_STATE(2427)] = 66519, + [SMALL_STATE(2428)] = 66527, + [SMALL_STATE(2429)] = 66535, + [SMALL_STATE(2430)] = 66543, + [SMALL_STATE(2431)] = 66551, + [SMALL_STATE(2432)] = 66559, + [SMALL_STATE(2433)] = 66567, + [SMALL_STATE(2434)] = 66575, + [SMALL_STATE(2435)] = 66583, + [SMALL_STATE(2436)] = 66591, + [SMALL_STATE(2437)] = 66599, + [SMALL_STATE(2438)] = 66607, + [SMALL_STATE(2439)] = 66615, + [SMALL_STATE(2440)] = 66623, + [SMALL_STATE(2441)] = 66631, + [SMALL_STATE(2442)] = 66639, + [SMALL_STATE(2443)] = 66647, + [SMALL_STATE(2444)] = 66655, + [SMALL_STATE(2445)] = 66663, + [SMALL_STATE(2446)] = 66671, + [SMALL_STATE(2447)] = 66679, + [SMALL_STATE(2448)] = 66687, + [SMALL_STATE(2449)] = 66695, + [SMALL_STATE(2450)] = 66703, + [SMALL_STATE(2451)] = 66711, + [SMALL_STATE(2452)] = 66719, + [SMALL_STATE(2453)] = 66727, + [SMALL_STATE(2454)] = 66735, + [SMALL_STATE(2455)] = 66743, + [SMALL_STATE(2456)] = 66751, + [SMALL_STATE(2457)] = 66759, + [SMALL_STATE(2458)] = 66767, + [SMALL_STATE(2459)] = 66775, + [SMALL_STATE(2460)] = 66783, + [SMALL_STATE(2461)] = 66791, + [SMALL_STATE(2462)] = 66799, + [SMALL_STATE(2463)] = 66807, + [SMALL_STATE(2464)] = 66815, + [SMALL_STATE(2465)] = 66823, + [SMALL_STATE(2466)] = 66831, + [SMALL_STATE(2467)] = 66839, + [SMALL_STATE(2468)] = 66847, + [SMALL_STATE(2469)] = 66855, + [SMALL_STATE(2470)] = 66863, + [SMALL_STATE(2471)] = 66871, + [SMALL_STATE(2472)] = 66879, + [SMALL_STATE(2473)] = 66887, + [SMALL_STATE(2474)] = 66895, + [SMALL_STATE(2475)] = 66903, + [SMALL_STATE(2476)] = 66911, + [SMALL_STATE(2477)] = 66919, + [SMALL_STATE(2478)] = 66927, + [SMALL_STATE(2479)] = 66935, + [SMALL_STATE(2480)] = 66943, + [SMALL_STATE(2481)] = 66951, + [SMALL_STATE(2482)] = 66959, + [SMALL_STATE(2483)] = 66967, + [SMALL_STATE(2484)] = 66975, + [SMALL_STATE(2485)] = 66983, + [SMALL_STATE(2486)] = 66991, + [SMALL_STATE(2487)] = 66999, + [SMALL_STATE(2488)] = 67007, + [SMALL_STATE(2489)] = 67015, + [SMALL_STATE(2490)] = 67023, + [SMALL_STATE(2491)] = 67031, + [SMALL_STATE(2492)] = 67039, + [SMALL_STATE(2493)] = 67047, + [SMALL_STATE(2494)] = 67055, + [SMALL_STATE(2495)] = 67063, + [SMALL_STATE(2496)] = 67071, + [SMALL_STATE(2497)] = 67079, + [SMALL_STATE(2498)] = 67087, + [SMALL_STATE(2499)] = 67095, + [SMALL_STATE(2500)] = 67103, + [SMALL_STATE(2501)] = 67111, + [SMALL_STATE(2502)] = 67119, + [SMALL_STATE(2503)] = 67127, + [SMALL_STATE(2504)] = 67135, + [SMALL_STATE(2505)] = 67143, + [SMALL_STATE(2506)] = 67151, + [SMALL_STATE(2507)] = 67159, + [SMALL_STATE(2508)] = 67167, + [SMALL_STATE(2509)] = 67175, + [SMALL_STATE(2510)] = 67183, + [SMALL_STATE(2511)] = 67191, + [SMALL_STATE(2512)] = 67199, + [SMALL_STATE(2513)] = 67207, + [SMALL_STATE(2514)] = 67215, + [SMALL_STATE(2515)] = 67223, + [SMALL_STATE(2516)] = 67231, + [SMALL_STATE(2517)] = 67239, + [SMALL_STATE(2518)] = 67247, + [SMALL_STATE(2519)] = 67255, + [SMALL_STATE(2520)] = 67263, + [SMALL_STATE(2521)] = 67271, + [SMALL_STATE(2522)] = 67279, + [SMALL_STATE(2523)] = 67287, + [SMALL_STATE(2524)] = 67295, + [SMALL_STATE(2525)] = 67303, + [SMALL_STATE(2526)] = 67311, + [SMALL_STATE(2527)] = 67319, + [SMALL_STATE(2528)] = 67327, + [SMALL_STATE(2529)] = 67335, + [SMALL_STATE(2530)] = 67343, + [SMALL_STATE(2531)] = 67351, + [SMALL_STATE(2532)] = 67359, + [SMALL_STATE(2533)] = 67367, + [SMALL_STATE(2534)] = 67375, + [SMALL_STATE(2535)] = 67383, + [SMALL_STATE(2536)] = 67391, + [SMALL_STATE(2537)] = 67399, + [SMALL_STATE(2538)] = 67407, + [SMALL_STATE(2539)] = 67415, + [SMALL_STATE(2540)] = 67423, + [SMALL_STATE(2541)] = 67431, + [SMALL_STATE(2542)] = 67439, + [SMALL_STATE(2543)] = 67447, + [SMALL_STATE(2544)] = 67455, + [SMALL_STATE(2545)] = 67463, + [SMALL_STATE(2546)] = 67471, + [SMALL_STATE(2547)] = 67479, + [SMALL_STATE(2548)] = 67487, + [SMALL_STATE(2549)] = 67495, + [SMALL_STATE(2550)] = 67503, + [SMALL_STATE(2551)] = 67511, + [SMALL_STATE(2552)] = 67519, + [SMALL_STATE(2553)] = 67527, + [SMALL_STATE(2554)] = 67535, + [SMALL_STATE(2555)] = 67543, + [SMALL_STATE(2556)] = 67551, + [SMALL_STATE(2557)] = 67559, + [SMALL_STATE(2558)] = 67567, + [SMALL_STATE(2559)] = 67575, + [SMALL_STATE(2560)] = 67583, + [SMALL_STATE(2561)] = 67591, + [SMALL_STATE(2562)] = 67599, + [SMALL_STATE(2563)] = 67607, + [SMALL_STATE(2564)] = 67615, + [SMALL_STATE(2565)] = 67623, + [SMALL_STATE(2566)] = 67631, + [SMALL_STATE(2567)] = 67639, + [SMALL_STATE(2568)] = 67647, + [SMALL_STATE(2569)] = 67655, + [SMALL_STATE(2570)] = 67663, + [SMALL_STATE(2571)] = 67671, + [SMALL_STATE(2572)] = 67679, + [SMALL_STATE(2573)] = 67687, + [SMALL_STATE(2574)] = 67695, + [SMALL_STATE(2575)] = 67703, + [SMALL_STATE(2576)] = 67711, + [SMALL_STATE(2577)] = 67719, + [SMALL_STATE(2578)] = 67727, + [SMALL_STATE(2579)] = 67735, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -129778,2725 +130918,2734 @@ 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(1161), - [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(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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1173), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(256), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1977), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(52), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(110), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(829), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2579), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1535), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1531), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(782), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(783), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2565), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2172), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(622), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(53), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(634), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(619), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2173), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(163), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2516), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1353), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1901), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2511), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2510), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2508), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1177), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1493), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1312), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(45), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2184), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1485), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(635), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2499), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(102), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(570), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2189), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(894), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1820), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(832), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(844), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2495), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1378), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(844), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), [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(2003), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [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(161), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [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(102), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), [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(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(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(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(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(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(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(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_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(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_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, 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 = 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_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_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_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}}, 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(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(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), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(1772), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 18), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 18), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 18), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 18), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 99), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 99), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__else_if, 3, .production_id = 18), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__else_if, 3, .production_id = 18), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(764), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(52), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(12), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(110), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(829), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2579), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1956), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2225), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(782), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(814), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(625), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(43), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2220), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(148), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2226), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(48), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(635), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2499), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(102), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(570), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2189), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(894), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1820), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(832), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(844), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2495), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(844), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 34), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 34), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 27), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 27), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 97), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 97), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 89), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 89), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(1793), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 98), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 98), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2256), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1136), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1922), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2451), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1556), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1599), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1557), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2371), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2168), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(640), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(608), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2373), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1353), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2092), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2374), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2375), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2376), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1875), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1309), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2167), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1480), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(635), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2458), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2382), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1383), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2382), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(253), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(506), + [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(505), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(504), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2413), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(593), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1788), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(592), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(565), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 225), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 225), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 224), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 224), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 181), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 181), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 91), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 91), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 15), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 15), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 225), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 225), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 48), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 48), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 48), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 48), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 176), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 176), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 186), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 186), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 48), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 48), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 92), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 92), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 87), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 87), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 183), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 183), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 22), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 22), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 86), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 86), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 85), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 85), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 171), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 171), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 94), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 94), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 24), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 24), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 228), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 228), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 229), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 229), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 28), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 28), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 183), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 183), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 92), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 92), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 6), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 6), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 15), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 15), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 15), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 15), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 6), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 6), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 15), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 15), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 92), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 92), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 186), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 186), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 92), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 92), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 15), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 15), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 5), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 5), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 232), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 232), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 233), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 233), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 48), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 48), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 98), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 98), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 236), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 236), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 245), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 245), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 240), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 240), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 237), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 237), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 238), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 238), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 39), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 39), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 195), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 195), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 240), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 240), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 91), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 91), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 235), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 235), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 242), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 242), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 15), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 15), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 194), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 194), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 243), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 243), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 244), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 244), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(535), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(534), + [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(533), + [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2552), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(593), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1788), + [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(592), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(503), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(542), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(511), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(503), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(628), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1844), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(609), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1327), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(567), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(566), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1377), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2214), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1354), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2471), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(618), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(635), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2403), + [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1440), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(601), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1450), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2257), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1411), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1786), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1379), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1986), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1986), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 182), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 182), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2471), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 4), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 6), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 36), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 41), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(1821), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 37), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 38), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 37), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 47), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 25), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 25), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 46), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 46), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 19), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 19), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 90), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 90), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 88), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 88), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 22), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 22), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 193), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 193), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2533), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 42), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 42), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 98), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 98), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 98), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 32), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 32), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 42), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 42), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 33), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 172), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 98), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 125), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 32), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 98), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), REDUCE(sym__pattern, 1), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1560), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1555), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(613), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 5), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 49), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1366), + [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(194), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 22), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 22), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 226), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 226), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1176), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(623), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1862), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1626), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(247), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2127), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 91), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(196), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 29), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 28), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1550), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 44), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 22), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(568), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(113), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(59), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1545), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 57), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1536), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1308), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), + [4963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1562), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(588), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 189), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 190), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(676), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 3), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 80), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 81), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5524] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), }; #ifdef __cplusplus