diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 9ec2803a..ff675c5d 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -128,6 +128,9 @@ a..b; 1..(1); (1)..1; (1)..(1); +1..{1}; +for i in 1.. { +} --- @@ -146,7 +149,16 @@ a..b; (integer_literal)) (range_expression (parenthesized_expression (integer_literal)) - (parenthesized_expression (integer_literal)))) + (parenthesized_expression (integer_literal))) + (range_expression + (integer_literal) + (block + (integer_literal))) + (for_expression + (identifier) + (range_expression + (integer_literal)) + (block))) ============================================ Assignment expressions diff --git a/grammar.js b/grammar.js index f284b286..9852e8a4 100644 --- a/grammar.js +++ b/grammar.js @@ -831,7 +831,7 @@ module.exports = grammar({ // Section - Expressions - _expression: $ => choice( + _expression_except_range: $ => choice( $.unary_expression, $.reference_expression, $.try_expression, @@ -839,7 +839,6 @@ module.exports = grammar({ $.assignment_expression, $.compound_assignment_expr, $.type_cast_expression, - $.range_expression, $.call_expression, $.return_expression, $.yield_expression, @@ -856,14 +855,19 @@ module.exports = grammar({ $.tuple_expression, prec(1, $.macro_invocation), $.unit_expression, - $._expression_ending_with_block, $.break_expression, $.continue_expression, $.index_expression, $.metavariable, $.closure_expression, $.parenthesized_expression, - $.struct_expression + $.struct_expression, + $._expression_ending_with_block, + ), + + _expression: $ => choice( + $._expression_except_range, + $.range_expression, ), _expression_ending_with_block: $ => choice( @@ -921,10 +925,7 @@ module.exports = grammar({ ), range_expression: $ => prec.left(PREC.range, choice( - prec.left( - PREC.range + 1, - seq($._expression, choice('..', '...', '..='), $._expression) - ), + seq($._expression, choice('..', '...', '..='), $._expression), seq($._expression, '..'), seq('..', $._expression), '..' @@ -995,7 +996,7 @@ module.exports = grammar({ ), call_expression: $ => prec(PREC.call, seq( - field('function', $._expression), + field('function', $._expression_except_range), field('arguments', $.arguments) )), diff --git a/src/grammar.json b/src/grammar.json index 9c494575..463f8f52 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4622,7 +4622,7 @@ "type": "STRING", "value": "mut" }, - "_expression": { + "_expression_except_range": { "type": "CHOICE", "members": [ { @@ -4653,10 +4653,6 @@ "type": "SYMBOL", "name": "type_cast_expression" }, - { - "type": "SYMBOL", - "name": "range_expression" - }, { "type": "SYMBOL", "name": "call_expression" @@ -4807,10 +4803,6 @@ "type": "SYMBOL", "name": "unit_expression" }, - { - "type": "SYMBOL", - "name": "_expression_ending_with_block" - }, { "type": "SYMBOL", "name": "break_expression" @@ -4838,6 +4830,23 @@ { "type": "SYMBOL", "name": "struct_expression" + }, + { + "type": "SYMBOL", + "name": "_expression_ending_with_block" + } + ] + }, + "_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_except_range" + }, + { + "type": "SYMBOL", + "name": "range_expression" } ] }, @@ -5088,38 +5097,34 @@ "type": "CHOICE", "members": [ { - "type": "PREC_LEFT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "STRING", - "value": "..." - }, - { - "type": "STRING", - "value": "..=" - } - ] - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "..=" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] }, { "type": "SEQ", @@ -5787,7 +5792,7 @@ "name": "function", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "_expression_except_range" } }, { diff --git a/src/node-types.json b/src/node-types.json index 39c647c4..9433e4b3 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -888,7 +888,159 @@ "required": true, "types": [ { - "type": "_expression", + "type": "_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "assignment_expression", + "named": true + }, + { + "type": "async_block", + "named": true + }, + { + "type": "await_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "break_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "closure_expression", + "named": true + }, + { + "type": "compound_assignment_expr", + "named": true + }, + { + "type": "const_block", + "named": true + }, + { + "type": "continue_expression", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "for_expression", + "named": true + }, + { + "type": "generic_function", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "if_let_expression", + "named": true + }, + { + "type": "index_expression", + "named": true + }, + { + "type": "loop_expression", + "named": true + }, + { + "type": "macro_invocation", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "metavariable", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "reference_expression", + "named": true + }, + { + "type": "return_expression", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "self", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "type_cast_expression", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsafe_block", + "named": true + }, + { + "type": "while_expression", + "named": true + }, + { + "type": "while_let_expression", + "named": true + }, + { + "type": "yield_expression", "named": true } ] diff --git a/src/parser.c b/src/parser.c index d174dbb3..da287671 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2541 -#define LARGE_STATE_COUNT 622 -#define SYMBOL_COUNT 315 +#define STATE_COUNT 2544 +#define LARGE_STATE_COUNT 628 +#define SYMBOL_COUNT 316 #define ALIAS_COUNT 3 #define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 @@ -235,105 +235,106 @@ enum { sym_empty_type = 216, sym_abstract_type = 217, sym_dynamic_type = 218, - sym__expression = 219, - sym_macro_invocation = 220, - sym_scoped_identifier = 221, - sym_scoped_type_identifier_in_expression_position = 222, - sym_scoped_type_identifier = 223, - sym_range_expression = 224, - sym_unary_expression = 225, - sym_try_expression = 226, - sym_reference_expression = 227, - sym_binary_expression = 228, - sym_assignment_expression = 229, - sym_compound_assignment_expr = 230, - sym_type_cast_expression = 231, - sym_return_expression = 232, - sym_yield_expression = 233, - sym_call_expression = 234, - sym_arguments = 235, - sym_array_expression = 236, - sym_parenthesized_expression = 237, - sym_tuple_expression = 238, - sym_unit_expression = 239, - sym_struct_expression = 240, - sym_field_initializer_list = 241, - sym_shorthand_field_initializer = 242, - sym_field_initializer = 243, - sym_base_field_initializer = 244, - sym_if_expression = 245, - sym_if_let_expression = 246, - sym_else_clause = 247, - sym_match_expression = 248, - sym_match_block = 249, - sym_match_arm = 250, - sym_last_match_arm = 251, - sym_match_pattern = 252, - sym_while_expression = 253, - sym_while_let_expression = 254, - sym_loop_expression = 255, - sym_for_expression = 256, - sym_const_block = 257, - sym_closure_expression = 258, - sym_closure_parameters = 259, - sym_loop_label = 260, - sym_break_expression = 261, - sym_continue_expression = 262, - sym_index_expression = 263, - sym_await_expression = 264, - sym_field_expression = 265, - sym_unsafe_block = 266, - sym_async_block = 267, - sym_block = 268, - sym__pattern = 269, - sym_tuple_pattern = 270, - sym_slice_pattern = 271, - sym_tuple_struct_pattern = 272, - sym_struct_pattern = 273, - sym_field_pattern = 274, - sym_remaining_field_pattern = 275, - sym_mut_pattern = 276, - sym_range_pattern = 277, - sym_ref_pattern = 278, - sym_captured_pattern = 279, - sym_reference_pattern = 280, - sym_or_pattern = 281, - sym__literal = 282, - sym__literal_pattern = 283, - sym_negative_literal = 284, - sym_string_literal = 285, - sym_boolean_literal = 286, - aux_sym_source_file_repeat1 = 287, - aux_sym_macro_definition_repeat1 = 288, - aux_sym_token_tree_pattern_repeat1 = 289, - aux_sym_token_tree_repeat1 = 290, - aux_sym_meta_arguments_repeat1 = 291, - aux_sym_declaration_list_repeat1 = 292, - aux_sym_enum_variant_list_repeat1 = 293, - aux_sym_enum_variant_list_repeat2 = 294, - aux_sym_field_declaration_list_repeat1 = 295, - aux_sym_ordered_field_declaration_list_repeat1 = 296, - aux_sym_function_modifiers_repeat1 = 297, - aux_sym_where_clause_repeat1 = 298, - aux_sym_trait_bounds_repeat1 = 299, - aux_sym_type_parameters_repeat1 = 300, - aux_sym_use_list_repeat1 = 301, - aux_sym_parameters_repeat1 = 302, - aux_sym_for_lifetimes_repeat1 = 303, - aux_sym_tuple_type_repeat1 = 304, - aux_sym_type_arguments_repeat1 = 305, - aux_sym_arguments_repeat1 = 306, - aux_sym_array_expression_repeat1 = 307, - aux_sym_tuple_expression_repeat1 = 308, - aux_sym_field_initializer_list_repeat1 = 309, - aux_sym_match_block_repeat1 = 310, - aux_sym_closure_parameters_repeat1 = 311, - aux_sym_tuple_pattern_repeat1 = 312, - aux_sym_struct_pattern_repeat1 = 313, - aux_sym_string_literal_repeat1 = 314, - alias_sym_field_identifier = 315, - alias_sym_shorthand_field_identifier = 316, - alias_sym_type_identifier = 317, + sym__expression_except_range = 219, + sym__expression = 220, + sym_macro_invocation = 221, + sym_scoped_identifier = 222, + sym_scoped_type_identifier_in_expression_position = 223, + sym_scoped_type_identifier = 224, + sym_range_expression = 225, + sym_unary_expression = 226, + sym_try_expression = 227, + sym_reference_expression = 228, + sym_binary_expression = 229, + sym_assignment_expression = 230, + sym_compound_assignment_expr = 231, + sym_type_cast_expression = 232, + sym_return_expression = 233, + sym_yield_expression = 234, + sym_call_expression = 235, + sym_arguments = 236, + sym_array_expression = 237, + sym_parenthesized_expression = 238, + sym_tuple_expression = 239, + sym_unit_expression = 240, + sym_struct_expression = 241, + sym_field_initializer_list = 242, + sym_shorthand_field_initializer = 243, + sym_field_initializer = 244, + sym_base_field_initializer = 245, + sym_if_expression = 246, + sym_if_let_expression = 247, + sym_else_clause = 248, + sym_match_expression = 249, + sym_match_block = 250, + sym_match_arm = 251, + sym_last_match_arm = 252, + sym_match_pattern = 253, + sym_while_expression = 254, + sym_while_let_expression = 255, + sym_loop_expression = 256, + sym_for_expression = 257, + sym_const_block = 258, + sym_closure_expression = 259, + sym_closure_parameters = 260, + sym_loop_label = 261, + sym_break_expression = 262, + sym_continue_expression = 263, + sym_index_expression = 264, + sym_await_expression = 265, + sym_field_expression = 266, + sym_unsafe_block = 267, + sym_async_block = 268, + sym_block = 269, + sym__pattern = 270, + sym_tuple_pattern = 271, + sym_slice_pattern = 272, + sym_tuple_struct_pattern = 273, + sym_struct_pattern = 274, + sym_field_pattern = 275, + sym_remaining_field_pattern = 276, + sym_mut_pattern = 277, + sym_range_pattern = 278, + sym_ref_pattern = 279, + sym_captured_pattern = 280, + sym_reference_pattern = 281, + sym_or_pattern = 282, + sym__literal = 283, + sym__literal_pattern = 284, + sym_negative_literal = 285, + sym_string_literal = 286, + sym_boolean_literal = 287, + aux_sym_source_file_repeat1 = 288, + aux_sym_macro_definition_repeat1 = 289, + aux_sym_token_tree_pattern_repeat1 = 290, + aux_sym_token_tree_repeat1 = 291, + aux_sym_meta_arguments_repeat1 = 292, + aux_sym_declaration_list_repeat1 = 293, + aux_sym_enum_variant_list_repeat1 = 294, + aux_sym_enum_variant_list_repeat2 = 295, + aux_sym_field_declaration_list_repeat1 = 296, + aux_sym_ordered_field_declaration_list_repeat1 = 297, + aux_sym_function_modifiers_repeat1 = 298, + aux_sym_where_clause_repeat1 = 299, + aux_sym_trait_bounds_repeat1 = 300, + aux_sym_type_parameters_repeat1 = 301, + aux_sym_use_list_repeat1 = 302, + aux_sym_parameters_repeat1 = 303, + aux_sym_for_lifetimes_repeat1 = 304, + aux_sym_tuple_type_repeat1 = 305, + aux_sym_type_arguments_repeat1 = 306, + aux_sym_arguments_repeat1 = 307, + aux_sym_array_expression_repeat1 = 308, + aux_sym_tuple_expression_repeat1 = 309, + aux_sym_field_initializer_list_repeat1 = 310, + aux_sym_match_block_repeat1 = 311, + aux_sym_closure_parameters_repeat1 = 312, + aux_sym_tuple_pattern_repeat1 = 313, + aux_sym_struct_pattern_repeat1 = 314, + aux_sym_string_literal_repeat1 = 315, + alias_sym_field_identifier = 316, + alias_sym_shorthand_field_identifier = 317, + alias_sym_type_identifier = 318, }; static const char * const ts_symbol_names[] = { @@ -556,6 +557,7 @@ static const char * const ts_symbol_names[] = { [sym_empty_type] = "empty_type", [sym_abstract_type] = "abstract_type", [sym_dynamic_type] = "dynamic_type", + [sym__expression_except_range] = "_expression_except_range", [sym__expression] = "_expression", [sym_macro_invocation] = "macro_invocation", [sym_scoped_identifier] = "scoped_identifier", @@ -877,6 +879,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_empty_type] = sym_empty_type, [sym_abstract_type] = sym_abstract_type, [sym_dynamic_type] = sym_dynamic_type, + [sym__expression_except_range] = sym__expression_except_range, [sym__expression] = sym__expression, [sym_macro_invocation] = sym_macro_invocation, [sym_scoped_identifier] = sym_scoped_identifier, @@ -1856,6 +1859,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__expression_except_range] = { + .visible = false, + .named = true, + }, [sym__expression] = { .visible = false, .named = true, @@ -12020,86 +12027,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [26] = {.lex_state = 1, .external_lex_state = 2}, [27] = {.lex_state = 1, .external_lex_state = 2}, [28] = {.lex_state = 1, .external_lex_state = 2}, - [29] = {.lex_state = 5, .external_lex_state = 2}, - [30] = {.lex_state = 5, .external_lex_state = 2}, - [31] = {.lex_state = 5, .external_lex_state = 2}, - [32] = {.lex_state = 5, .external_lex_state = 2}, + [29] = {.lex_state = 1, .external_lex_state = 2}, + [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}, [35] = {.lex_state = 5, .external_lex_state = 2}, [36] = {.lex_state = 5, .external_lex_state = 2}, - [37] = {.lex_state = 56, .external_lex_state = 2}, + [37] = {.lex_state = 5, .external_lex_state = 2}, [38] = {.lex_state = 5, .external_lex_state = 2}, [39] = {.lex_state = 5, .external_lex_state = 2}, [40] = {.lex_state = 5, .external_lex_state = 2}, - [41] = {.lex_state = 56, .external_lex_state = 2}, - [42] = {.lex_state = 56, .external_lex_state = 2}, - [43] = {.lex_state = 56, .external_lex_state = 2}, + [41] = {.lex_state = 5, .external_lex_state = 2}, + [42] = {.lex_state = 5, .external_lex_state = 2}, + [43] = {.lex_state = 5, .external_lex_state = 2}, [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 5, .external_lex_state = 2}, + [45] = {.lex_state = 56, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 56, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, - [49] = {.lex_state = 56, .external_lex_state = 2}, - [50] = {.lex_state = 56, .external_lex_state = 2}, - [51] = {.lex_state = 56, .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 = 56, .external_lex_state = 2}, - [54] = {.lex_state = 56, .external_lex_state = 2}, - [55] = {.lex_state = 56, .external_lex_state = 2}, - [56] = {.lex_state = 56, .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 = 5, .external_lex_state = 2}, [57] = {.lex_state = 5, .external_lex_state = 2}, - [58] = {.lex_state = 56, .external_lex_state = 2}, - [59] = {.lex_state = 56, .external_lex_state = 2}, + [58] = {.lex_state = 5, .external_lex_state = 2}, + [59] = {.lex_state = 5, .external_lex_state = 2}, [60] = {.lex_state = 56, .external_lex_state = 2}, - [61] = {.lex_state = 56, .external_lex_state = 2}, + [61] = {.lex_state = 5, .external_lex_state = 2}, [62] = {.lex_state = 5, .external_lex_state = 2}, - [63] = {.lex_state = 56, .external_lex_state = 2}, - [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 56, .external_lex_state = 2}, + [63] = {.lex_state = 5, .external_lex_state = 2}, + [64] = {.lex_state = 56, .external_lex_state = 2}, + [65] = {.lex_state = 5, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 56, .external_lex_state = 2}, - [68] = {.lex_state = 56, .external_lex_state = 2}, - [69] = {.lex_state = 56, .external_lex_state = 2}, + [67] = {.lex_state = 5, .external_lex_state = 2}, + [68] = {.lex_state = 5, .external_lex_state = 2}, + [69] = {.lex_state = 5, .external_lex_state = 2}, [70] = {.lex_state = 5, .external_lex_state = 2}, [71] = {.lex_state = 56, .external_lex_state = 2}, [72] = {.lex_state = 5, .external_lex_state = 2}, [73] = {.lex_state = 56, .external_lex_state = 2}, - [74] = {.lex_state = 56, .external_lex_state = 2}, + [74] = {.lex_state = 5, .external_lex_state = 2}, [75] = {.lex_state = 5, .external_lex_state = 2}, - [76] = {.lex_state = 56, .external_lex_state = 2}, + [76] = {.lex_state = 5, .external_lex_state = 2}, [77] = {.lex_state = 56, .external_lex_state = 2}, [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, + [79] = {.lex_state = 56, .external_lex_state = 2}, [80] = {.lex_state = 5, .external_lex_state = 2}, [81] = {.lex_state = 56, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 56, .external_lex_state = 2}, + [83] = {.lex_state = 5, .external_lex_state = 2}, [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 56, .external_lex_state = 2}, + [85] = {.lex_state = 56, .external_lex_state = 2}, + [86] = {.lex_state = 5, .external_lex_state = 2}, [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 5, .external_lex_state = 2}, - [89] = {.lex_state = 56, .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 = 56, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, + [95] = {.lex_state = 56, .external_lex_state = 2}, + [96] = {.lex_state = 56, .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}, + [99] = {.lex_state = 56, .external_lex_state = 2}, [100] = {.lex_state = 5, .external_lex_state = 2}, [101] = {.lex_state = 5, .external_lex_state = 2}, - [102] = {.lex_state = 5, .external_lex_state = 2}, + [102] = {.lex_state = 56, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, [104] = {.lex_state = 5, .external_lex_state = 2}, [105] = {.lex_state = 5, .external_lex_state = 2}, [106] = {.lex_state = 5, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 5, .external_lex_state = 2}, + [108] = {.lex_state = 56, .external_lex_state = 2}, [109] = {.lex_state = 5, .external_lex_state = 2}, [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, @@ -12110,37 +12117,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 5, .external_lex_state = 2}, [117] = {.lex_state = 5, .external_lex_state = 2}, [118] = {.lex_state = 5, .external_lex_state = 2}, - [119] = {.lex_state = 56, .external_lex_state = 2}, + [119] = {.lex_state = 5, .external_lex_state = 2}, [120] = {.lex_state = 5, .external_lex_state = 2}, [121] = {.lex_state = 5, .external_lex_state = 2}, [122] = {.lex_state = 5, .external_lex_state = 2}, - [123] = {.lex_state = 5, .external_lex_state = 2}, + [123] = {.lex_state = 56, .external_lex_state = 2}, [124] = {.lex_state = 5, .external_lex_state = 2}, [125] = {.lex_state = 5, .external_lex_state = 2}, - [126] = {.lex_state = 5, .external_lex_state = 2}, + [126] = {.lex_state = 56, .external_lex_state = 2}, [127] = {.lex_state = 5, .external_lex_state = 2}, [128] = {.lex_state = 5, .external_lex_state = 2}, [129] = {.lex_state = 5, .external_lex_state = 2}, [130] = {.lex_state = 5, .external_lex_state = 2}, - [131] = {.lex_state = 5, .external_lex_state = 2}, + [131] = {.lex_state = 56, .external_lex_state = 2}, [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 5, .external_lex_state = 2}, [134] = {.lex_state = 5, .external_lex_state = 2}, - [135] = {.lex_state = 5, .external_lex_state = 2}, + [135] = {.lex_state = 56, .external_lex_state = 2}, [136] = {.lex_state = 5, .external_lex_state = 2}, [137] = {.lex_state = 5, .external_lex_state = 2}, [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.lex_state = 5, .external_lex_state = 2}, - [140] = {.lex_state = 5, .external_lex_state = 2}, + [140] = {.lex_state = 56, .external_lex_state = 2}, [141] = {.lex_state = 5, .external_lex_state = 2}, - [142] = {.lex_state = 5, .external_lex_state = 2}, + [142] = {.lex_state = 56, .external_lex_state = 2}, [143] = {.lex_state = 5, .external_lex_state = 2}, [144] = {.lex_state = 5, .external_lex_state = 2}, [145] = {.lex_state = 5, .external_lex_state = 2}, [146] = {.lex_state = 5, .external_lex_state = 2}, [147] = {.lex_state = 5, .external_lex_state = 2}, - [148] = {.lex_state = 5, .external_lex_state = 2}, - [149] = {.lex_state = 5, .external_lex_state = 2}, + [148] = {.lex_state = 56, .external_lex_state = 2}, + [149] = {.lex_state = 56, .external_lex_state = 2}, [150] = {.lex_state = 5, .external_lex_state = 2}, [151] = {.lex_state = 5, .external_lex_state = 2}, [152] = {.lex_state = 5, .external_lex_state = 2}, @@ -12151,30 +12158,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [157] = {.lex_state = 5, .external_lex_state = 2}, [158] = {.lex_state = 5, .external_lex_state = 2}, [159] = {.lex_state = 5, .external_lex_state = 2}, - [160] = {.lex_state = 5, .external_lex_state = 2}, + [160] = {.lex_state = 56, .external_lex_state = 2}, [161] = {.lex_state = 5, .external_lex_state = 2}, [162] = {.lex_state = 5, .external_lex_state = 2}, - [163] = {.lex_state = 5, .external_lex_state = 2}, + [163] = {.lex_state = 56, .external_lex_state = 2}, [164] = {.lex_state = 5, .external_lex_state = 2}, [165] = {.lex_state = 5, .external_lex_state = 2}, - [166] = {.lex_state = 5, .external_lex_state = 2}, + [166] = {.lex_state = 56, .external_lex_state = 2}, [167] = {.lex_state = 5, .external_lex_state = 2}, [168] = {.lex_state = 5, .external_lex_state = 2}, [169] = {.lex_state = 5, .external_lex_state = 2}, [170] = {.lex_state = 5, .external_lex_state = 2}, [171] = {.lex_state = 5, .external_lex_state = 2}, [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 5, .external_lex_state = 2}, + [173] = {.lex_state = 56, .external_lex_state = 2}, [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, [176] = {.lex_state = 5, .external_lex_state = 2}, [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 6, .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}, + [178] = {.lex_state = 56, .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 = 56, .external_lex_state = 2}, + [183] = {.lex_state = 56, .external_lex_state = 2}, [184] = {.lex_state = 6, .external_lex_state = 2}, [185] = {.lex_state = 6, .external_lex_state = 2}, [186] = {.lex_state = 6, .external_lex_state = 2}, @@ -12184,67 +12191,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [190] = {.lex_state = 6, .external_lex_state = 2}, [191] = {.lex_state = 6, .external_lex_state = 2}, [192] = {.lex_state = 6, .external_lex_state = 2}, - [193] = {.lex_state = 5, .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 = 1, .external_lex_state = 2}, - [198] = {.lex_state = 5, .external_lex_state = 2}, + [193] = {.lex_state = 6, .external_lex_state = 2}, + [194] = {.lex_state = 6, .external_lex_state = 2}, + [195] = {.lex_state = 6, .external_lex_state = 2}, + [196] = {.lex_state = 6, .external_lex_state = 2}, + [197] = {.lex_state = 6, .external_lex_state = 2}, + [198] = {.lex_state = 6, .external_lex_state = 2}, [199] = {.lex_state = 5, .external_lex_state = 2}, [200] = {.lex_state = 5, .external_lex_state = 2}, [201] = {.lex_state = 5, .external_lex_state = 2}, [202] = {.lex_state = 5, .external_lex_state = 2}, - [203] = {.lex_state = 5, .external_lex_state = 2}, + [203] = {.lex_state = 1, .external_lex_state = 2}, [204] = {.lex_state = 5, .external_lex_state = 2}, [205] = {.lex_state = 5, .external_lex_state = 2}, [206] = {.lex_state = 5, .external_lex_state = 2}, [207] = {.lex_state = 5, .external_lex_state = 2}, [208] = {.lex_state = 5, .external_lex_state = 2}, - [209] = {.lex_state = 1, .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}, + [209] = {.lex_state = 5, .external_lex_state = 2}, + [210] = {.lex_state = 5, .external_lex_state = 2}, + [211] = {.lex_state = 5, .external_lex_state = 2}, + [212] = {.lex_state = 5, .external_lex_state = 2}, + [213] = {.lex_state = 5, .external_lex_state = 2}, + [214] = {.lex_state = 5, .external_lex_state = 2}, [215] = {.lex_state = 1, .external_lex_state = 2}, - [216] = {.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}, [219] = {.lex_state = 1, .external_lex_state = 2}, [220] = {.lex_state = 1, .external_lex_state = 2}, [221] = {.lex_state = 1, .external_lex_state = 2}, [222] = {.lex_state = 1, .external_lex_state = 2}, - [223] = {.lex_state = 1, .external_lex_state = 2}, + [223] = {.lex_state = 5, .external_lex_state = 2}, [224] = {.lex_state = 1, .external_lex_state = 2}, [225] = {.lex_state = 1, .external_lex_state = 2}, [226] = {.lex_state = 1, .external_lex_state = 2}, - [227] = {.lex_state = 5, .external_lex_state = 2}, - [228] = {.lex_state = 1, .external_lex_state = 2}, - [229] = {.lex_state = 1, .external_lex_state = 2}, + [227] = {.lex_state = 1, .external_lex_state = 2}, + [228] = {.lex_state = 5, .external_lex_state = 2}, + [229] = {.lex_state = 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 = 5, .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 = 1, .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 = 5, .external_lex_state = 2}, - [241] = {.lex_state = 5, .external_lex_state = 2}, - [242] = {.lex_state = 4, .external_lex_state = 3}, - [243] = {.lex_state = 4, .external_lex_state = 3}, - [244] = {.lex_state = 12, .external_lex_state = 2}, - [245] = {.lex_state = 4, .external_lex_state = 3}, - [246] = {.lex_state = 4, .external_lex_state = 3}, - [247] = {.lex_state = 4, .external_lex_state = 3}, - [248] = {.lex_state = 57, .external_lex_state = 2}, - [249] = {.lex_state = 57, .external_lex_state = 2}, - [250] = {.lex_state = 57, .external_lex_state = 2}, - [251] = {.lex_state = 57, .external_lex_state = 2}, - [252] = {.lex_state = 57, .external_lex_state = 2}, - [253] = {.lex_state = 57, .external_lex_state = 2}, + [239] = {.lex_state = 1, .external_lex_state = 2}, + [240] = {.lex_state = 1, .external_lex_state = 2}, + [241] = {.lex_state = 1, .external_lex_state = 2}, + [242] = {.lex_state = 1, .external_lex_state = 2}, + [243] = {.lex_state = 1, .external_lex_state = 2}, + [244] = {.lex_state = 1, .external_lex_state = 2}, + [245] = {.lex_state = 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 = 12, .external_lex_state = 2}, + [252] = {.lex_state = 4, .external_lex_state = 3}, + [253] = {.lex_state = 4, .external_lex_state = 3}, [254] = {.lex_state = 57, .external_lex_state = 2}, [255] = {.lex_state = 57, .external_lex_state = 2}, [256] = {.lex_state = 57, .external_lex_state = 2}, @@ -12271,7 +12278,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [277] = {.lex_state = 57, .external_lex_state = 2}, [278] = {.lex_state = 57, .external_lex_state = 2}, [279] = {.lex_state = 57, .external_lex_state = 2}, - [280] = {.lex_state = 57, .external_lex_state = 2}, + [280] = {.lex_state = 5, .external_lex_state = 2}, [281] = {.lex_state = 57, .external_lex_state = 2}, [282] = {.lex_state = 57, .external_lex_state = 2}, [283] = {.lex_state = 57, .external_lex_state = 2}, @@ -12320,7 +12327,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [326] = {.lex_state = 57, .external_lex_state = 2}, [327] = {.lex_state = 57, .external_lex_state = 2}, [328] = {.lex_state = 57, .external_lex_state = 2}, - [329] = {.lex_state = 5, .external_lex_state = 2}, + [329] = {.lex_state = 57, .external_lex_state = 2}, [330] = {.lex_state = 57, .external_lex_state = 2}, [331] = {.lex_state = 57, .external_lex_state = 2}, [332] = {.lex_state = 57, .external_lex_state = 2}, @@ -12352,8 +12359,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [358] = {.lex_state = 57, .external_lex_state = 2}, [359] = {.lex_state = 57, .external_lex_state = 2}, [360] = {.lex_state = 57, .external_lex_state = 2}, - [361] = {.lex_state = 57, .external_lex_state = 2}, - [362] = {.lex_state = 5, .external_lex_state = 2}, + [361] = {.lex_state = 5, .external_lex_state = 2}, + [362] = {.lex_state = 57, .external_lex_state = 2}, [363] = {.lex_state = 57, .external_lex_state = 2}, [364] = {.lex_state = 57, .external_lex_state = 2}, [365] = {.lex_state = 57, .external_lex_state = 2}, @@ -12378,7 +12385,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [384] = {.lex_state = 57, .external_lex_state = 2}, [385] = {.lex_state = 57, .external_lex_state = 2}, [386] = {.lex_state = 57, .external_lex_state = 2}, - [387] = {.lex_state = 57, .external_lex_state = 2}, + [387] = {.lex_state = 5, .external_lex_state = 2}, [388] = {.lex_state = 57, .external_lex_state = 2}, [389] = {.lex_state = 57, .external_lex_state = 2}, [390] = {.lex_state = 57, .external_lex_state = 2}, @@ -12407,7 +12414,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [413] = {.lex_state = 57, .external_lex_state = 2}, [414] = {.lex_state = 57, .external_lex_state = 2}, [415] = {.lex_state = 57, .external_lex_state = 2}, - [416] = {.lex_state = 5, .external_lex_state = 2}, + [416] = {.lex_state = 57, .external_lex_state = 2}, [417] = {.lex_state = 57, .external_lex_state = 2}, [418] = {.lex_state = 57, .external_lex_state = 2}, [419] = {.lex_state = 57, .external_lex_state = 2}, @@ -12467,31 +12474,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [473] = {.lex_state = 57, .external_lex_state = 2}, [474] = {.lex_state = 57, .external_lex_state = 2}, [475] = {.lex_state = 57, .external_lex_state = 2}, - [476] = {.lex_state = 5, .external_lex_state = 2}, - [477] = {.lex_state = 12, .external_lex_state = 2}, - [478] = {.lex_state = 12, .external_lex_state = 2}, - [479] = {.lex_state = 12, .external_lex_state = 2}, - [480] = {.lex_state = 12, .external_lex_state = 2}, - [481] = {.lex_state = 12, .external_lex_state = 2}, - [482] = {.lex_state = 5, .external_lex_state = 2}, + [476] = {.lex_state = 57, .external_lex_state = 2}, + [477] = {.lex_state = 57, .external_lex_state = 2}, + [478] = {.lex_state = 57, .external_lex_state = 2}, + [479] = {.lex_state = 57, .external_lex_state = 2}, + [480] = {.lex_state = 57, .external_lex_state = 2}, + [481] = {.lex_state = 57, .external_lex_state = 2}, + [482] = {.lex_state = 12, .external_lex_state = 2}, [483] = {.lex_state = 12, .external_lex_state = 2}, [484] = {.lex_state = 12, .external_lex_state = 2}, [485] = {.lex_state = 12, .external_lex_state = 2}, [486] = {.lex_state = 12, .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}, + [488] = {.lex_state = 5, .external_lex_state = 2}, + [489] = {.lex_state = 5, .external_lex_state = 2}, [490] = {.lex_state = 12, .external_lex_state = 2}, - [491] = {.lex_state = 12, .external_lex_state = 2}, - [492] = {.lex_state = 5, .external_lex_state = 2}, + [491] = {.lex_state = 5, .external_lex_state = 2}, + [492] = {.lex_state = 12, .external_lex_state = 2}, [493] = {.lex_state = 12, .external_lex_state = 2}, - [494] = {.lex_state = 5, .external_lex_state = 2}, + [494] = {.lex_state = 12, .external_lex_state = 2}, [495] = {.lex_state = 12, .external_lex_state = 2}, [496] = {.lex_state = 12, .external_lex_state = 2}, [497] = {.lex_state = 12, .external_lex_state = 2}, [498] = {.lex_state = 12, .external_lex_state = 2}, [499] = {.lex_state = 12, .external_lex_state = 2}, - [500] = {.lex_state = 12, .external_lex_state = 2}, + [500] = {.lex_state = 5, .external_lex_state = 2}, [501] = {.lex_state = 12, .external_lex_state = 2}, [502] = {.lex_state = 12, .external_lex_state = 2}, [503] = {.lex_state = 12, .external_lex_state = 2}, @@ -12518,61 +12525,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [524] = {.lex_state = 12, .external_lex_state = 2}, [525] = {.lex_state = 12, .external_lex_state = 2}, [526] = {.lex_state = 12, .external_lex_state = 2}, - [527] = {.lex_state = 5, .external_lex_state = 2}, - [528] = {.lex_state = 5, .external_lex_state = 2}, - [529] = {.lex_state = 7, .external_lex_state = 3}, - [530] = {.lex_state = 7, .external_lex_state = 3}, - [531] = {.lex_state = 7, .external_lex_state = 3}, - [532] = {.lex_state = 7, .external_lex_state = 3}, - [533] = {.lex_state = 7, .external_lex_state = 3}, - [534] = {.lex_state = 7, .external_lex_state = 3}, + [527] = {.lex_state = 12, .external_lex_state = 2}, + [528] = {.lex_state = 12, .external_lex_state = 2}, + [529] = {.lex_state = 12, .external_lex_state = 2}, + [530] = {.lex_state = 12, .external_lex_state = 2}, + [531] = {.lex_state = 12, .external_lex_state = 2}, + [532] = {.lex_state = 12, .external_lex_state = 2}, + [533] = {.lex_state = 5, .external_lex_state = 2}, + [534] = {.lex_state = 5, .external_lex_state = 2}, [535] = {.lex_state = 7, .external_lex_state = 3}, [536] = {.lex_state = 7, .external_lex_state = 3}, [537] = {.lex_state = 7, .external_lex_state = 3}, [538] = {.lex_state = 7, .external_lex_state = 3}, - [539] = {.lex_state = 11, .external_lex_state = 2}, - [540] = {.lex_state = 12, .external_lex_state = 2}, - [541] = {.lex_state = 12, .external_lex_state = 2}, - [542] = {.lex_state = 12, .external_lex_state = 2}, - [543] = {.lex_state = 5, .external_lex_state = 2}, - [544] = {.lex_state = 12, .external_lex_state = 2}, - [545] = {.lex_state = 12, .external_lex_state = 2}, + [539] = {.lex_state = 7, .external_lex_state = 3}, + [540] = {.lex_state = 7, .external_lex_state = 3}, + [541] = {.lex_state = 7, .external_lex_state = 3}, + [542] = {.lex_state = 11, .external_lex_state = 2}, + [543] = {.lex_state = 7, .external_lex_state = 3}, + [544] = {.lex_state = 7, .external_lex_state = 3}, + [545] = {.lex_state = 7, .external_lex_state = 3}, [546] = {.lex_state = 12, .external_lex_state = 2}, [547] = {.lex_state = 12, .external_lex_state = 2}, - [548] = {.lex_state = 12, .external_lex_state = 2}, - [549] = {.lex_state = 12, .external_lex_state = 2}, - [550] = {.lex_state = 7, .external_lex_state = 3}, + [548] = {.lex_state = 5, .external_lex_state = 2}, + [549] = {.lex_state = 5, .external_lex_state = 2}, + [550] = {.lex_state = 12, .external_lex_state = 2}, [551] = {.lex_state = 5, .external_lex_state = 2}, [552] = {.lex_state = 12, .external_lex_state = 2}, - [553] = {.lex_state = 5, .external_lex_state = 2}, + [553] = {.lex_state = 7, .external_lex_state = 3}, [554] = {.lex_state = 12, .external_lex_state = 2}, [555] = {.lex_state = 12, .external_lex_state = 2}, - [556] = {.lex_state = 5, .external_lex_state = 2}, + [556] = {.lex_state = 12, .external_lex_state = 2}, [557] = {.lex_state = 12, .external_lex_state = 2}, [558] = {.lex_state = 12, .external_lex_state = 2}, [559] = {.lex_state = 12, .external_lex_state = 2}, [560] = {.lex_state = 12, .external_lex_state = 2}, - [561] = {.lex_state = 5, .external_lex_state = 2}, - [562] = {.lex_state = 5, .external_lex_state = 2}, - [563] = {.lex_state = 7, .external_lex_state = 3}, - [564] = {.lex_state = 5, .external_lex_state = 2}, - [565] = {.lex_state = 5, .external_lex_state = 2}, - [566] = {.lex_state = 5, .external_lex_state = 2}, + [561] = {.lex_state = 12, .external_lex_state = 2}, + [562] = {.lex_state = 12, .external_lex_state = 2}, + [563] = {.lex_state = 5, .external_lex_state = 2}, + [564] = {.lex_state = 12, .external_lex_state = 2}, + [565] = {.lex_state = 12, .external_lex_state = 2}, + [566] = {.lex_state = 12, .external_lex_state = 2}, [567] = {.lex_state = 7, .external_lex_state = 3}, - [568] = {.lex_state = 7, .external_lex_state = 3}, - [569] = {.lex_state = 7, .external_lex_state = 3}, + [568] = {.lex_state = 5, .external_lex_state = 2}, + [569] = {.lex_state = 5, .external_lex_state = 2}, [570] = {.lex_state = 5, .external_lex_state = 2}, - [571] = {.lex_state = 5, .external_lex_state = 2}, + [571] = {.lex_state = 7, .external_lex_state = 3}, [572] = {.lex_state = 5, .external_lex_state = 2}, - [573] = {.lex_state = 5, .external_lex_state = 2}, + [573] = {.lex_state = 7, .external_lex_state = 3}, [574] = {.lex_state = 5, .external_lex_state = 2}, - [575] = {.lex_state = 5, .external_lex_state = 2}, + [575] = {.lex_state = 7, .external_lex_state = 3}, [576] = {.lex_state = 5, .external_lex_state = 2}, - [577] = {.lex_state = 7, .external_lex_state = 3}, + [577] = {.lex_state = 5, .external_lex_state = 2}, [578] = {.lex_state = 5, .external_lex_state = 2}, [579] = {.lex_state = 5, .external_lex_state = 2}, [580] = {.lex_state = 5, .external_lex_state = 2}, - [581] = {.lex_state = 5, .external_lex_state = 2}, + [581] = {.lex_state = 7, .external_lex_state = 3}, [582] = {.lex_state = 5, .external_lex_state = 2}, [583] = {.lex_state = 7, .external_lex_state = 3}, [584] = {.lex_state = 5, .external_lex_state = 2}, @@ -12582,14 +12589,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [588] = {.lex_state = 5, .external_lex_state = 2}, [589] = {.lex_state = 5, .external_lex_state = 2}, [590] = {.lex_state = 5, .external_lex_state = 2}, - [591] = {.lex_state = 5, .external_lex_state = 2}, + [591] = {.lex_state = 7, .external_lex_state = 3}, [592] = {.lex_state = 5, .external_lex_state = 2}, [593] = {.lex_state = 5, .external_lex_state = 2}, [594] = {.lex_state = 5, .external_lex_state = 2}, [595] = {.lex_state = 5, .external_lex_state = 2}, [596] = {.lex_state = 5, .external_lex_state = 2}, [597] = {.lex_state = 5, .external_lex_state = 2}, - [598] = {.lex_state = 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 = 5, .external_lex_state = 2}, @@ -12597,14 +12604,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [603] = {.lex_state = 5, .external_lex_state = 2}, [604] = {.lex_state = 5, .external_lex_state = 2}, [605] = {.lex_state = 5, .external_lex_state = 2}, - [606] = {.lex_state = 5, .external_lex_state = 2}, - [607] = {.lex_state = 7, .external_lex_state = 3}, - [608] = {.lex_state = 7, .external_lex_state = 3}, - [609] = {.lex_state = 7, .external_lex_state = 3}, - [610] = {.lex_state = 7, .external_lex_state = 3}, - [611] = {.lex_state = 7, .external_lex_state = 3}, - [612] = {.lex_state = 7, .external_lex_state = 3}, - [613] = {.lex_state = 7, .external_lex_state = 3}, + [606] = {.lex_state = 7, .external_lex_state = 3}, + [607] = {.lex_state = 5, .external_lex_state = 2}, + [608] = {.lex_state = 5, .external_lex_state = 2}, + [609] = {.lex_state = 5, .external_lex_state = 2}, + [610] = {.lex_state = 5, .external_lex_state = 2}, + [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 = 7, .external_lex_state = 3}, [615] = {.lex_state = 7, .external_lex_state = 3}, [616] = {.lex_state = 7, .external_lex_state = 3}, @@ -12655,7 +12662,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [661] = {.lex_state = 7, .external_lex_state = 3}, [662] = {.lex_state = 7, .external_lex_state = 3}, [663] = {.lex_state = 7, .external_lex_state = 3}, - [664] = {.lex_state = 7, .external_lex_state = 3}, + [664] = {.lex_state = 5, .external_lex_state = 2}, [665] = {.lex_state = 7, .external_lex_state = 3}, [666] = {.lex_state = 7, .external_lex_state = 3}, [667] = {.lex_state = 7, .external_lex_state = 3}, @@ -12705,7 +12712,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [711] = {.lex_state = 7, .external_lex_state = 3}, [712] = {.lex_state = 7, .external_lex_state = 3}, [713] = {.lex_state = 7, .external_lex_state = 3}, - [714] = {.lex_state = 5, .external_lex_state = 2}, + [714] = {.lex_state = 7, .external_lex_state = 3}, [715] = {.lex_state = 7, .external_lex_state = 3}, [716] = {.lex_state = 7, .external_lex_state = 3}, [717] = {.lex_state = 7, .external_lex_state = 3}, @@ -12723,83 +12730,83 @@ 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}, - [733] = {.lex_state = 5, .external_lex_state = 2}, - [734] = {.lex_state = 5, .external_lex_state = 2}, - [735] = {.lex_state = 5, .external_lex_state = 2}, - [736] = {.lex_state = 6, .external_lex_state = 2}, - [737] = {.lex_state = 3, .external_lex_state = 3}, - [738] = {.lex_state = 3, .external_lex_state = 3}, - [739] = {.lex_state = 3, .external_lex_state = 3}, - [740] = {.lex_state = 2, .external_lex_state = 3}, - [741] = {.lex_state = 4, .external_lex_state = 3}, - [742] = {.lex_state = 4, .external_lex_state = 3}, + [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}, + [736] = {.lex_state = 7, .external_lex_state = 3}, + [737] = {.lex_state = 7, .external_lex_state = 3}, + [738] = {.lex_state = 5, .external_lex_state = 2}, + [739] = {.lex_state = 5, .external_lex_state = 2}, + [740] = {.lex_state = 5, .external_lex_state = 2}, + [741] = {.lex_state = 5, .external_lex_state = 2}, + [742] = {.lex_state = 6, .external_lex_state = 2}, [743] = {.lex_state = 3, .external_lex_state = 3}, - [744] = {.lex_state = 4, .external_lex_state = 3}, - [745] = {.lex_state = 2, .external_lex_state = 3}, + [744] = {.lex_state = 3, .external_lex_state = 3}, + [745] = {.lex_state = 3, .external_lex_state = 3}, [746] = {.lex_state = 4, .external_lex_state = 3}, [747] = {.lex_state = 3, .external_lex_state = 3}, [748] = {.lex_state = 3, .external_lex_state = 3}, [749] = {.lex_state = 3, .external_lex_state = 3}, - [750] = {.lex_state = 4, .external_lex_state = 3}, + [750] = {.lex_state = 3, .external_lex_state = 3}, [751] = {.lex_state = 3, .external_lex_state = 3}, - [752] = {.lex_state = 3, .external_lex_state = 3}, + [752] = {.lex_state = 2, .external_lex_state = 3}, [753] = {.lex_state = 3, .external_lex_state = 3}, - [754] = {.lex_state = 2, .external_lex_state = 3}, - [755] = {.lex_state = 2, .external_lex_state = 3}, + [754] = {.lex_state = 4, .external_lex_state = 3}, + [755] = {.lex_state = 4, .external_lex_state = 3}, [756] = {.lex_state = 2, .external_lex_state = 3}, - [757] = {.lex_state = 2, .external_lex_state = 3}, - [758] = {.lex_state = 2, .external_lex_state = 3}, - [759] = {.lex_state = 2, .external_lex_state = 3}, + [757] = {.lex_state = 3, .external_lex_state = 3}, + [758] = {.lex_state = 4, .external_lex_state = 3}, + [759] = {.lex_state = 4, .external_lex_state = 3}, [760] = {.lex_state = 2, .external_lex_state = 3}, [761] = {.lex_state = 2, .external_lex_state = 3}, - [762] = {.lex_state = 4, .external_lex_state = 3}, - [763] = {.lex_state = 4, .external_lex_state = 3}, - [764] = {.lex_state = 4, .external_lex_state = 3}, - [765] = {.lex_state = 4, .external_lex_state = 3}, - [766] = {.lex_state = 4, .external_lex_state = 3}, - [767] = {.lex_state = 4, .external_lex_state = 3}, + [762] = {.lex_state = 2, .external_lex_state = 3}, + [763] = {.lex_state = 2, .external_lex_state = 3}, + [764] = {.lex_state = 2, .external_lex_state = 3}, + [765] = {.lex_state = 2, .external_lex_state = 3}, + [766] = {.lex_state = 2, .external_lex_state = 3}, + [767] = {.lex_state = 2, .external_lex_state = 3}, [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.lex_state = 2, .external_lex_state = 3}, + [769] = {.lex_state = 4, .external_lex_state = 3}, [770] = {.lex_state = 4, .external_lex_state = 3}, [771] = {.lex_state = 4, .external_lex_state = 3}, - [772] = {.lex_state = 4, .external_lex_state = 3}, - [773] = {.lex_state = 4, .external_lex_state = 3}, + [772] = {.lex_state = 2, .external_lex_state = 3}, + [773] = {.lex_state = 2, .external_lex_state = 3}, [774] = {.lex_state = 4, .external_lex_state = 3}, [775] = {.lex_state = 4, .external_lex_state = 3}, [776] = {.lex_state = 4, .external_lex_state = 3}, [777] = {.lex_state = 4, .external_lex_state = 3}, - [778] = {.lex_state = 4, .external_lex_state = 3}, + [778] = {.lex_state = 2, .external_lex_state = 3}, [779] = {.lex_state = 4, .external_lex_state = 3}, [780] = {.lex_state = 4, .external_lex_state = 3}, [781] = {.lex_state = 4, .external_lex_state = 3}, - [782] = {.lex_state = 2, .external_lex_state = 3}, + [782] = {.lex_state = 4, .external_lex_state = 3}, [783] = {.lex_state = 4, .external_lex_state = 3}, [784] = {.lex_state = 4, .external_lex_state = 3}, [785] = {.lex_state = 4, .external_lex_state = 3}, - [786] = {.lex_state = 4, .external_lex_state = 3}, + [786] = {.lex_state = 2, .external_lex_state = 3}, [787] = {.lex_state = 4, .external_lex_state = 3}, [788] = {.lex_state = 4, .external_lex_state = 3}, [789] = {.lex_state = 4, .external_lex_state = 3}, - [790] = {.lex_state = 4, .external_lex_state = 3}, + [790] = {.lex_state = 2, .external_lex_state = 3}, [791] = {.lex_state = 4, .external_lex_state = 3}, - [792] = {.lex_state = 2, .external_lex_state = 3}, + [792] = {.lex_state = 10, .external_lex_state = 3}, [793] = {.lex_state = 4, .external_lex_state = 3}, [794] = {.lex_state = 4, .external_lex_state = 3}, [795] = {.lex_state = 4, .external_lex_state = 3}, - [796] = {.lex_state = 2, .external_lex_state = 3}, + [796] = {.lex_state = 4, .external_lex_state = 3}, [797] = {.lex_state = 4, .external_lex_state = 3}, [798] = {.lex_state = 4, .external_lex_state = 3}, [799] = {.lex_state = 2, .external_lex_state = 3}, [800] = {.lex_state = 4, .external_lex_state = 3}, [801] = {.lex_state = 4, .external_lex_state = 3}, - [802] = {.lex_state = 2, .external_lex_state = 3}, + [802] = {.lex_state = 4, .external_lex_state = 3}, [803] = {.lex_state = 2, .external_lex_state = 3}, - [804] = {.lex_state = 4, .external_lex_state = 3}, + [804] = {.lex_state = 2, .external_lex_state = 3}, [805] = {.lex_state = 4, .external_lex_state = 3}, - [806] = {.lex_state = 4, .external_lex_state = 3}, + [806] = {.lex_state = 2, .external_lex_state = 3}, [807] = {.lex_state = 4, .external_lex_state = 3}, - [808] = {.lex_state = 4, .external_lex_state = 3}, + [808] = {.lex_state = 2, .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}, @@ -12815,21 +12822,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 3}, + [824] = {.lex_state = 4, .external_lex_state = 3}, [825] = {.lex_state = 4, .external_lex_state = 3}, [826] = {.lex_state = 4, .external_lex_state = 3}, [827] = {.lex_state = 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}, + [831] = {.lex_state = 2, .external_lex_state = 3}, [832] = {.lex_state = 4, .external_lex_state = 3}, [833] = {.lex_state = 4, .external_lex_state = 3}, [834] = {.lex_state = 4, .external_lex_state = 3}, [835] = {.lex_state = 4, .external_lex_state = 3}, [836] = {.lex_state = 4, .external_lex_state = 3}, [837] = {.lex_state = 4, .external_lex_state = 3}, - [838] = {.lex_state = 4, .external_lex_state = 3}, + [838] = {.lex_state = 2, .external_lex_state = 3}, [839] = {.lex_state = 4, .external_lex_state = 3}, [840] = {.lex_state = 4, .external_lex_state = 3}, [841] = {.lex_state = 4, .external_lex_state = 3}, @@ -12839,55 +12846,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [845] = {.lex_state = 4, .external_lex_state = 3}, [846] = {.lex_state = 4, .external_lex_state = 3}, [847] = {.lex_state = 4, .external_lex_state = 3}, - [848] = {.lex_state = 4, .external_lex_state = 3}, + [848] = {.lex_state = 2, .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}, + [850] = {.lex_state = 2, .external_lex_state = 3}, + [851] = {.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}, + [855] = {.lex_state = 2, .external_lex_state = 3}, [856] = {.lex_state = 4, .external_lex_state = 3}, - [857] = {.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 = 2, .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}, + [862] = {.lex_state = 4, .external_lex_state = 3}, [863] = {.lex_state = 4, .external_lex_state = 3}, [864] = {.lex_state = 4, .external_lex_state = 3}, - [865] = {.lex_state = 4, .external_lex_state = 3}, - [866] = {.lex_state = 4, .external_lex_state = 3}, + [865] = {.lex_state = 2, .external_lex_state = 3}, + [866] = {.lex_state = 2, .external_lex_state = 3}, [867] = {.lex_state = 4, .external_lex_state = 3}, - [868] = {.lex_state = 2, .external_lex_state = 3}, + [868] = {.lex_state = 4, .external_lex_state = 3}, [869] = {.lex_state = 4, .external_lex_state = 3}, [870] = {.lex_state = 4, .external_lex_state = 3}, [871] = {.lex_state = 4, .external_lex_state = 3}, - [872] = {.lex_state = 4, .external_lex_state = 3}, + [872] = {.lex_state = 2, .external_lex_state = 3}, [873] = {.lex_state = 4, .external_lex_state = 3}, [874] = {.lex_state = 4, .external_lex_state = 3}, [875] = {.lex_state = 4, .external_lex_state = 3}, [876] = {.lex_state = 4, .external_lex_state = 3}, - [877] = {.lex_state = 2, .external_lex_state = 3}, + [877] = {.lex_state = 4, .external_lex_state = 3}, [878] = {.lex_state = 4, .external_lex_state = 3}, [879] = {.lex_state = 4, .external_lex_state = 3}, - [880] = {.lex_state = 4, .external_lex_state = 3}, + [880] = {.lex_state = 2, .external_lex_state = 3}, [881] = {.lex_state = 4, .external_lex_state = 3}, [882] = {.lex_state = 4, .external_lex_state = 3}, [883] = {.lex_state = 4, .external_lex_state = 3}, - [884] = {.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 = 4, .external_lex_state = 3}, - [892] = {.lex_state = 2, .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}, + [896] = {.lex_state = 2, .external_lex_state = 3}, [897] = {.lex_state = 4, .external_lex_state = 3}, [898] = {.lex_state = 4, .external_lex_state = 3}, [899] = {.lex_state = 4, .external_lex_state = 3}, @@ -12897,14 +12904,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [903] = {.lex_state = 4, .external_lex_state = 3}, [904] = {.lex_state = 4, .external_lex_state = 3}, [905] = {.lex_state = 4, .external_lex_state = 3}, - [906] = {.lex_state = 2, .external_lex_state = 3}, - [907] = {.lex_state = 4, .external_lex_state = 3}, + [906] = {.lex_state = 4, .external_lex_state = 3}, + [907] = {.lex_state = 2, .external_lex_state = 3}, [908] = {.lex_state = 4, .external_lex_state = 3}, [909] = {.lex_state = 4, .external_lex_state = 3}, [910] = {.lex_state = 4, .external_lex_state = 3}, [911] = {.lex_state = 4, .external_lex_state = 3}, [912] = {.lex_state = 4, .external_lex_state = 3}, - [913] = {.lex_state = 2, .external_lex_state = 3}, + [913] = {.lex_state = 4, .external_lex_state = 3}, [914] = {.lex_state = 4, .external_lex_state = 3}, [915] = {.lex_state = 4, .external_lex_state = 3}, [916] = {.lex_state = 4, .external_lex_state = 3}, @@ -12922,7 +12929,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [928] = {.lex_state = 4, .external_lex_state = 3}, [929] = {.lex_state = 4, .external_lex_state = 3}, [930] = {.lex_state = 4, .external_lex_state = 3}, - [931] = {.lex_state = 4, .external_lex_state = 3}, + [931] = {.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}, @@ -12937,7 +12944,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4, .external_lex_state = 3}, + [946] = {.lex_state = 2, .external_lex_state = 3}, [947] = {.lex_state = 4, .external_lex_state = 3}, [948] = {.lex_state = 4, .external_lex_state = 3}, [949] = {.lex_state = 4, .external_lex_state = 3}, @@ -12958,9 +12965,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [964] = {.lex_state = 4, .external_lex_state = 3}, [965] = {.lex_state = 4, .external_lex_state = 3}, [966] = {.lex_state = 4, .external_lex_state = 3}, - [967] = {.lex_state = 2, .external_lex_state = 3}, + [967] = {.lex_state = 4, .external_lex_state = 3}, [968] = {.lex_state = 4, .external_lex_state = 3}, - [969] = {.lex_state = 2, .external_lex_state = 3}, + [969] = {.lex_state = 4, .external_lex_state = 3}, [970] = {.lex_state = 4, .external_lex_state = 3}, [971] = {.lex_state = 4, .external_lex_state = 3}, [972] = {.lex_state = 4, .external_lex_state = 3}, @@ -12968,23 +12975,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 3}, - [978] = {.lex_state = 2, .external_lex_state = 3}, - [979] = {.lex_state = 3, .external_lex_state = 3}, - [980] = {.lex_state = 2, .external_lex_state = 3}, + [977] = {.lex_state = 4, .external_lex_state = 3}, + [978] = {.lex_state = 4, .external_lex_state = 3}, + [979] = {.lex_state = 4, .external_lex_state = 3}, + [980] = {.lex_state = 4, .external_lex_state = 3}, [981] = {.lex_state = 4, .external_lex_state = 3}, - [982] = {.lex_state = 2, .external_lex_state = 3}, - [983] = {.lex_state = 2, .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}, - [986] = {.lex_state = 2, .external_lex_state = 3}, - [987] = {.lex_state = 4, .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}, [988] = {.lex_state = 4, .external_lex_state = 3}, - [989] = {.lex_state = 4, .external_lex_state = 3}, - [990] = {.lex_state = 4, .external_lex_state = 3}, + [989] = {.lex_state = 2, .external_lex_state = 3}, + [990] = {.lex_state = 2, .external_lex_state = 3}, [991] = {.lex_state = 4, .external_lex_state = 3}, - [992] = {.lex_state = 10, .external_lex_state = 3}, - [993] = {.lex_state = 2, .external_lex_state = 3}, + [992] = {.lex_state = 4, .external_lex_state = 3}, + [993] = {.lex_state = 4, .external_lex_state = 3}, [994] = {.lex_state = 4, .external_lex_state = 3}, [995] = {.lex_state = 4, .external_lex_state = 3}, [996] = {.lex_state = 4, .external_lex_state = 3}, @@ -12992,7 +12999,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [998] = {.lex_state = 4, .external_lex_state = 3}, [999] = {.lex_state = 4, .external_lex_state = 3}, [1000] = {.lex_state = 4, .external_lex_state = 3}, - [1001] = {.lex_state = 2, .external_lex_state = 3}, + [1001] = {.lex_state = 4, .external_lex_state = 3}, [1002] = {.lex_state = 4, .external_lex_state = 3}, [1003] = {.lex_state = 4, .external_lex_state = 3}, [1004] = {.lex_state = 4, .external_lex_state = 3}, @@ -13001,27 +13008,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1007] = {.lex_state = 4, .external_lex_state = 3}, [1008] = {.lex_state = 4, .external_lex_state = 3}, [1009] = {.lex_state = 4, .external_lex_state = 3}, - [1010] = {.lex_state = 2, .external_lex_state = 3}, + [1010] = {.lex_state = 4, .external_lex_state = 3}, [1011] = {.lex_state = 4, .external_lex_state = 3}, [1012] = {.lex_state = 4, .external_lex_state = 3}, - [1013] = {.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}, + [1015] = {.lex_state = 4, .external_lex_state = 3}, [1016] = {.lex_state = 2, .external_lex_state = 3}, - [1017] = {.lex_state = 4, .external_lex_state = 3}, - [1018] = {.lex_state = 2, .external_lex_state = 3}, - [1019] = {.lex_state = 2, .external_lex_state = 3}, - [1020] = {.lex_state = 7, .external_lex_state = 3}, - [1021] = {.lex_state = 2, .external_lex_state = 3}, - [1022] = {.lex_state = 2, .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}, + [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 = 3, .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 = 2, .external_lex_state = 3}, [1027] = {.lex_state = 2, .external_lex_state = 3}, - [1028] = {.lex_state = 7, .external_lex_state = 3}, + [1028] = {.lex_state = 2, .external_lex_state = 3}, [1029] = {.lex_state = 2, .external_lex_state = 3}, - [1030] = {.lex_state = 2, .external_lex_state = 3}, + [1030] = {.lex_state = 5, .external_lex_state = 2}, [1031] = {.lex_state = 2, .external_lex_state = 3}, [1032] = {.lex_state = 2, .external_lex_state = 3}, [1033] = {.lex_state = 2, .external_lex_state = 3}, @@ -13045,32 +13052,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1051] = {.lex_state = 2, .external_lex_state = 3}, [1052] = {.lex_state = 2, .external_lex_state = 3}, [1053] = {.lex_state = 2, .external_lex_state = 3}, - [1054] = {.lex_state = 2, .external_lex_state = 3}, + [1054] = {.lex_state = 7, .external_lex_state = 3}, [1055] = {.lex_state = 2, .external_lex_state = 3}, - [1056] = {.lex_state = 5, .external_lex_state = 2}, + [1056] = {.lex_state = 2, .external_lex_state = 3}, [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 2, .external_lex_state = 3}, + [1058] = {.lex_state = 7, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 3}, - [1061] = {.lex_state = 7, .external_lex_state = 3}, + [1061] = {.lex_state = 2, .external_lex_state = 3}, [1062] = {.lex_state = 2, .external_lex_state = 3}, [1063] = {.lex_state = 2, .external_lex_state = 3}, - [1064] = {.lex_state = 2, .external_lex_state = 3}, + [1064] = {.lex_state = 7, .external_lex_state = 3}, [1065] = {.lex_state = 2, .external_lex_state = 3}, [1066] = {.lex_state = 2, .external_lex_state = 3}, [1067] = {.lex_state = 2, .external_lex_state = 3}, - [1068] = {.lex_state = 2, .external_lex_state = 3}, + [1068] = {.lex_state = 7, .external_lex_state = 3}, [1069] = {.lex_state = 2, .external_lex_state = 3}, [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 2, .external_lex_state = 3}, [1072] = {.lex_state = 2, .external_lex_state = 3}, [1073] = {.lex_state = 2, .external_lex_state = 3}, - [1074] = {.lex_state = 2, .external_lex_state = 3}, + [1074] = {.lex_state = 7, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 2, .external_lex_state = 3}, - [1077] = {.lex_state = 2, .external_lex_state = 3}, + [1076] = {.lex_state = 7, .external_lex_state = 3}, + [1077] = {.lex_state = 7, .external_lex_state = 3}, [1078] = {.lex_state = 2, .external_lex_state = 3}, - [1079] = {.lex_state = 7, .external_lex_state = 3}, + [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, [1081] = {.lex_state = 2, .external_lex_state = 3}, [1082] = {.lex_state = 2, .external_lex_state = 3}, @@ -13078,17 +13085,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, [1086] = {.lex_state = 2, .external_lex_state = 3}, - [1087] = {.lex_state = 2, .external_lex_state = 3}, + [1087] = {.lex_state = 7, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, - [1090] = {.lex_state = 2, .external_lex_state = 3}, + [1090] = {.lex_state = 5, .external_lex_state = 2}, [1091] = {.lex_state = 2, .external_lex_state = 3}, - [1092] = {.lex_state = 7, .external_lex_state = 3}, + [1092] = {.lex_state = 2, .external_lex_state = 3}, [1093] = {.lex_state = 2, .external_lex_state = 3}, [1094] = {.lex_state = 2, .external_lex_state = 3}, - [1095] = {.lex_state = 2, .external_lex_state = 3}, + [1095] = {.lex_state = 7, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 7, .external_lex_state = 3}, + [1097] = {.lex_state = 2, .external_lex_state = 3}, [1098] = {.lex_state = 2, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 3}, [1100] = {.lex_state = 2, .external_lex_state = 3}, @@ -13096,7 +13103,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 2, .external_lex_state = 3}, [1104] = {.lex_state = 2, .external_lex_state = 3}, - [1105] = {.lex_state = 7, .external_lex_state = 3}, + [1105] = {.lex_state = 2, .external_lex_state = 3}, [1106] = {.lex_state = 2, .external_lex_state = 3}, [1107] = {.lex_state = 2, .external_lex_state = 3}, [1108] = {.lex_state = 2, .external_lex_state = 3}, @@ -13117,13 +13124,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1123] = {.lex_state = 2, .external_lex_state = 3}, [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, - [1126] = {.lex_state = 7, .external_lex_state = 3}, + [1126] = {.lex_state = 2, .external_lex_state = 3}, [1127] = {.lex_state = 2, .external_lex_state = 3}, - [1128] = {.lex_state = 2, .external_lex_state = 3}, - [1129] = {.lex_state = 7, .external_lex_state = 3}, + [1128] = {.lex_state = 5, .external_lex_state = 2}, + [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, - [1132] = {.lex_state = 5, .external_lex_state = 2}, + [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, [1134] = {.lex_state = 2, .external_lex_state = 3}, [1135] = {.lex_state = 2, .external_lex_state = 3}, @@ -13131,55 +13138,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1137] = {.lex_state = 2, .external_lex_state = 3}, [1138] = {.lex_state = 2, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 2, .external_lex_state = 3}, + [1140] = {.lex_state = 5, .external_lex_state = 2}, [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 5, .external_lex_state = 2}, + [1142] = {.lex_state = 2, .external_lex_state = 3}, [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 5, .external_lex_state = 2}, - [1145] = {.lex_state = 7, .external_lex_state = 3}, - [1146] = {.lex_state = 7, .external_lex_state = 3}, - [1147] = {.lex_state = 7, .external_lex_state = 3}, - [1148] = {.lex_state = 5, .external_lex_state = 2}, - [1149] = {.lex_state = 2, .external_lex_state = 3}, - [1150] = {.lex_state = 2, .external_lex_state = 3}, + [1144] = {.lex_state = 2, .external_lex_state = 3}, + [1145] = {.lex_state = 2, .external_lex_state = 3}, + [1146] = {.lex_state = 2, .external_lex_state = 3}, + [1147] = {.lex_state = 2, .external_lex_state = 3}, + [1148] = {.lex_state = 2, .external_lex_state = 3}, + [1149] = {.lex_state = 7, .external_lex_state = 3}, + [1150] = {.lex_state = 7, .external_lex_state = 3}, [1151] = {.lex_state = 7, .external_lex_state = 3}, - [1152] = {.lex_state = 7, .external_lex_state = 3}, + [1152] = {.lex_state = 5, .external_lex_state = 2}, [1153] = {.lex_state = 7, .external_lex_state = 3}, [1154] = {.lex_state = 2, .external_lex_state = 3}, [1155] = {.lex_state = 7, .external_lex_state = 3}, [1156] = {.lex_state = 7, .external_lex_state = 3}, - [1157] = {.lex_state = 5, .external_lex_state = 2}, - [1158] = {.lex_state = 5, .external_lex_state = 2}, + [1157] = {.lex_state = 7, .external_lex_state = 3}, + [1158] = {.lex_state = 7, .external_lex_state = 3}, [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 2, .external_lex_state = 3}, - [1161] = {.lex_state = 2, .external_lex_state = 3}, - [1162] = {.lex_state = 2, .external_lex_state = 3}, - [1163] = {.lex_state = 5, .external_lex_state = 2}, + [1160] = {.lex_state = 5, .external_lex_state = 2}, + [1161] = {.lex_state = 5, .external_lex_state = 2}, + [1162] = {.lex_state = 5, .external_lex_state = 2}, + [1163] = {.lex_state = 2, .external_lex_state = 3}, [1164] = {.lex_state = 5, .external_lex_state = 2}, - [1165] = {.lex_state = 2, .external_lex_state = 3}, + [1165] = {.lex_state = 7, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, [1167] = {.lex_state = 2, .external_lex_state = 3}, [1168] = {.lex_state = 2, .external_lex_state = 3}, [1169] = {.lex_state = 2, .external_lex_state = 3}, [1170] = {.lex_state = 2, .external_lex_state = 3}, - [1171] = {.lex_state = 2, .external_lex_state = 3}, + [1171] = {.lex_state = 7, .external_lex_state = 3}, [1172] = {.lex_state = 7, .external_lex_state = 3}, - [1173] = {.lex_state = 2, .external_lex_state = 3}, - [1174] = {.lex_state = 2, .external_lex_state = 3}, + [1173] = {.lex_state = 7, .external_lex_state = 3}, + [1174] = {.lex_state = 7, .external_lex_state = 3}, [1175] = {.lex_state = 2, .external_lex_state = 3}, [1176] = {.lex_state = 2, .external_lex_state = 3}, - [1177] = {.lex_state = 2, .external_lex_state = 3}, + [1177] = {.lex_state = 7, .external_lex_state = 3}, [1178] = {.lex_state = 2, .external_lex_state = 3}, - [1179] = {.lex_state = 2, .external_lex_state = 3}, - [1180] = {.lex_state = 2, .external_lex_state = 3}, + [1179] = {.lex_state = 5, .external_lex_state = 2}, + [1180] = {.lex_state = 7, .external_lex_state = 3}, [1181] = {.lex_state = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1182] = {.lex_state = 7, .external_lex_state = 3}, [1183] = {.lex_state = 2, .external_lex_state = 3}, [1184] = {.lex_state = 2, .external_lex_state = 3}, [1185] = {.lex_state = 2, .external_lex_state = 3}, [1186] = {.lex_state = 2, .external_lex_state = 3}, [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 2, .external_lex_state = 3}, + [1188] = {.lex_state = 7, .external_lex_state = 3}, [1189] = {.lex_state = 2, .external_lex_state = 3}, [1190] = {.lex_state = 2, .external_lex_state = 3}, [1191] = {.lex_state = 2, .external_lex_state = 3}, @@ -13194,31 +13201,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1200] = {.lex_state = 2, .external_lex_state = 3}, [1201] = {.lex_state = 2, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, - [1203] = {.lex_state = 7, .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}, [1206] = {.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 = 7, .external_lex_state = 3}, + [1208] = {.lex_state = 2, .external_lex_state = 3}, + [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 7, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, [1212] = {.lex_state = 2, .external_lex_state = 3}, [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, [1215] = {.lex_state = 2, .external_lex_state = 3}, [1216] = {.lex_state = 2, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, - [1218] = {.lex_state = 5, .external_lex_state = 2}, + [1218] = {.lex_state = 2, .external_lex_state = 3}, [1219] = {.lex_state = 2, .external_lex_state = 3}, [1220] = {.lex_state = 2, .external_lex_state = 3}, [1221] = {.lex_state = 2, .external_lex_state = 3}, [1222] = {.lex_state = 2, .external_lex_state = 3}, [1223] = {.lex_state = 2, .external_lex_state = 3}, [1224] = {.lex_state = 2, .external_lex_state = 3}, - [1225] = {.lex_state = 7, .external_lex_state = 3}, + [1225] = {.lex_state = 2, .external_lex_state = 3}, [1226] = {.lex_state = 2, .external_lex_state = 3}, - [1227] = {.lex_state = 7, .external_lex_state = 3}, + [1227] = {.lex_state = 2, .external_lex_state = 3}, [1228] = {.lex_state = 2, .external_lex_state = 3}, [1229] = {.lex_state = 2, .external_lex_state = 3}, [1230] = {.lex_state = 2, .external_lex_state = 3}, @@ -13229,7 +13236,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1235] = {.lex_state = 2, .external_lex_state = 3}, [1236] = {.lex_state = 2, .external_lex_state = 3}, [1237] = {.lex_state = 2, .external_lex_state = 3}, - [1238] = {.lex_state = 7, .external_lex_state = 3}, + [1238] = {.lex_state = 2, .external_lex_state = 3}, [1239] = {.lex_state = 2, .external_lex_state = 3}, [1240] = {.lex_state = 2, .external_lex_state = 3}, [1241] = {.lex_state = 2, .external_lex_state = 3}, @@ -13255,7 +13262,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1261] = {.lex_state = 2, .external_lex_state = 3}, [1262] = {.lex_state = 2, .external_lex_state = 3}, [1263] = {.lex_state = 2, .external_lex_state = 3}, - [1264] = {.lex_state = 2, .external_lex_state = 3}, + [1264] = {.lex_state = 7, .external_lex_state = 3}, [1265] = {.lex_state = 2, .external_lex_state = 3}, [1266] = {.lex_state = 2, .external_lex_state = 3}, [1267] = {.lex_state = 2, .external_lex_state = 3}, @@ -13265,8 +13272,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1271] = {.lex_state = 2, .external_lex_state = 3}, [1272] = {.lex_state = 2, .external_lex_state = 3}, [1273] = {.lex_state = 2, .external_lex_state = 3}, - [1274] = {.lex_state = 2, .external_lex_state = 3}, - [1275] = {.lex_state = 7, .external_lex_state = 3}, + [1274] = {.lex_state = 7, .external_lex_state = 3}, + [1275] = {.lex_state = 2, .external_lex_state = 3}, [1276] = {.lex_state = 2, .external_lex_state = 3}, [1277] = {.lex_state = 2, .external_lex_state = 3}, [1278] = {.lex_state = 2, .external_lex_state = 3}, @@ -13283,12 +13290,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 7, .external_lex_state = 3}, - [1293] = {.lex_state = 7, .external_lex_state = 3}, - [1294] = {.lex_state = 7, .external_lex_state = 3}, - [1295] = {.lex_state = 7, .external_lex_state = 3}, + [1292] = {.lex_state = 2, .external_lex_state = 3}, + [1293] = {.lex_state = 2, .external_lex_state = 3}, + [1294] = {.lex_state = 2, .external_lex_state = 3}, + [1295] = {.lex_state = 2, .external_lex_state = 3}, [1296] = {.lex_state = 7, .external_lex_state = 3}, - [1297] = {.lex_state = 7, .external_lex_state = 3}, + [1297] = {.lex_state = 2, .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}, @@ -13303,11 +13310,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 17, .external_lex_state = 3}, - [1313] = {.lex_state = 17, .external_lex_state = 3}, - [1314] = {.lex_state = 9, .external_lex_state = 3}, - [1315] = {.lex_state = 9, .external_lex_state = 3}, - [1316] = {.lex_state = 9, .external_lex_state = 3}, + [1312] = {.lex_state = 7, .external_lex_state = 3}, + [1313] = {.lex_state = 7, .external_lex_state = 3}, + [1314] = {.lex_state = 7, .external_lex_state = 3}, + [1315] = {.lex_state = 17, .external_lex_state = 3}, + [1316] = {.lex_state = 17, .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}, @@ -13317,54 +13324,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 17, .external_lex_state = 3}, - [1327] = {.lex_state = 7, .external_lex_state = 3}, - [1328] = {.lex_state = 17, .external_lex_state = 3}, + [1326] = {.lex_state = 9, .external_lex_state = 3}, + [1327] = {.lex_state = 9, .external_lex_state = 3}, + [1328] = {.lex_state = 9, .external_lex_state = 3}, [1329] = {.lex_state = 7, .external_lex_state = 3}, [1330] = {.lex_state = 17, .external_lex_state = 3}, - [1331] = {.lex_state = 17, .external_lex_state = 3}, - [1332] = {.lex_state = 7, .external_lex_state = 3}, - [1333] = {.lex_state = 7, .external_lex_state = 3}, + [1331] = {.lex_state = 7, .external_lex_state = 3}, + [1332] = {.lex_state = 17, .external_lex_state = 3}, + [1333] = {.lex_state = 17, .external_lex_state = 3}, [1334] = {.lex_state = 7, .external_lex_state = 3}, - [1335] = {.lex_state = 7, .external_lex_state = 3}, + [1335] = {.lex_state = 17, .external_lex_state = 3}, [1336] = {.lex_state = 7, .external_lex_state = 3}, [1337] = {.lex_state = 7, .external_lex_state = 3}, [1338] = {.lex_state = 7, .external_lex_state = 3}, [1339] = {.lex_state = 7, .external_lex_state = 3}, - [1340] = {.lex_state = 9, .external_lex_state = 3}, - [1341] = {.lex_state = 7, .external_lex_state = 3}, - [1342] = {.lex_state = 17, .external_lex_state = 3}, + [1340] = {.lex_state = 7, .external_lex_state = 3}, + [1341] = {.lex_state = 9, .external_lex_state = 3}, + [1342] = {.lex_state = 7, .external_lex_state = 3}, [1343] = {.lex_state = 7, .external_lex_state = 3}, - [1344] = {.lex_state = 7, .external_lex_state = 3}, - [1345] = {.lex_state = 7, .external_lex_state = 3}, + [1344] = {.lex_state = 9, .external_lex_state = 3}, + [1345] = {.lex_state = 9, .external_lex_state = 3}, [1346] = {.lex_state = 7, .external_lex_state = 3}, [1347] = {.lex_state = 7, .external_lex_state = 3}, [1348] = {.lex_state = 7, .external_lex_state = 3}, - [1349] = {.lex_state = 9, .external_lex_state = 3}, - [1350] = {.lex_state = 9, .external_lex_state = 3}, - [1351] = {.lex_state = 17, .external_lex_state = 3}, + [1349] = {.lex_state = 17, .external_lex_state = 3}, + [1350] = {.lex_state = 7, .external_lex_state = 3}, + [1351] = {.lex_state = 7, .external_lex_state = 3}, [1352] = {.lex_state = 7, .external_lex_state = 3}, - [1353] = {.lex_state = 17, .external_lex_state = 3}, + [1353] = {.lex_state = 7, .external_lex_state = 3}, [1354] = {.lex_state = 7, .external_lex_state = 3}, [1355] = {.lex_state = 17, .external_lex_state = 3}, [1356] = {.lex_state = 17, .external_lex_state = 3}, - [1357] = {.lex_state = 17, .external_lex_state = 3}, - [1358] = {.lex_state = 7, .external_lex_state = 3}, + [1357] = {.lex_state = 7, .external_lex_state = 3}, + [1358] = {.lex_state = 17, .external_lex_state = 3}, [1359] = {.lex_state = 7, .external_lex_state = 3}, - [1360] = {.lex_state = 7, .external_lex_state = 3}, - [1361] = {.lex_state = 17, .external_lex_state = 3}, + [1360] = {.lex_state = 17, .external_lex_state = 3}, + [1361] = {.lex_state = 9, .external_lex_state = 3}, [1362] = {.lex_state = 17, .external_lex_state = 3}, [1363] = {.lex_state = 17, .external_lex_state = 3}, [1364] = {.lex_state = 17, .external_lex_state = 3}, [1365] = {.lex_state = 17, .external_lex_state = 3}, - [1366] = {.lex_state = 17, .external_lex_state = 3}, - [1367] = {.lex_state = 7, .external_lex_state = 3}, + [1366] = {.lex_state = 7, .external_lex_state = 3}, + [1367] = {.lex_state = 17, .external_lex_state = 3}, [1368] = {.lex_state = 17, .external_lex_state = 3}, [1369] = {.lex_state = 7, .external_lex_state = 3}, - [1370] = {.lex_state = 17, .external_lex_state = 3}, - [1371] = {.lex_state = 9, .external_lex_state = 3}, + [1370] = {.lex_state = 7, .external_lex_state = 3}, + [1371] = {.lex_state = 17, .external_lex_state = 3}, [1372] = {.lex_state = 17, .external_lex_state = 3}, - [1373] = {.lex_state = 17, .external_lex_state = 3}, + [1373] = {.lex_state = 7, .external_lex_state = 3}, [1374] = {.lex_state = 17, .external_lex_state = 3}, [1375] = {.lex_state = 17, .external_lex_state = 3}, [1376] = {.lex_state = 17, .external_lex_state = 3}, @@ -13392,98 +13399,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1398] = {.lex_state = 17, .external_lex_state = 3}, [1399] = {.lex_state = 17, .external_lex_state = 3}, [1400] = {.lex_state = 17, .external_lex_state = 3}, - [1401] = {.lex_state = 7, .external_lex_state = 3}, + [1401] = {.lex_state = 17, .external_lex_state = 3}, [1402] = {.lex_state = 17, .external_lex_state = 3}, - [1403] = {.lex_state = 9, .external_lex_state = 3}, - [1404] = {.lex_state = 7, .external_lex_state = 3}, + [1403] = {.lex_state = 17, .external_lex_state = 3}, + [1404] = {.lex_state = 17, .external_lex_state = 3}, [1405] = {.lex_state = 7, .external_lex_state = 3}, - [1406] = {.lex_state = 7, .external_lex_state = 3}, - [1407] = {.lex_state = 17, .external_lex_state = 3}, - [1408] = {.lex_state = 17, .external_lex_state = 3}, - [1409] = {.lex_state = 9, .external_lex_state = 3}, - [1410] = {.lex_state = 9, .external_lex_state = 3}, - [1411] = {.lex_state = 9, .external_lex_state = 3}, - [1412] = {.lex_state = 9, .external_lex_state = 3}, - [1413] = {.lex_state = 9, .external_lex_state = 3}, + [1406] = {.lex_state = 9, .external_lex_state = 3}, + [1407] = {.lex_state = 9, .external_lex_state = 3}, + [1408] = {.lex_state = 9, .external_lex_state = 3}, + [1409] = {.lex_state = 7, .external_lex_state = 3}, + [1410] = {.lex_state = 17, .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}, [1414] = {.lex_state = 9, .external_lex_state = 3}, [1415] = {.lex_state = 9, .external_lex_state = 3}, [1416] = {.lex_state = 9, .external_lex_state = 3}, - [1417] = {.lex_state = 17, .external_lex_state = 3}, + [1417] = {.lex_state = 9, .external_lex_state = 3}, [1418] = {.lex_state = 7, .external_lex_state = 3}, [1419] = {.lex_state = 7, .external_lex_state = 3}, - [1420] = {.lex_state = 9, .external_lex_state = 3}, + [1420] = {.lex_state = 7, .external_lex_state = 3}, [1421] = {.lex_state = 9, .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 = 9, .external_lex_state = 3}, + [1423] = {.lex_state = 9, .external_lex_state = 3}, + [1424] = {.lex_state = 17, .external_lex_state = 3}, + [1425] = {.lex_state = 17, .external_lex_state = 3}, [1426] = {.lex_state = 9, .external_lex_state = 3}, - [1427] = {.lex_state = 17, .external_lex_state = 3}, - [1428] = {.lex_state = 17, .external_lex_state = 3}, - [1429] = {.lex_state = 7, .external_lex_state = 3}, - [1430] = {.lex_state = 9, .external_lex_state = 3}, + [1427] = {.lex_state = 9, .external_lex_state = 3}, + [1428] = {.lex_state = 9, .external_lex_state = 3}, + [1429] = {.lex_state = 9, .external_lex_state = 3}, + [1430] = {.lex_state = 17, .external_lex_state = 3}, [1431] = {.lex_state = 9, .external_lex_state = 3}, [1432] = {.lex_state = 17, .external_lex_state = 3}, - [1433] = {.lex_state = 17, .external_lex_state = 3}, - [1434] = {.lex_state = 9, .external_lex_state = 3}, - [1435] = {.lex_state = 13, .external_lex_state = 3}, - [1436] = {.lex_state = 9, .external_lex_state = 3}, + [1433] = {.lex_state = 13, .external_lex_state = 3}, + [1434] = {.lex_state = 13, .external_lex_state = 3}, + [1435] = {.lex_state = 17, .external_lex_state = 3}, + [1436] = {.lex_state = 17, .external_lex_state = 3}, [1437] = {.lex_state = 17, .external_lex_state = 3}, - [1438] = {.lex_state = 9, .external_lex_state = 3}, - [1439] = {.lex_state = 9, .external_lex_state = 3}, - [1440] = {.lex_state = 13, .external_lex_state = 3}, + [1438] = {.lex_state = 17, .external_lex_state = 3}, + [1439] = {.lex_state = 13, .external_lex_state = 3}, + [1440] = {.lex_state = 17, .external_lex_state = 3}, [1441] = {.lex_state = 17, .external_lex_state = 3}, [1442] = {.lex_state = 9, .external_lex_state = 3}, - [1443] = {.lex_state = 13, .external_lex_state = 3}, - [1444] = {.lex_state = 9, .external_lex_state = 3}, - [1445] = {.lex_state = 17, .external_lex_state = 3}, + [1443] = {.lex_state = 9, .external_lex_state = 3}, + [1444] = {.lex_state = 17, .external_lex_state = 3}, + [1445] = {.lex_state = 7, .external_lex_state = 3}, [1446] = {.lex_state = 17, .external_lex_state = 3}, [1447] = {.lex_state = 17, .external_lex_state = 3}, - [1448] = {.lex_state = 17, .external_lex_state = 3}, + [1448] = {.lex_state = 9, .external_lex_state = 3}, [1449] = {.lex_state = 17, .external_lex_state = 3}, - [1450] = {.lex_state = 13, .external_lex_state = 3}, + [1450] = {.lex_state = 17, .external_lex_state = 3}, [1451] = {.lex_state = 17, .external_lex_state = 3}, [1452] = {.lex_state = 17, .external_lex_state = 3}, - [1453] = {.lex_state = 17, .external_lex_state = 3}, + [1453] = {.lex_state = 9, .external_lex_state = 3}, [1454] = {.lex_state = 17, .external_lex_state = 3}, [1455] = {.lex_state = 17, .external_lex_state = 3}, [1456] = {.lex_state = 17, .external_lex_state = 3}, [1457] = {.lex_state = 17, .external_lex_state = 3}, [1458] = {.lex_state = 17, .external_lex_state = 3}, - [1459] = {.lex_state = 17, .external_lex_state = 3}, - [1460] = {.lex_state = 17, .external_lex_state = 3}, - [1461] = {.lex_state = 17, .external_lex_state = 3}, + [1459] = {.lex_state = 9, .external_lex_state = 3}, + [1460] = {.lex_state = 9, .external_lex_state = 3}, + [1461] = {.lex_state = 9, .external_lex_state = 3}, [1462] = {.lex_state = 17, .external_lex_state = 3}, - [1463] = {.lex_state = 7, .external_lex_state = 3}, + [1463] = {.lex_state = 17, .external_lex_state = 3}, [1464] = {.lex_state = 17, .external_lex_state = 3}, [1465] = {.lex_state = 17, .external_lex_state = 3}, [1466] = {.lex_state = 17, .external_lex_state = 3}, [1467] = {.lex_state = 17, .external_lex_state = 3}, - [1468] = {.lex_state = 17, .external_lex_state = 3}, + [1468] = {.lex_state = 7, .external_lex_state = 3}, [1469] = {.lex_state = 17, .external_lex_state = 3}, [1470] = {.lex_state = 17, .external_lex_state = 3}, [1471] = {.lex_state = 17, .external_lex_state = 3}, - [1472] = {.lex_state = 7, .external_lex_state = 3}, - [1473] = {.lex_state = 9, .external_lex_state = 3}, - [1474] = {.lex_state = 7, .external_lex_state = 3}, + [1472] = {.lex_state = 17, .external_lex_state = 3}, + [1473] = {.lex_state = 13, .external_lex_state = 3}, + [1474] = {.lex_state = 17, .external_lex_state = 3}, [1475] = {.lex_state = 7, .external_lex_state = 3}, [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 14, .external_lex_state = 3}, - [1478] = {.lex_state = 7, .external_lex_state = 3}, + [1477] = {.lex_state = 7, .external_lex_state = 3}, + [1478] = {.lex_state = 1, .external_lex_state = 2}, [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 1, .external_lex_state = 2}, - [1481] = {.lex_state = 1, .external_lex_state = 2}, - [1482] = {.lex_state = 17, .external_lex_state = 3}, - [1483] = {.lex_state = 7, .external_lex_state = 3}, + [1480] = {.lex_state = 7, .external_lex_state = 3}, + [1481] = {.lex_state = 14, .external_lex_state = 3}, + [1482] = {.lex_state = 1, .external_lex_state = 2}, + [1483] = {.lex_state = 9, .external_lex_state = 3}, [1484] = {.lex_state = 7, .external_lex_state = 3}, - [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 17, .external_lex_state = 3}, + [1485] = {.lex_state = 17, .external_lex_state = 3}, + [1486] = {.lex_state = 7, .external_lex_state = 3}, [1487] = {.lex_state = 7, .external_lex_state = 3}, [1488] = {.lex_state = 7, .external_lex_state = 3}, [1489] = {.lex_state = 7, .external_lex_state = 3}, - [1490] = {.lex_state = 7, .external_lex_state = 3}, + [1490] = {.lex_state = 17, .external_lex_state = 3}, [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, + [1492] = {.lex_state = 4, .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}, @@ -13491,741 +13498,741 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1497] = {.lex_state = 7, .external_lex_state = 3}, [1498] = {.lex_state = 17, .external_lex_state = 3}, [1499] = {.lex_state = 7, .external_lex_state = 3}, - [1500] = {.lex_state = 7, .external_lex_state = 3}, - [1501] = {.lex_state = 17, .external_lex_state = 3}, - [1502] = {.lex_state = 17, .external_lex_state = 3}, + [1500] = {.lex_state = 14, .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 = 7, .external_lex_state = 3}, [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 17, .external_lex_state = 3}, - [1507] = {.lex_state = 4, .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 = 14, .external_lex_state = 3}, + [1512] = {.lex_state = 7, .external_lex_state = 3}, [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 17, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 3}, + [1514] = {.lex_state = 7, .external_lex_state = 3}, + [1515] = {.lex_state = 17, .external_lex_state = 3}, [1516] = {.lex_state = 17, .external_lex_state = 3}, - [1517] = {.lex_state = 14, .external_lex_state = 3}, - [1518] = {.lex_state = 7, .external_lex_state = 3}, + [1517] = {.lex_state = 7, .external_lex_state = 3}, + [1518] = {.lex_state = 17, .external_lex_state = 3}, [1519] = {.lex_state = 17, .external_lex_state = 3}, [1520] = {.lex_state = 7, .external_lex_state = 3}, [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 7, .external_lex_state = 3}, - [1523] = {.lex_state = 7, .external_lex_state = 3}, + [1522] = {.lex_state = 17, .external_lex_state = 3}, + [1523] = {.lex_state = 17, .external_lex_state = 3}, [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 3}, + [1525] = {.lex_state = 14, .external_lex_state = 3}, [1526] = {.lex_state = 7, .external_lex_state = 3}, [1527] = {.lex_state = 7, .external_lex_state = 3}, - [1528] = {.lex_state = 14, .external_lex_state = 3}, + [1528] = {.lex_state = 7, .external_lex_state = 3}, [1529] = {.lex_state = 7, .external_lex_state = 3}, - [1530] = {.lex_state = 4, .external_lex_state = 3}, - [1531] = {.lex_state = 4, .external_lex_state = 3}, + [1530] = {.lex_state = 7, .external_lex_state = 3}, + [1531] = {.lex_state = 7, .external_lex_state = 3}, [1532] = {.lex_state = 7, .external_lex_state = 3}, - [1533] = {.lex_state = 7, .external_lex_state = 3}, + [1533] = {.lex_state = 14, .external_lex_state = 3}, [1534] = {.lex_state = 4, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, + [1535] = {.lex_state = 14, .external_lex_state = 3}, [1536] = {.lex_state = 7, .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}, + [1539] = {.lex_state = 4, .external_lex_state = 3}, [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 7, .external_lex_state = 3}, + [1541] = {.lex_state = 14, .external_lex_state = 3}, [1542] = {.lex_state = 14, .external_lex_state = 3}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 14, .external_lex_state = 3}, + [1543] = {.lex_state = 14, .external_lex_state = 3}, + [1544] = {.lex_state = 7, .external_lex_state = 3}, [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 4, .external_lex_state = 3}, + [1546] = {.lex_state = 7, .external_lex_state = 3}, [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 14, .external_lex_state = 3}, + [1548] = {.lex_state = 7, .external_lex_state = 3}, [1549] = {.lex_state = 7, .external_lex_state = 3}, [1550] = {.lex_state = 7, .external_lex_state = 3}, - [1551] = {.lex_state = 14, .external_lex_state = 3}, - [1552] = {.lex_state = 13, .external_lex_state = 3}, - [1553] = {.lex_state = 14, .external_lex_state = 3}, - [1554] = {.lex_state = 7, .external_lex_state = 3}, + [1551] = {.lex_state = 7, .external_lex_state = 3}, + [1552] = {.lex_state = 7, .external_lex_state = 3}, + [1553] = {.lex_state = 0, .external_lex_state = 3}, + [1554] = {.lex_state = 13, .external_lex_state = 3}, [1555] = {.lex_state = 7, .external_lex_state = 3}, - [1556] = {.lex_state = 7, .external_lex_state = 3}, + [1556] = {.lex_state = 14, .external_lex_state = 3}, [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 14, .external_lex_state = 3}, + [1558] = {.lex_state = 7, .external_lex_state = 3}, [1559] = {.lex_state = 7, .external_lex_state = 3}, [1560] = {.lex_state = 14, .external_lex_state = 3}, [1561] = {.lex_state = 7, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, + [1562] = {.lex_state = 14, .external_lex_state = 3}, [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 14, .external_lex_state = 3}, + [1564] = {.lex_state = 4, .external_lex_state = 3}, [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 0, .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}, - [1569] = {.lex_state = 0, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 0, .external_lex_state = 3}, + [1568] = {.lex_state = 14, .external_lex_state = 3}, + [1569] = {.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 = 0, .external_lex_state = 3}, - [1574] = {.lex_state = 14, .external_lex_state = 3}, - [1575] = {.lex_state = 0, .external_lex_state = 3}, - [1576] = {.lex_state = 0, .external_lex_state = 3}, + [1573] = {.lex_state = 7, .external_lex_state = 3}, + [1574] = {.lex_state = 0, .external_lex_state = 3}, + [1575] = {.lex_state = 7, .external_lex_state = 3}, + [1576] = {.lex_state = 7, .external_lex_state = 3}, [1577] = {.lex_state = 0, .external_lex_state = 3}, - [1578] = {.lex_state = 14, .external_lex_state = 3}, - [1579] = {.lex_state = 7, .external_lex_state = 3}, + [1578] = {.lex_state = 0, .external_lex_state = 3}, + [1579] = {.lex_state = 4, .external_lex_state = 3}, [1580] = {.lex_state = 7, .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}, + [1581] = {.lex_state = 0, .external_lex_state = 3}, + [1582] = {.lex_state = 7, .external_lex_state = 3}, + [1583] = {.lex_state = 0, .external_lex_state = 3}, [1584] = {.lex_state = 0, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 0, .external_lex_state = 3}, - [1587] = {.lex_state = 0, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, + [1585] = {.lex_state = 0, .external_lex_state = 3}, + [1586] = {.lex_state = 7, .external_lex_state = 3}, + [1587] = {.lex_state = 7, .external_lex_state = 3}, + [1588] = {.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}, + [1590] = {.lex_state = 14, .external_lex_state = 3}, + [1591] = {.lex_state = 14, .external_lex_state = 3}, [1592] = {.lex_state = 7, .external_lex_state = 3}, [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, - [1595] = {.lex_state = 0, .external_lex_state = 3}, - [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 0, .external_lex_state = 3}, - [1598] = {.lex_state = 7, .external_lex_state = 3}, - [1599] = {.lex_state = 0, .external_lex_state = 3}, - [1600] = {.lex_state = 14, .external_lex_state = 3}, - [1601] = {.lex_state = 14, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 0, .external_lex_state = 3}, + [1594] = {.lex_state = 0, .external_lex_state = 3}, + [1595] = {.lex_state = 7, .external_lex_state = 3}, + [1596] = {.lex_state = 14, .external_lex_state = 3}, + [1597] = {.lex_state = 14, .external_lex_state = 3}, + [1598] = {.lex_state = 0, .external_lex_state = 3}, + [1599] = {.lex_state = 7, .external_lex_state = 3}, + [1600] = {.lex_state = 0, .external_lex_state = 3}, + [1601] = {.lex_state = 0, .external_lex_state = 3}, + [1602] = {.lex_state = 0, .external_lex_state = 3}, + [1603] = {.lex_state = 7, .external_lex_state = 3}, [1604] = {.lex_state = 0, .external_lex_state = 3}, - [1605] = {.lex_state = 4, .external_lex_state = 3}, + [1605] = {.lex_state = 0, .external_lex_state = 3}, [1606] = {.lex_state = 7, .external_lex_state = 3}, [1607] = {.lex_state = 0, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 3}, + [1608] = {.lex_state = 0, .external_lex_state = 3}, [1609] = {.lex_state = 0, .external_lex_state = 3}, [1610] = {.lex_state = 0, .external_lex_state = 3}, - [1611] = {.lex_state = 0, .external_lex_state = 3}, - [1612] = {.lex_state = 0, .external_lex_state = 3}, + [1611] = {.lex_state = 7, .external_lex_state = 3}, + [1612] = {.lex_state = 7, .external_lex_state = 3}, [1613] = {.lex_state = 0, .external_lex_state = 3}, - [1614] = {.lex_state = 7, .external_lex_state = 3}, + [1614] = {.lex_state = 0, .external_lex_state = 3}, [1615] = {.lex_state = 7, .external_lex_state = 3}, [1616] = {.lex_state = 7, .external_lex_state = 3}, [1617] = {.lex_state = 7, .external_lex_state = 3}, [1618] = {.lex_state = 7, .external_lex_state = 3}, [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 7, .external_lex_state = 3}, - [1621] = {.lex_state = 10, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, + [1620] = {.lex_state = 17, .external_lex_state = 3}, + [1621] = {.lex_state = 7, .external_lex_state = 3}, + [1622] = {.lex_state = 10, .external_lex_state = 3}, [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 4, .external_lex_state = 3}, - [1625] = {.lex_state = 0, .external_lex_state = 3}, - [1626] = {.lex_state = 4, .external_lex_state = 3}, + [1624] = {.lex_state = 7, .external_lex_state = 3}, + [1625] = {.lex_state = 7, .external_lex_state = 3}, + [1626] = {.lex_state = 7, .external_lex_state = 3}, [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 17, .external_lex_state = 3}, + [1628] = {.lex_state = 7, .external_lex_state = 3}, [1629] = {.lex_state = 7, .external_lex_state = 3}, [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 17, .external_lex_state = 3}, + [1631] = {.lex_state = 7, .external_lex_state = 3}, [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 4, .external_lex_state = 3}, - [1634] = {.lex_state = 0, .external_lex_state = 3}, + [1633] = {.lex_state = 10, .external_lex_state = 3}, + [1634] = {.lex_state = 7, .external_lex_state = 3}, [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 7, .external_lex_state = 3}, + [1636] = {.lex_state = 17, .external_lex_state = 3}, [1637] = {.lex_state = 7, .external_lex_state = 3}, [1638] = {.lex_state = 7, .external_lex_state = 3}, [1639] = {.lex_state = 17, .external_lex_state = 3}, - [1640] = {.lex_state = 17, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, + [1640] = {.lex_state = 7, .external_lex_state = 3}, + [1641] = {.lex_state = 13, .external_lex_state = 3}, [1642] = {.lex_state = 7, .external_lex_state = 3}, [1643] = {.lex_state = 7, .external_lex_state = 3}, [1644] = {.lex_state = 7, .external_lex_state = 3}, [1645] = {.lex_state = 7, .external_lex_state = 3}, [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 13, .external_lex_state = 3}, - [1649] = {.lex_state = 57, .external_lex_state = 3}, - [1650] = {.lex_state = 0, .external_lex_state = 3}, + [1647] = {.lex_state = 4, .external_lex_state = 3}, + [1648] = {.lex_state = 17, .external_lex_state = 3}, + [1649] = {.lex_state = 7, .external_lex_state = 3}, + [1650] = {.lex_state = 7, .external_lex_state = 3}, [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 10, .external_lex_state = 3}, - [1653] = {.lex_state = 57, .external_lex_state = 3}, - [1654] = {.lex_state = 17, .external_lex_state = 3}, - [1655] = {.lex_state = 10, .external_lex_state = 3}, + [1652] = {.lex_state = 7, .external_lex_state = 3}, + [1653] = {.lex_state = 14, .external_lex_state = 3}, + [1654] = {.lex_state = 7, .external_lex_state = 3}, + [1655] = {.lex_state = 7, .external_lex_state = 3}, [1656] = {.lex_state = 7, .external_lex_state = 3}, [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, + [1658] = {.lex_state = 10, .external_lex_state = 3}, [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, + [1660] = {.lex_state = 17, .external_lex_state = 3}, [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, + [1662] = {.lex_state = 10, .external_lex_state = 3}, + [1663] = {.lex_state = 0, .external_lex_state = 3}, [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 17, .external_lex_state = 3}, + [1665] = {.lex_state = 7, .external_lex_state = 3}, [1666] = {.lex_state = 7, .external_lex_state = 3}, - [1667] = {.lex_state = 17, .external_lex_state = 3}, - [1668] = {.lex_state = 14, .external_lex_state = 3}, - [1669] = {.lex_state = 17, .external_lex_state = 3}, - [1670] = {.lex_state = 17, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, + [1667] = {.lex_state = 4, .external_lex_state = 3}, + [1668] = {.lex_state = 0, .external_lex_state = 3}, + [1669] = {.lex_state = 7, .external_lex_state = 3}, + [1670] = {.lex_state = 7, .external_lex_state = 3}, + [1671] = {.lex_state = 17, .external_lex_state = 3}, [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, + [1673] = {.lex_state = 10, .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 = 7, .external_lex_state = 3}, [1678] = {.lex_state = 7, .external_lex_state = 3}, [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, + [1680] = {.lex_state = 10, .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 = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 10, .external_lex_state = 3}, + [1687] = {.lex_state = 57, .external_lex_state = 3}, + [1688] = {.lex_state = 57, .external_lex_state = 3}, [1689] = {.lex_state = 7, .external_lex_state = 3}, [1690] = {.lex_state = 7, .external_lex_state = 3}, [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 10, .external_lex_state = 3}, + [1692] = {.lex_state = 7, .external_lex_state = 3}, [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 10, .external_lex_state = 3}, + [1694] = {.lex_state = 7, .external_lex_state = 3}, [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, - [1697] = {.lex_state = 7, .external_lex_state = 3}, + [1696] = {.lex_state = 13, .external_lex_state = 3}, + [1697] = {.lex_state = 17, .external_lex_state = 3}, [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 17, .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}, + [1702] = {.lex_state = 17, .external_lex_state = 3}, [1703] = {.lex_state = 7, .external_lex_state = 3}, - [1704] = {.lex_state = 13, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, + [1704] = {.lex_state = 7, .external_lex_state = 3}, + [1705] = {.lex_state = 4, .external_lex_state = 3}, + [1706] = {.lex_state = 17, .external_lex_state = 3}, [1707] = {.lex_state = 0, .external_lex_state = 3}, - [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 17, .external_lex_state = 3}, - [1710] = {.lex_state = 7, .external_lex_state = 3}, - [1711] = {.lex_state = 4, .external_lex_state = 3}, - [1712] = {.lex_state = 17, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, + [1708] = {.lex_state = 17, .external_lex_state = 3}, + [1709] = {.lex_state = 7, .external_lex_state = 3}, + [1710] = {.lex_state = 17, .external_lex_state = 3}, + [1711] = {.lex_state = 7, .external_lex_state = 3}, + [1712] = {.lex_state = 7, .external_lex_state = 3}, + [1713] = {.lex_state = 4, .external_lex_state = 3}, [1714] = {.lex_state = 17, .external_lex_state = 3}, [1715] = {.lex_state = 7, .external_lex_state = 3}, [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 0, .external_lex_state = 3}, - [1718] = {.lex_state = 0, .external_lex_state = 3}, - [1719] = {.lex_state = 0, .external_lex_state = 3}, + [1717] = {.lex_state = 7, .external_lex_state = 3}, + [1718] = {.lex_state = 7, .external_lex_state = 3}, + [1719] = {.lex_state = 10, .external_lex_state = 3}, [1720] = {.lex_state = 10, .external_lex_state = 3}, - [1721] = {.lex_state = 17, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 10, .external_lex_state = 3}, - [1724] = {.lex_state = 10, .external_lex_state = 3}, + [1721] = {.lex_state = 7, .external_lex_state = 3}, + [1722] = {.lex_state = 0, .external_lex_state = 3}, + [1723] = {.lex_state = 7, .external_lex_state = 3}, + [1724] = {.lex_state = 17, .external_lex_state = 3}, [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 10, .external_lex_state = 3}, - [1727] = {.lex_state = 4, .external_lex_state = 3}, - [1728] = {.lex_state = 0, .external_lex_state = 3}, + [1726] = {.lex_state = 57, .external_lex_state = 3}, + [1727] = {.lex_state = 0, .external_lex_state = 3}, + [1728] = {.lex_state = 4, .external_lex_state = 3}, [1729] = {.lex_state = 17, .external_lex_state = 3}, - [1730] = {.lex_state = 7, .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}, + [1730] = {.lex_state = 17, .external_lex_state = 3}, + [1731] = {.lex_state = 17, .external_lex_state = 3}, + [1732] = {.lex_state = 0, .external_lex_state = 3}, + [1733] = {.lex_state = 0, .external_lex_state = 3}, [1734] = {.lex_state = 17, .external_lex_state = 3}, - [1735] = {.lex_state = 17, .external_lex_state = 3}, - [1736] = {.lex_state = 0, .external_lex_state = 3}, - [1737] = {.lex_state = 7, .external_lex_state = 3}, - [1738] = {.lex_state = 57, .external_lex_state = 3}, - [1739] = {.lex_state = 0, .external_lex_state = 3}, - [1740] = {.lex_state = 57, .external_lex_state = 3}, - [1741] = {.lex_state = 17, .external_lex_state = 3}, + [1735] = {.lex_state = 0, .external_lex_state = 3}, + [1736] = {.lex_state = 10, .external_lex_state = 3}, + [1737] = {.lex_state = 10, .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 = 7, .external_lex_state = 3}, [1742] = {.lex_state = 7, .external_lex_state = 3}, - [1743] = {.lex_state = 10, .external_lex_state = 3}, + [1743] = {.lex_state = 7, .external_lex_state = 3}, [1744] = {.lex_state = 7, .external_lex_state = 3}, [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 17, .external_lex_state = 3}, - [1747] = {.lex_state = 10, .external_lex_state = 3}, - [1748] = {.lex_state = 7, .external_lex_state = 3}, - [1749] = {.lex_state = 7, .external_lex_state = 3}, - [1750] = {.lex_state = 7, .external_lex_state = 3}, - [1751] = {.lex_state = 0, .external_lex_state = 3}, - [1752] = {.lex_state = 17, .external_lex_state = 3}, + [1746] = {.lex_state = 7, .external_lex_state = 3}, + [1747] = {.lex_state = 17, .external_lex_state = 3}, + [1748] = {.lex_state = 17, .external_lex_state = 3}, + [1749] = {.lex_state = 57, .external_lex_state = 3}, + [1750] = {.lex_state = 17, .external_lex_state = 3}, + [1751] = {.lex_state = 7, .external_lex_state = 3}, + [1752] = {.lex_state = 7, .external_lex_state = 3}, [1753] = {.lex_state = 17, .external_lex_state = 3}, - [1754] = {.lex_state = 7, .external_lex_state = 3}, - [1755] = {.lex_state = 7, .external_lex_state = 3}, + [1754] = {.lex_state = 0, .external_lex_state = 3}, + [1755] = {.lex_state = 0, .external_lex_state = 3}, [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 10, .external_lex_state = 3}, - [1758] = {.lex_state = 57, .external_lex_state = 3}, - [1759] = {.lex_state = 0, .external_lex_state = 3}, - [1760] = {.lex_state = 4, .external_lex_state = 4}, - [1761] = {.lex_state = 4, .external_lex_state = 3}, - [1762] = {.lex_state = 0, .external_lex_state = 3}, - [1763] = {.lex_state = 17, .external_lex_state = 3}, - [1764] = {.lex_state = 7, .external_lex_state = 3}, - [1765] = {.lex_state = 17, .external_lex_state = 3}, - [1766] = {.lex_state = 57, .external_lex_state = 3}, - [1767] = {.lex_state = 7, .external_lex_state = 3}, - [1768] = {.lex_state = 4, .external_lex_state = 3}, - [1769] = {.lex_state = 10, .external_lex_state = 3}, - [1770] = {.lex_state = 57, .external_lex_state = 3}, - [1771] = {.lex_state = 7, .external_lex_state = 3}, + [1757] = {.lex_state = 7, .external_lex_state = 3}, + [1758] = {.lex_state = 7, .external_lex_state = 3}, + [1759] = {.lex_state = 7, .external_lex_state = 3}, + [1760] = {.lex_state = 57, .external_lex_state = 3}, + [1761] = {.lex_state = 17, .external_lex_state = 3}, + [1762] = {.lex_state = 18, .external_lex_state = 3}, + [1763] = {.lex_state = 4, .external_lex_state = 3}, + [1764] = {.lex_state = 4, .external_lex_state = 4}, + [1765] = {.lex_state = 4, .external_lex_state = 3}, + [1766] = {.lex_state = 0, .external_lex_state = 3}, + [1767] = {.lex_state = 57, .external_lex_state = 3}, + [1768] = {.lex_state = 57, .external_lex_state = 3}, + [1769] = {.lex_state = 57, .external_lex_state = 3}, + [1770] = {.lex_state = 17, .external_lex_state = 3}, + [1771] = {.lex_state = 18, .external_lex_state = 3}, [1772] = {.lex_state = 18, .external_lex_state = 3}, [1773] = {.lex_state = 7, .external_lex_state = 3}, - [1774] = {.lex_state = 0, .external_lex_state = 3}, - [1775] = {.lex_state = 57, .external_lex_state = 3}, + [1774] = {.lex_state = 57, .external_lex_state = 3}, + [1775] = {.lex_state = 17, .external_lex_state = 3}, [1776] = {.lex_state = 7, .external_lex_state = 3}, [1777] = {.lex_state = 7, .external_lex_state = 3}, - [1778] = {.lex_state = 7, .external_lex_state = 3}, + [1778] = {.lex_state = 57, .external_lex_state = 3}, [1779] = {.lex_state = 57, .external_lex_state = 3}, [1780] = {.lex_state = 0, .external_lex_state = 3}, - [1781] = {.lex_state = 7, .external_lex_state = 3}, - [1782] = {.lex_state = 4, .external_lex_state = 4}, - [1783] = {.lex_state = 7, .external_lex_state = 3}, - [1784] = {.lex_state = 57, .external_lex_state = 3}, + [1781] = {.lex_state = 4, .external_lex_state = 3}, + [1782] = {.lex_state = 0, .external_lex_state = 3}, + [1783] = {.lex_state = 17, .external_lex_state = 3}, + [1784] = {.lex_state = 4, .external_lex_state = 4}, [1785] = {.lex_state = 0, .external_lex_state = 3}, [1786] = {.lex_state = 0, .external_lex_state = 3}, - [1787] = {.lex_state = 57, .external_lex_state = 3}, - [1788] = {.lex_state = 0, .external_lex_state = 3}, - [1789] = {.lex_state = 17, .external_lex_state = 3}, + [1787] = {.lex_state = 0, .external_lex_state = 3}, + [1788] = {.lex_state = 7, .external_lex_state = 3}, + [1789] = {.lex_state = 57, .external_lex_state = 3}, [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 0, .external_lex_state = 3}, - [1792] = {.lex_state = 7, .external_lex_state = 3}, - [1793] = {.lex_state = 57, .external_lex_state = 3}, - [1794] = {.lex_state = 57, .external_lex_state = 3}, - [1795] = {.lex_state = 0, .external_lex_state = 3}, - [1796] = {.lex_state = 57, .external_lex_state = 3}, - [1797] = {.lex_state = 0, .external_lex_state = 3}, - [1798] = {.lex_state = 0, .external_lex_state = 3}, - [1799] = {.lex_state = 17, .external_lex_state = 3}, - [1800] = {.lex_state = 0, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 7, .external_lex_state = 3}, - [1803] = {.lex_state = 57, .external_lex_state = 3}, - [1804] = {.lex_state = 57, .external_lex_state = 3}, - [1805] = {.lex_state = 57, .external_lex_state = 3}, - [1806] = {.lex_state = 17, .external_lex_state = 3}, - [1807] = {.lex_state = 4, .external_lex_state = 4}, + [1791] = {.lex_state = 4, .external_lex_state = 4}, + [1792] = {.lex_state = 57, .external_lex_state = 3}, + [1793] = {.lex_state = 0, .external_lex_state = 3}, + [1794] = {.lex_state = 4, .external_lex_state = 4}, + [1795] = {.lex_state = 17, .external_lex_state = 3}, + [1796] = {.lex_state = 0, .external_lex_state = 3}, + [1797] = {.lex_state = 7, .external_lex_state = 3}, + [1798] = {.lex_state = 57, .external_lex_state = 3}, + [1799] = {.lex_state = 57, .external_lex_state = 3}, + [1800] = {.lex_state = 7, .external_lex_state = 3}, + [1801] = {.lex_state = 18, .external_lex_state = 3}, + [1802] = {.lex_state = 57, .external_lex_state = 3}, + [1803] = {.lex_state = 7, .external_lex_state = 3}, + [1804] = {.lex_state = 7, .external_lex_state = 3}, + [1805] = {.lex_state = 7, .external_lex_state = 3}, + [1806] = {.lex_state = 57, .external_lex_state = 3}, + [1807] = {.lex_state = 57, .external_lex_state = 3}, [1808] = {.lex_state = 0, .external_lex_state = 3}, - [1809] = {.lex_state = 4, .external_lex_state = 4}, - [1810] = {.lex_state = 57, .external_lex_state = 3}, - [1811] = {.lex_state = 7, .external_lex_state = 3}, - [1812] = {.lex_state = 18, .external_lex_state = 3}, - [1813] = {.lex_state = 17, .external_lex_state = 3}, - [1814] = {.lex_state = 4, .external_lex_state = 4}, - [1815] = {.lex_state = 57, .external_lex_state = 3}, - [1816] = {.lex_state = 57, .external_lex_state = 3}, - [1817] = {.lex_state = 57, .external_lex_state = 3}, - [1818] = {.lex_state = 7, .external_lex_state = 3}, - [1819] = {.lex_state = 0, .external_lex_state = 3}, + [1809] = {.lex_state = 57, .external_lex_state = 3}, + [1810] = {.lex_state = 7, .external_lex_state = 3}, + [1811] = {.lex_state = 57, .external_lex_state = 3}, + [1812] = {.lex_state = 7, .external_lex_state = 3}, + [1813] = {.lex_state = 57, .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 = 4, .external_lex_state = 3}, + [1818] = {.lex_state = 17, .external_lex_state = 3}, + [1819] = {.lex_state = 57, .external_lex_state = 3}, [1820] = {.lex_state = 57, .external_lex_state = 3}, [1821] = {.lex_state = 7, .external_lex_state = 3}, - [1822] = {.lex_state = 7, .external_lex_state = 3}, - [1823] = {.lex_state = 0, .external_lex_state = 3}, - [1824] = {.lex_state = 7, .external_lex_state = 3}, - [1825] = {.lex_state = 57, .external_lex_state = 3}, - [1826] = {.lex_state = 7, .external_lex_state = 3}, - [1827] = {.lex_state = 4, .external_lex_state = 4}, - [1828] = {.lex_state = 7, .external_lex_state = 3}, - [1829] = {.lex_state = 57, .external_lex_state = 3}, + [1822] = {.lex_state = 57, .external_lex_state = 3}, + [1823] = {.lex_state = 7, .external_lex_state = 3}, + [1824] = {.lex_state = 10, .external_lex_state = 3}, + [1825] = {.lex_state = 7, .external_lex_state = 3}, + [1826] = {.lex_state = 10, .external_lex_state = 3}, + [1827] = {.lex_state = 7, .external_lex_state = 3}, + [1828] = {.lex_state = 17, .external_lex_state = 3}, + [1829] = {.lex_state = 0, .external_lex_state = 3}, [1830] = {.lex_state = 57, .external_lex_state = 3}, [1831] = {.lex_state = 57, .external_lex_state = 3}, [1832] = {.lex_state = 57, .external_lex_state = 3}, - [1833] = {.lex_state = 57, .external_lex_state = 3}, - [1834] = {.lex_state = 17, .external_lex_state = 3}, - [1835] = {.lex_state = 17, .external_lex_state = 3}, - [1836] = {.lex_state = 57, .external_lex_state = 3}, + [1833] = {.lex_state = 17, .external_lex_state = 3}, + [1834] = {.lex_state = 7, .external_lex_state = 3}, + [1835] = {.lex_state = 0, .external_lex_state = 3}, + [1836] = {.lex_state = 4, .external_lex_state = 4}, [1837] = {.lex_state = 7, .external_lex_state = 3}, - [1838] = {.lex_state = 0, .external_lex_state = 3}, - [1839] = {.lex_state = 7, .external_lex_state = 3}, - [1840] = {.lex_state = 18, .external_lex_state = 3}, - [1841] = {.lex_state = 4, .external_lex_state = 4}, - [1842] = {.lex_state = 4, .external_lex_state = 3}, + [1838] = {.lex_state = 17, .external_lex_state = 3}, + [1839] = {.lex_state = 0, .external_lex_state = 3}, + [1840] = {.lex_state = 57, .external_lex_state = 3}, + [1841] = {.lex_state = 57, .external_lex_state = 3}, + [1842] = {.lex_state = 57, .external_lex_state = 3}, [1843] = {.lex_state = 0, .external_lex_state = 3}, - [1844] = {.lex_state = 0, .external_lex_state = 3}, - [1845] = {.lex_state = 17, .external_lex_state = 3}, - [1846] = {.lex_state = 57, .external_lex_state = 3}, - [1847] = {.lex_state = 4, .external_lex_state = 3}, - [1848] = {.lex_state = 7, .external_lex_state = 3}, - [1849] = {.lex_state = 7, .external_lex_state = 3}, - [1850] = {.lex_state = 7, .external_lex_state = 3}, - [1851] = {.lex_state = 57, .external_lex_state = 3}, - [1852] = {.lex_state = 18, .external_lex_state = 3}, - [1853] = {.lex_state = 17, .external_lex_state = 3}, - [1854] = {.lex_state = 17, .external_lex_state = 3}, + [1844] = {.lex_state = 57, .external_lex_state = 3}, + [1845] = {.lex_state = 4, .external_lex_state = 4}, + [1846] = {.lex_state = 0, .external_lex_state = 3}, + [1847] = {.lex_state = 57, .external_lex_state = 3}, + [1848] = {.lex_state = 17, .external_lex_state = 3}, + [1849] = {.lex_state = 0, .external_lex_state = 3}, + [1850] = {.lex_state = 0, .external_lex_state = 3}, + [1851] = {.lex_state = 17, .external_lex_state = 3}, + [1852] = {.lex_state = 4, .external_lex_state = 4}, + [1853] = {.lex_state = 0, .external_lex_state = 3}, + [1854] = {.lex_state = 7, .external_lex_state = 3}, [1855] = {.lex_state = 57, .external_lex_state = 3}, - [1856] = {.lex_state = 57, .external_lex_state = 3}, - [1857] = {.lex_state = 57, .external_lex_state = 3}, - [1858] = {.lex_state = 0, .external_lex_state = 3}, - [1859] = {.lex_state = 57, .external_lex_state = 3}, - [1860] = {.lex_state = 7, .external_lex_state = 3}, + [1856] = {.lex_state = 0, .external_lex_state = 3}, + [1857] = {.lex_state = 7, .external_lex_state = 3}, + [1858] = {.lex_state = 7, .external_lex_state = 3}, + [1859] = {.lex_state = 7, .external_lex_state = 3}, + [1860] = {.lex_state = 0, .external_lex_state = 3}, [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 0, .external_lex_state = 3}, - [1863] = {.lex_state = 3, .external_lex_state = 3}, + [1862] = {.lex_state = 57, .external_lex_state = 3}, + [1863] = {.lex_state = 0, .external_lex_state = 3}, [1864] = {.lex_state = 7, .external_lex_state = 3}, - [1865] = {.lex_state = 7, .external_lex_state = 3}, - [1866] = {.lex_state = 57, .external_lex_state = 3}, - [1867] = {.lex_state = 0, .external_lex_state = 3}, - [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 57, .external_lex_state = 3}, - [1870] = {.lex_state = 0, .external_lex_state = 3}, - [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 0, .external_lex_state = 3}, - [1873] = {.lex_state = 7, .external_lex_state = 3}, + [1865] = {.lex_state = 57, .external_lex_state = 3}, + [1866] = {.lex_state = 7, .external_lex_state = 3}, + [1867] = {.lex_state = 7, .external_lex_state = 3}, + [1868] = {.lex_state = 57, .external_lex_state = 3}, + [1869] = {.lex_state = 0, .external_lex_state = 3}, + [1870] = {.lex_state = 7, .external_lex_state = 3}, + [1871] = {.lex_state = 57, .external_lex_state = 3}, + [1872] = {.lex_state = 7, .external_lex_state = 3}, + [1873] = {.lex_state = 57, .external_lex_state = 3}, [1874] = {.lex_state = 0, .external_lex_state = 3}, [1875] = {.lex_state = 0, .external_lex_state = 3}, - [1876] = {.lex_state = 7, .external_lex_state = 3}, - [1877] = {.lex_state = 0, .external_lex_state = 3}, - [1878] = {.lex_state = 7, .external_lex_state = 3}, - [1879] = {.lex_state = 3, .external_lex_state = 3}, + [1876] = {.lex_state = 0, .external_lex_state = 3}, + [1877] = {.lex_state = 57, .external_lex_state = 3}, + [1878] = {.lex_state = 0, .external_lex_state = 3}, + [1879] = {.lex_state = 0, .external_lex_state = 3}, [1880] = {.lex_state = 0, .external_lex_state = 3}, [1881] = {.lex_state = 0, .external_lex_state = 3}, - [1882] = {.lex_state = 57, .external_lex_state = 3}, + [1882] = {.lex_state = 0, .external_lex_state = 3}, [1883] = {.lex_state = 0, .external_lex_state = 3}, - [1884] = {.lex_state = 0, .external_lex_state = 3}, - [1885] = {.lex_state = 7, .external_lex_state = 3}, + [1884] = {.lex_state = 7, .external_lex_state = 3}, + [1885] = {.lex_state = 57, .external_lex_state = 3}, [1886] = {.lex_state = 0, .external_lex_state = 3}, - [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 7, .external_lex_state = 3}, + [1887] = {.lex_state = 57, .external_lex_state = 3}, + [1888] = {.lex_state = 57, .external_lex_state = 3}, [1889] = {.lex_state = 0, .external_lex_state = 3}, - [1890] = {.lex_state = 0, .external_lex_state = 3}, + [1890] = {.lex_state = 57, .external_lex_state = 3}, [1891] = {.lex_state = 7, .external_lex_state = 3}, - [1892] = {.lex_state = 3, .external_lex_state = 3}, + [1892] = {.lex_state = 0, .external_lex_state = 3}, [1893] = {.lex_state = 0, .external_lex_state = 3}, [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 7, .external_lex_state = 3}, - [1896] = {.lex_state = 0, .external_lex_state = 3}, + [1895] = {.lex_state = 0, .external_lex_state = 3}, + [1896] = {.lex_state = 57, .external_lex_state = 3}, [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 0, .external_lex_state = 3}, - [1899] = {.lex_state = 57, .external_lex_state = 3}, - [1900] = {.lex_state = 0, .external_lex_state = 3}, - [1901] = {.lex_state = 7, .external_lex_state = 3}, + [1898] = {.lex_state = 7, .external_lex_state = 3}, + [1899] = {.lex_state = 0, .external_lex_state = 3}, + [1900] = {.lex_state = 57, .external_lex_state = 3}, + [1901] = {.lex_state = 57, .external_lex_state = 3}, [1902] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [1907] = {.lex_state = 57, .external_lex_state = 3}, - [1908] = {.lex_state = 10, .external_lex_state = 3}, + [1906] = {.lex_state = 7, .external_lex_state = 3}, + [1907] = {.lex_state = 0, .external_lex_state = 3}, + [1908] = {.lex_state = 57, .external_lex_state = 3}, [1909] = {.lex_state = 57, .external_lex_state = 3}, [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 57, .external_lex_state = 3}, - [1912] = {.lex_state = 57, .external_lex_state = 3}, - [1913] = {.lex_state = 57, .external_lex_state = 3}, + [1911] = {.lex_state = 7, .external_lex_state = 3}, + [1912] = {.lex_state = 0, .external_lex_state = 3}, + [1913] = {.lex_state = 0, .external_lex_state = 3}, [1914] = {.lex_state = 57, .external_lex_state = 3}, - [1915] = {.lex_state = 57, .external_lex_state = 3}, - [1916] = {.lex_state = 57, .external_lex_state = 3}, - [1917] = {.lex_state = 57, .external_lex_state = 3}, - [1918] = {.lex_state = 7, .external_lex_state = 3}, - [1919] = {.lex_state = 4, .external_lex_state = 3}, - [1920] = {.lex_state = 57, .external_lex_state = 3}, + [1915] = {.lex_state = 0, .external_lex_state = 3}, + [1916] = {.lex_state = 10, .external_lex_state = 3}, + [1917] = {.lex_state = 0, .external_lex_state = 3}, + [1918] = {.lex_state = 0, .external_lex_state = 3}, + [1919] = {.lex_state = 0, .external_lex_state = 3}, + [1920] = {.lex_state = 0, .external_lex_state = 3}, [1921] = {.lex_state = 10, .external_lex_state = 3}, - [1922] = {.lex_state = 0, .external_lex_state = 3}, + [1922] = {.lex_state = 57, .external_lex_state = 3}, [1923] = {.lex_state = 57, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 7, .external_lex_state = 3}, + [1925] = {.lex_state = 57, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, [1927] = {.lex_state = 0, .external_lex_state = 3}, - [1928] = {.lex_state = 0, .external_lex_state = 3}, + [1928] = {.lex_state = 57, .external_lex_state = 3}, [1929] = {.lex_state = 0, .external_lex_state = 3}, - [1930] = {.lex_state = 57, .external_lex_state = 3}, - [1931] = {.lex_state = 57, .external_lex_state = 3}, - [1932] = {.lex_state = 57, .external_lex_state = 3}, + [1930] = {.lex_state = 0, .external_lex_state = 3}, + [1931] = {.lex_state = 0, .external_lex_state = 3}, + [1932] = {.lex_state = 0, .external_lex_state = 3}, [1933] = {.lex_state = 7, .external_lex_state = 3}, [1934] = {.lex_state = 0, .external_lex_state = 3}, - [1935] = {.lex_state = 7, .external_lex_state = 3}, - [1936] = {.lex_state = 57, .external_lex_state = 3}, - [1937] = {.lex_state = 57, .external_lex_state = 3}, - [1938] = {.lex_state = 57, .external_lex_state = 3}, - [1939] = {.lex_state = 3, .external_lex_state = 3}, - [1940] = {.lex_state = 57, .external_lex_state = 3}, - [1941] = {.lex_state = 0, .external_lex_state = 3}, - [1942] = {.lex_state = 57, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, - [1944] = {.lex_state = 4, .external_lex_state = 3}, - [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 57, .external_lex_state = 3}, + [1935] = {.lex_state = 0, .external_lex_state = 3}, + [1936] = {.lex_state = 0, .external_lex_state = 3}, + [1937] = {.lex_state = 7, .external_lex_state = 3}, + [1938] = {.lex_state = 0, .external_lex_state = 3}, + [1939] = {.lex_state = 0, .external_lex_state = 3}, + [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1941] = {.lex_state = 57, .external_lex_state = 3}, + [1942] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 7, .external_lex_state = 3}, + [1944] = {.lex_state = 0, .external_lex_state = 3}, + [1945] = {.lex_state = 57, .external_lex_state = 3}, + [1946] = {.lex_state = 17, .external_lex_state = 3}, + [1947] = {.lex_state = 7, .external_lex_state = 3}, [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 0, .external_lex_state = 3}, + [1950] = {.lex_state = 57, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 57, .external_lex_state = 3}, + [1952] = {.lex_state = 0, .external_lex_state = 3}, [1953] = {.lex_state = 0, .external_lex_state = 3}, [1954] = {.lex_state = 57, .external_lex_state = 3}, - [1955] = {.lex_state = 0, .external_lex_state = 3}, + [1955] = {.lex_state = 7, .external_lex_state = 3}, [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 3, .external_lex_state = 3}, - [1958] = {.lex_state = 3, .external_lex_state = 3}, + [1957] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 57, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, - [1960] = {.lex_state = 0, .external_lex_state = 3}, + [1960] = {.lex_state = 3, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 10, .external_lex_state = 3}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 0, .external_lex_state = 3}, - [1965] = {.lex_state = 3, .external_lex_state = 3}, + [1962] = {.lex_state = 3, .external_lex_state = 3}, + [1963] = {.lex_state = 57, .external_lex_state = 3}, + [1964] = {.lex_state = 10, .external_lex_state = 3}, + [1965] = {.lex_state = 0, .external_lex_state = 3}, [1966] = {.lex_state = 57, .external_lex_state = 3}, - [1967] = {.lex_state = 3, .external_lex_state = 3}, + [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 0, .external_lex_state = 3}, + [1969] = {.lex_state = 3, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.lex_state = 0, .external_lex_state = 3}, + [1971] = {.lex_state = 57, .external_lex_state = 3}, [1972] = {.lex_state = 3, .external_lex_state = 3}, - [1973] = {.lex_state = 0, .external_lex_state = 3}, - [1974] = {.lex_state = 0, .external_lex_state = 3}, + [1973] = {.lex_state = 3, .external_lex_state = 3}, + [1974] = {.lex_state = 3, .external_lex_state = 3}, [1975] = {.lex_state = 0, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, - [1977] = {.lex_state = 3, .external_lex_state = 3}, - [1978] = {.lex_state = 3, .external_lex_state = 3}, - [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 3, .external_lex_state = 3}, - [1981] = {.lex_state = 0, .external_lex_state = 3}, - [1982] = {.lex_state = 3, .external_lex_state = 3}, - [1983] = {.lex_state = 3, .external_lex_state = 3}, - [1984] = {.lex_state = 0, .external_lex_state = 3}, - [1985] = {.lex_state = 57, .external_lex_state = 3}, - [1986] = {.lex_state = 0, .external_lex_state = 3}, - [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 7, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .external_lex_state = 3}, - [1991] = {.lex_state = 0, .external_lex_state = 3}, - [1992] = {.lex_state = 3, .external_lex_state = 3}, - [1993] = {.lex_state = 0, .external_lex_state = 3}, - [1994] = {.lex_state = 0, .external_lex_state = 3}, - [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 3, .external_lex_state = 3}, - [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 57, .external_lex_state = 3}, - [1999] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 7, .external_lex_state = 3}, + [1978] = {.lex_state = 57, .external_lex_state = 3}, + [1979] = {.lex_state = 3, .external_lex_state = 3}, + [1980] = {.lex_state = 4, .external_lex_state = 3}, + [1981] = {.lex_state = 4, .external_lex_state = 3}, + [1982] = {.lex_state = 57, .external_lex_state = 3}, + [1983] = {.lex_state = 0, .external_lex_state = 3}, + [1984] = {.lex_state = 3, .external_lex_state = 3}, + [1985] = {.lex_state = 0, .external_lex_state = 3}, + [1986] = {.lex_state = 57, .external_lex_state = 3}, + [1987] = {.lex_state = 3, .external_lex_state = 3}, + [1988] = {.lex_state = 7, .external_lex_state = 3}, + [1989] = {.lex_state = 3, .external_lex_state = 3}, + [1990] = {.lex_state = 57, .external_lex_state = 3}, + [1991] = {.lex_state = 3, .external_lex_state = 3}, + [1992] = {.lex_state = 57, .external_lex_state = 3}, + [1993] = {.lex_state = 3, .external_lex_state = 3}, + [1994] = {.lex_state = 57, .external_lex_state = 3}, + [1995] = {.lex_state = 7, .external_lex_state = 3}, + [1996] = {.lex_state = 57, .external_lex_state = 3}, + [1997] = {.lex_state = 3, .external_lex_state = 3}, + [1998] = {.lex_state = 0, .external_lex_state = 3}, + [1999] = {.lex_state = 57, .external_lex_state = 3}, [2000] = {.lex_state = 57, .external_lex_state = 3}, - [2001] = {.lex_state = 0, .external_lex_state = 3}, - [2002] = {.lex_state = 0, .external_lex_state = 3}, - [2003] = {.lex_state = 3, .external_lex_state = 3}, - [2004] = {.lex_state = 3, .external_lex_state = 3}, + [2001] = {.lex_state = 57, .external_lex_state = 3}, + [2002] = {.lex_state = 7, .external_lex_state = 3}, + [2003] = {.lex_state = 57, .external_lex_state = 3}, + [2004] = {.lex_state = 0, .external_lex_state = 3}, [2005] = {.lex_state = 57, .external_lex_state = 3}, - [2006] = {.lex_state = 0, .external_lex_state = 3}, + [2006] = {.lex_state = 3, .external_lex_state = 3}, [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 10, .external_lex_state = 3}, + [2008] = {.lex_state = 0, .external_lex_state = 3}, [2009] = {.lex_state = 0, .external_lex_state = 3}, - [2010] = {.lex_state = 57, .external_lex_state = 3}, - [2011] = {.lex_state = 0, .external_lex_state = 3}, + [2010] = {.lex_state = 3, .external_lex_state = 3}, + [2011] = {.lex_state = 57, .external_lex_state = 3}, [2012] = {.lex_state = 57, .external_lex_state = 3}, - [2013] = {.lex_state = 7, .external_lex_state = 3}, - [2014] = {.lex_state = 57, .external_lex_state = 3}, - [2015] = {.lex_state = 57, .external_lex_state = 3}, - [2016] = {.lex_state = 0, .external_lex_state = 3}, + [2013] = {.lex_state = 3, .external_lex_state = 3}, + [2014] = {.lex_state = 7, .external_lex_state = 3}, + [2015] = {.lex_state = 0, .external_lex_state = 3}, + [2016] = {.lex_state = 57, .external_lex_state = 3}, [2017] = {.lex_state = 0, .external_lex_state = 3}, - [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 0, .external_lex_state = 3}, - [2020] = {.lex_state = 0, .external_lex_state = 3}, + [2018] = {.lex_state = 57, .external_lex_state = 3}, + [2019] = {.lex_state = 10, .external_lex_state = 3}, + [2020] = {.lex_state = 3, .external_lex_state = 3}, [2021] = {.lex_state = 0, .external_lex_state = 3}, - [2022] = {.lex_state = 0, .external_lex_state = 3}, - [2023] = {.lex_state = 57, .external_lex_state = 3}, - [2024] = {.lex_state = 57, .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 = 57, .external_lex_state = 3}, [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 57, .external_lex_state = 3}, - [2028] = {.lex_state = 57, .external_lex_state = 3}, + [2027] = {.lex_state = 0, .external_lex_state = 3}, + [2028] = {.lex_state = 0, .external_lex_state = 3}, [2029] = {.lex_state = 0, .external_lex_state = 3}, [2030] = {.lex_state = 57, .external_lex_state = 3}, [2031] = {.lex_state = 0, .external_lex_state = 3}, [2032] = {.lex_state = 0, .external_lex_state = 3}, [2033] = {.lex_state = 0, .external_lex_state = 3}, [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 57, .external_lex_state = 3}, - [2036] = {.lex_state = 7, .external_lex_state = 3}, + [2035] = {.lex_state = 0, .external_lex_state = 3}, + [2036] = {.lex_state = 0, .external_lex_state = 3}, [2037] = {.lex_state = 57, .external_lex_state = 3}, [2038] = {.lex_state = 0, .external_lex_state = 3}, - [2039] = {.lex_state = 0, .external_lex_state = 3}, + [2039] = {.lex_state = 3, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 7, .external_lex_state = 3}, + [2041] = {.lex_state = 57, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 57, .external_lex_state = 3}, + [2043] = {.lex_state = 0, .external_lex_state = 3}, [2044] = {.lex_state = 0, .external_lex_state = 3}, [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 0, .external_lex_state = 3}, - [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2046] = {.lex_state = 57, .external_lex_state = 3}, + [2047] = {.lex_state = 57, .external_lex_state = 3}, + [2048] = {.lex_state = 3, .external_lex_state = 3}, [2049] = {.lex_state = 7, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 57, .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 = 57, .external_lex_state = 3}, + [2057] = {.lex_state = 0, .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 = 57, .external_lex_state = 3}, + [2062] = {.lex_state = 0, .external_lex_state = 3}, [2063] = {.lex_state = 0, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 0, .external_lex_state = 3}, + [2065] = {.lex_state = 57, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, - [2067] = {.lex_state = 57, .external_lex_state = 3}, - [2068] = {.lex_state = 57, .external_lex_state = 3}, - [2069] = {.lex_state = 7, .external_lex_state = 3}, - [2070] = {.lex_state = 57, .external_lex_state = 3}, - [2071] = {.lex_state = 3, .external_lex_state = 3}, - [2072] = {.lex_state = 57, .external_lex_state = 3}, - [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2067] = {.lex_state = 0, .external_lex_state = 3}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2069] = {.lex_state = 0, .external_lex_state = 3}, + [2070] = {.lex_state = 0, .external_lex_state = 3}, + [2071] = {.lex_state = 57, .external_lex_state = 3}, + [2072] = {.lex_state = 0, .external_lex_state = 3}, + [2073] = {.lex_state = 57, .external_lex_state = 3}, [2074] = {.lex_state = 57, .external_lex_state = 3}, - [2075] = {.lex_state = 0, .external_lex_state = 3}, - [2076] = {.lex_state = 57, .external_lex_state = 3}, - [2077] = {.lex_state = 17, .external_lex_state = 3}, - [2078] = {.lex_state = 7, .external_lex_state = 3}, + [2075] = {.lex_state = 57, .external_lex_state = 3}, + [2076] = {.lex_state = 0, .external_lex_state = 3}, + [2077] = {.lex_state = 0, .external_lex_state = 3}, + [2078] = {.lex_state = 0, .external_lex_state = 3}, [2079] = {.lex_state = 57, .external_lex_state = 3}, [2080] = {.lex_state = 0, .external_lex_state = 3}, [2081] = {.lex_state = 0, .external_lex_state = 3}, - [2082] = {.lex_state = 57, .external_lex_state = 3}, + [2082] = {.lex_state = 0, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, - [2084] = {.lex_state = 57, .external_lex_state = 3}, + [2084] = {.lex_state = 0, .external_lex_state = 3}, [2085] = {.lex_state = 0, .external_lex_state = 3}, [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 7, .external_lex_state = 3}, - [2089] = {.lex_state = 57, .external_lex_state = 3}, - [2090] = {.lex_state = 57, .external_lex_state = 3}, - [2091] = {.lex_state = 57, .external_lex_state = 3}, - [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 57, .external_lex_state = 3}, + [2087] = {.lex_state = 57, .external_lex_state = 3}, + [2088] = {.lex_state = 0, .external_lex_state = 3}, + [2089] = {.lex_state = 0, .external_lex_state = 3}, + [2090] = {.lex_state = 7, .external_lex_state = 3}, + [2091] = {.lex_state = 7, .external_lex_state = 3}, + [2092] = {.lex_state = 57, .external_lex_state = 3}, + [2093] = {.lex_state = 0, .external_lex_state = 3}, [2094] = {.lex_state = 0, .external_lex_state = 3}, [2095] = {.lex_state = 0, .external_lex_state = 3}, - [2096] = {.lex_state = 3, .external_lex_state = 3}, + [2096] = {.lex_state = 57, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, - [2098] = {.lex_state = 57, .external_lex_state = 3}, - [2099] = {.lex_state = 57, .external_lex_state = 3}, + [2098] = {.lex_state = 0, .external_lex_state = 3}, + [2099] = {.lex_state = 0, .external_lex_state = 3}, [2100] = {.lex_state = 0, .external_lex_state = 3}, - [2101] = {.lex_state = 57, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .external_lex_state = 3}, [2102] = {.lex_state = 0, .external_lex_state = 3}, [2103] = {.lex_state = 0, .external_lex_state = 3}, [2104] = {.lex_state = 0, .external_lex_state = 3}, - [2105] = {.lex_state = 7, .external_lex_state = 3}, - [2106] = {.lex_state = 0, .external_lex_state = 3}, + [2105] = {.lex_state = 57, .external_lex_state = 3}, + [2106] = {.lex_state = 57, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 0, .external_lex_state = 3}, + [2108] = {.lex_state = 7, .external_lex_state = 3}, [2109] = {.lex_state = 0, .external_lex_state = 3}, [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 0, .external_lex_state = 3}, + [2111] = {.lex_state = 57, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 0, .external_lex_state = 3}, - [2114] = {.lex_state = 0, .external_lex_state = 3}, + [2113] = {.lex_state = 57, .external_lex_state = 3}, + [2114] = {.lex_state = 7, .external_lex_state = 3}, [2115] = {.lex_state = 0, .external_lex_state = 3}, - [2116] = {.lex_state = 0, .external_lex_state = 3}, - [2117] = {.lex_state = 7, .external_lex_state = 3}, + [2116] = {.lex_state = 10, .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 = 57, .external_lex_state = 3}, + [2121] = {.lex_state = 57, .external_lex_state = 3}, [2122] = {.lex_state = 0, .external_lex_state = 3}, - [2123] = {.lex_state = 57, .external_lex_state = 3}, + [2123] = {.lex_state = 0, .external_lex_state = 3}, [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 7, .external_lex_state = 3}, - [2126] = {.lex_state = 7, .external_lex_state = 3}, - [2127] = {.lex_state = 17, .external_lex_state = 3}, - [2128] = {.lex_state = 7, .external_lex_state = 3}, + [2125] = {.lex_state = 0, .external_lex_state = 3}, + [2126] = {.lex_state = 0, .external_lex_state = 3}, + [2127] = {.lex_state = 0, .external_lex_state = 3}, + [2128] = {.lex_state = 0, .external_lex_state = 3}, [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, + [2130] = {.lex_state = 7, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 57, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, - [2135] = {.lex_state = 7, .external_lex_state = 3}, - [2136] = {.lex_state = 57, .external_lex_state = 3}, - [2137] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 7, .external_lex_state = 3}, + [2134] = {.lex_state = 17, .external_lex_state = 3}, + [2135] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 0, .external_lex_state = 3}, + [2137] = {.lex_state = 7, .external_lex_state = 3}, [2138] = {.lex_state = 0, .external_lex_state = 3}, [2139] = {.lex_state = 7, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, [2141] = {.lex_state = 57, .external_lex_state = 3}, - [2142] = {.lex_state = 57, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, [2143] = {.lex_state = 57, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 0, .external_lex_state = 3}, - [2146] = {.lex_state = 57, .external_lex_state = 3}, + [2145] = {.lex_state = 7, .external_lex_state = 3}, + [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 7, .external_lex_state = 3}, + [2148] = {.lex_state = 57, .external_lex_state = 3}, [2149] = {.lex_state = 57, .external_lex_state = 3}, [2150] = {.lex_state = 7, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 57, .external_lex_state = 3}, + [2152] = {.lex_state = 57, .external_lex_state = 3}, + [2153] = {.lex_state = 0, .external_lex_state = 3}, [2154] = {.lex_state = 7, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 0, .external_lex_state = 3}, + [2156] = {.lex_state = 57, .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 = 57, .external_lex_state = 3}, - [2161] = {.lex_state = 57, .external_lex_state = 3}, - [2162] = {.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 = 57, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, [2164] = {.lex_state = 57, .external_lex_state = 3}, - [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 57, .external_lex_state = 3}, + [2165] = {.lex_state = 57, .external_lex_state = 3}, + [2166] = {.lex_state = 0, .external_lex_state = 3}, [2167] = {.lex_state = 0, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 57, .external_lex_state = 3}, + [2169] = {.lex_state = 7, .external_lex_state = 3}, [2170] = {.lex_state = 0, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 0, .external_lex_state = 3}, + [2172] = {.lex_state = 57, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 57, .external_lex_state = 3}, - [2175] = {.lex_state = 0, .external_lex_state = 3}, - [2176] = {.lex_state = 57, .external_lex_state = 3}, + [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2175] = {.lex_state = 57, .external_lex_state = 3}, + [2176] = {.lex_state = 0, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 7, .external_lex_state = 3}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 0, .external_lex_state = 3}, - [2181] = {.lex_state = 7, .external_lex_state = 3}, - [2182] = {.lex_state = 4, .external_lex_state = 3}, - [2183] = {.lex_state = 57, .external_lex_state = 3}, - [2184] = {.lex_state = 7, .external_lex_state = 3}, - [2185] = {.lex_state = 0, .external_lex_state = 3}, + [2180] = {.lex_state = 17, .external_lex_state = 3}, + [2181] = {.lex_state = 57, .external_lex_state = 3}, + [2182] = {.lex_state = 0, .external_lex_state = 3}, + [2183] = {.lex_state = 17, .external_lex_state = 3}, + [2184] = {.lex_state = 0, .external_lex_state = 3}, + [2185] = {.lex_state = 7, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, [2187] = {.lex_state = 0, .external_lex_state = 3}, [2188] = {.lex_state = 0, .external_lex_state = 3}, - [2189] = {.lex_state = 0, .external_lex_state = 3}, + [2189] = {.lex_state = 4, .external_lex_state = 3}, [2190] = {.lex_state = 0, .external_lex_state = 3}, [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 0, .external_lex_state = 3}, - [2194] = {.lex_state = 17, .external_lex_state = 3}, - [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 0, .external_lex_state = 3}, - [2197] = {.lex_state = 17, .external_lex_state = 3}, + [2192] = {.lex_state = 7, .external_lex_state = 3}, + [2193] = {.lex_state = 7, .external_lex_state = 3}, + [2194] = {.lex_state = 0, .external_lex_state = 3}, + [2195] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, - [2202] = {.lex_state = 57, .external_lex_state = 3}, - [2203] = {.lex_state = 0, .external_lex_state = 3}, - [2204] = {.lex_state = 0, .external_lex_state = 3}, - [2205] = {.lex_state = 0, .external_lex_state = 3}, - [2206] = {.lex_state = 57, .external_lex_state = 3}, + [2202] = {.lex_state = 0, .external_lex_state = 3}, + [2203] = {.lex_state = 17, .external_lex_state = 3}, + [2204] = {.lex_state = 57, .external_lex_state = 3}, + [2205] = {.lex_state = 57, .external_lex_state = 3}, + [2206] = {.lex_state = 0, .external_lex_state = 3}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 17, .external_lex_state = 3}, + [2208] = {.lex_state = 57, .external_lex_state = 3}, [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 57, .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 = 57, .external_lex_state = 3}, - [2214] = {.lex_state = 0, .external_lex_state = 3}, + [2212] = {.lex_state = 57, .external_lex_state = 3}, + [2213] = {.lex_state = 17, .external_lex_state = 3}, + [2214] = {.lex_state = 57, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 0, .external_lex_state = 3}, - [2218] = {.lex_state = 7, .external_lex_state = 3}, + [2217] = {.lex_state = 57, .external_lex_state = 3}, + [2218] = {.lex_state = 0, .external_lex_state = 3}, [2219] = {.lex_state = 7, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 57, .external_lex_state = 3}, - [2222] = {.lex_state = 0, .external_lex_state = 3}, + [2221] = {.lex_state = 0, .external_lex_state = 3}, + [2222] = {.lex_state = 7, .external_lex_state = 3}, [2223] = {.lex_state = 0, .external_lex_state = 3}, [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 3}, + [2225] = {.lex_state = 0, .external_lex_state = 3}, [2226] = {.lex_state = 0, .external_lex_state = 3}, [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, + [2228] = {.lex_state = 4, .external_lex_state = 3}, [2229] = {.lex_state = 0, .external_lex_state = 3}, - [2230] = {.lex_state = 4, .external_lex_state = 3}, + [2230] = {.lex_state = 0, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, - [2232] = {.lex_state = 17, .external_lex_state = 3}, - [2233] = {.lex_state = 0, .external_lex_state = 3}, - [2234] = {.lex_state = 0, .external_lex_state = 3}, + [2232] = {.lex_state = 0, .external_lex_state = 3}, + [2233] = {.lex_state = 57, .external_lex_state = 3}, + [2234] = {.lex_state = 7, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, [2236] = {.lex_state = 0, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, @@ -14233,305 +14240,308 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 57, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 3}, + [2245] = {.lex_state = 57, .external_lex_state = 3}, + [2246] = {.lex_state = 0, .external_lex_state = 5}, [2247] = {.lex_state = 0, .external_lex_state = 3}, [2248] = {.lex_state = 7, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 0, .external_lex_state = 3}, + [2250] = {.lex_state = 0, .external_lex_state = 3}, + [2251] = {.lex_state = 57, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 0, .external_lex_state = 3}, + [2254] = {.lex_state = 57, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 57, .external_lex_state = 3}, + [2256] = {.lex_state = 7, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, - [2258] = {.lex_state = 0, .external_lex_state = 3}, + [2258] = {.lex_state = 7, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 0, .external_lex_state = 3}, + [2260] = {.lex_state = 57, .external_lex_state = 3}, [2261] = {.lex_state = 0, .external_lex_state = 3}, - [2262] = {.lex_state = 57, .external_lex_state = 3}, - [2263] = {.lex_state = 7, .external_lex_state = 3}, + [2262] = {.lex_state = 0, .external_lex_state = 3}, + [2263] = {.lex_state = 10, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 57, .external_lex_state = 3}, + [2265] = {.lex_state = 17, .external_lex_state = 3}, [2266] = {.lex_state = 0, .external_lex_state = 3}, - [2267] = {.lex_state = 17, .external_lex_state = 3}, + [2267] = {.lex_state = 0, .external_lex_state = 3}, [2268] = {.lex_state = 0, .external_lex_state = 3}, - [2269] = {.lex_state = 57, .external_lex_state = 3}, + [2269] = {.lex_state = 0, .external_lex_state = 3}, [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, + [2271] = {.lex_state = 0, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, - [2273] = {.lex_state = 0, .external_lex_state = 3}, + [2273] = {.lex_state = 57, .external_lex_state = 3}, [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 57, .external_lex_state = 3}, + [2275] = {.lex_state = 0, .external_lex_state = 3}, [2276] = {.lex_state = 57, .external_lex_state = 3}, [2277] = {.lex_state = 0, .external_lex_state = 3}, [2278] = {.lex_state = 0, .external_lex_state = 3}, - [2279] = {.lex_state = 7, .external_lex_state = 3}, - [2280] = {.lex_state = 0, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, + [2279] = {.lex_state = 0, .external_lex_state = 3}, + [2280] = {.lex_state = 57, .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}, + [2283] = {.lex_state = 7, .external_lex_state = 3}, [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 0, .external_lex_state = 3}, - [2286] = {.lex_state = 7, .external_lex_state = 3}, - [2287] = {.lex_state = 0, .external_lex_state = 5}, - [2288] = {.lex_state = 57, .external_lex_state = 3}, + [2285] = {.lex_state = 57, .external_lex_state = 3}, + [2286] = {.lex_state = 57, .external_lex_state = 3}, + [2287] = {.lex_state = 0, .external_lex_state = 3}, + [2288] = {.lex_state = 0, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, - [2290] = {.lex_state = 57, .external_lex_state = 3}, - [2291] = {.lex_state = 0, .external_lex_state = 3}, - [2292] = {.lex_state = 10, .external_lex_state = 3}, - [2293] = {.lex_state = 57, .external_lex_state = 3}, - [2294] = {.lex_state = 57, .external_lex_state = 3}, - [2295] = {.lex_state = 7, .external_lex_state = 3}, + [2290] = {.lex_state = 0, .external_lex_state = 3}, + [2291] = {.lex_state = 7, .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 = 57, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, [2297] = {.lex_state = 57, .external_lex_state = 3}, - [2298] = {.lex_state = 0, .external_lex_state = 3}, + [2298] = {.lex_state = 7, .external_lex_state = 3}, [2299] = {.lex_state = 7, .external_lex_state = 3}, - [2300] = {.lex_state = 57, .external_lex_state = 3}, - [2301] = {.lex_state = 57, .external_lex_state = 3}, + [2300] = {.lex_state = 0, .external_lex_state = 3}, + [2301] = {.lex_state = 0, .external_lex_state = 3}, [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 0, .external_lex_state = 3}, - [2304] = {.lex_state = 0, .external_lex_state = 3}, - [2305] = {.lex_state = 7, .external_lex_state = 3}, + [2303] = {.lex_state = 57, .external_lex_state = 3}, + [2304] = {.lex_state = 7, .external_lex_state = 3}, + [2305] = {.lex_state = 0, .external_lex_state = 3}, [2306] = {.lex_state = 0, .external_lex_state = 3}, - [2307] = {.lex_state = 0, .external_lex_state = 3}, + [2307] = {.lex_state = 57, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 10, .external_lex_state = 3}, - [2310] = {.lex_state = 0, .external_lex_state = 3}, - [2311] = {.lex_state = 7, .external_lex_state = 3}, + [2309] = {.lex_state = 57, .external_lex_state = 3}, + [2310] = {.lex_state = 7, .external_lex_state = 3}, + [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, [2313] = {.lex_state = 7, .external_lex_state = 3}, - [2314] = {.lex_state = 57, .external_lex_state = 3}, - [2315] = {.lex_state = 7, .external_lex_state = 3}, + [2314] = {.lex_state = 0, .external_lex_state = 3}, + [2315] = {.lex_state = 0, .external_lex_state = 3}, [2316] = {.lex_state = 7, .external_lex_state = 3}, [2317] = {.lex_state = 7, .external_lex_state = 3}, [2318] = {.lex_state = 7, .external_lex_state = 3}, - [2319] = {.lex_state = 7, .external_lex_state = 3}, + [2319] = {.lex_state = 0, .external_lex_state = 3}, [2320] = {.lex_state = 7, .external_lex_state = 3}, - [2321] = {.lex_state = 0, .external_lex_state = 3}, + [2321] = {.lex_state = 7, .external_lex_state = 3}, [2322] = {.lex_state = 7, .external_lex_state = 3}, - [2323] = {.lex_state = 7, .external_lex_state = 3}, + [2323] = {.lex_state = 0, .external_lex_state = 3}, [2324] = {.lex_state = 7, .external_lex_state = 3}, - [2325] = {.lex_state = 7, .external_lex_state = 3}, + [2325] = {.lex_state = 57, .external_lex_state = 3}, [2326] = {.lex_state = 7, .external_lex_state = 3}, [2327] = {.lex_state = 7, .external_lex_state = 3}, [2328] = {.lex_state = 57, .external_lex_state = 3}, [2329] = {.lex_state = 7, .external_lex_state = 3}, - [2330] = {.lex_state = 0, .external_lex_state = 3}, + [2330] = {.lex_state = 7, .external_lex_state = 3}, [2331] = {.lex_state = 7, .external_lex_state = 3}, [2332] = {.lex_state = 7, .external_lex_state = 3}, - [2333] = {.lex_state = 0, .external_lex_state = 3}, - [2334] = {.lex_state = 0, .external_lex_state = 3}, + [2333] = {.lex_state = 7, .external_lex_state = 3}, + [2334] = {.lex_state = 7, .external_lex_state = 3}, [2335] = {.lex_state = 7, .external_lex_state = 3}, [2336] = {.lex_state = 0, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .external_lex_state = 3}, - [2338] = {.lex_state = 0, .external_lex_state = 3}, - [2339] = {.lex_state = 7, .external_lex_state = 3}, + [2337] = {.lex_state = 0, .external_lex_state = 3}, + [2338] = {.lex_state = 7, .external_lex_state = 3}, + [2339] = {.lex_state = 0, .external_lex_state = 3}, [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 7, .external_lex_state = 3}, - [2342] = {.lex_state = 0, .external_lex_state = 3}, - [2343] = {.lex_state = 57, .external_lex_state = 3}, - [2344] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, [2346] = {.lex_state = 7, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 7, .external_lex_state = 3}, + [2347] = {.lex_state = 0, .external_lex_state = 3}, + [2348] = {.lex_state = 0, .external_lex_state = 3}, [2349] = {.lex_state = 7, .external_lex_state = 3}, [2350] = {.lex_state = 7, .external_lex_state = 3}, - [2351] = {.lex_state = 0, .external_lex_state = 3}, - [2352] = {.lex_state = 0, .external_lex_state = 3}, - [2353] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 7, .external_lex_state = 3}, + [2352] = {.lex_state = 7, .external_lex_state = 3}, + [2353] = {.lex_state = 7, .external_lex_state = 3}, [2354] = {.lex_state = 0, .external_lex_state = 3}, - [2355] = {.lex_state = 0, .external_lex_state = 3}, + [2355] = {.lex_state = 7, .external_lex_state = 3}, [2356] = {.lex_state = 7, .external_lex_state = 3}, [2357] = {.lex_state = 7, .external_lex_state = 3}, [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 0, .external_lex_state = 3}, - [2360] = {.lex_state = 0, .external_lex_state = 3}, - [2361] = {.lex_state = 0, .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}, [2362] = {.lex_state = 7, .external_lex_state = 3}, [2363] = {.lex_state = 7, .external_lex_state = 3}, [2364] = {.lex_state = 7, .external_lex_state = 3}, [2365] = {.lex_state = 7, .external_lex_state = 3}, [2366] = {.lex_state = 7, .external_lex_state = 3}, - [2367] = {.lex_state = 7, .external_lex_state = 3}, + [2367] = {.lex_state = 0, .external_lex_state = 3}, [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 7, .external_lex_state = 3}, - [2370] = {.lex_state = 7, .external_lex_state = 3}, - [2371] = {.lex_state = 10, .external_lex_state = 3}, + [2369] = {.lex_state = 0, .external_lex_state = 3}, + [2370] = {.lex_state = 0, .external_lex_state = 3}, + [2371] = {.lex_state = 7, .external_lex_state = 3}, [2372] = {.lex_state = 7, .external_lex_state = 3}, [2373] = {.lex_state = 7, .external_lex_state = 3}, [2374] = {.lex_state = 7, .external_lex_state = 3}, - [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2375] = {.lex_state = 7, .external_lex_state = 3}, [2376] = {.lex_state = 0, .external_lex_state = 3}, [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 7, .external_lex_state = 3}, - [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2378] = {.lex_state = 0, .external_lex_state = 3}, + [2379] = {.lex_state = 10, .external_lex_state = 3}, [2380] = {.lex_state = 7, .external_lex_state = 3}, [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 7, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 0, .external_lex_state = 3}, - [2385] = {.lex_state = 0, .external_lex_state = 3}, - [2386] = {.lex_state = 0, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, + [2383] = {.lex_state = 7, .external_lex_state = 3}, + [2384] = {.lex_state = 7, .external_lex_state = 3}, + [2385] = {.lex_state = 7, .external_lex_state = 3}, + [2386] = {.lex_state = 7, .external_lex_state = 3}, [2387] = {.lex_state = 7, .external_lex_state = 3}, - [2388] = {.lex_state = 7, .external_lex_state = 3}, - [2389] = {.lex_state = 10, .external_lex_state = 3}, - [2390] = {.lex_state = 0, .external_lex_state = 3}, + [2388] = {.lex_state = 0, .external_lex_state = 3}, + [2389] = {.lex_state = 7, .external_lex_state = 3}, + [2390] = {.lex_state = 7, .external_lex_state = 3}, [2391] = {.lex_state = 7, .external_lex_state = 3}, - [2392] = {.lex_state = 0, .external_lex_state = 3}, + [2392] = {.lex_state = 57, .external_lex_state = 3}, [2393] = {.lex_state = 7, .external_lex_state = 3}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 7, .external_lex_state = 3}, - [2396] = {.lex_state = 7, .external_lex_state = 3}, + [2394] = {.lex_state = 0, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, + [2396] = {.lex_state = 0, .external_lex_state = 3}, [2397] = {.lex_state = 0, .external_lex_state = 3}, - [2398] = {.lex_state = 7, .external_lex_state = 3}, - [2399] = {.lex_state = 7, .external_lex_state = 3}, + [2398] = {.lex_state = 0, .external_lex_state = 3}, + [2399] = {.lex_state = 0, .external_lex_state = 3}, [2400] = {.lex_state = 0, .external_lex_state = 3}, [2401] = {.lex_state = 7, .external_lex_state = 3}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2402] = {.lex_state = 0, .external_lex_state = 3}, + [2403] = {.lex_state = 10, .external_lex_state = 3}, [2404] = {.lex_state = 7, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 7, .external_lex_state = 3}, + [2405] = {.lex_state = 10, .external_lex_state = 3}, + [2406] = {.lex_state = 0, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 7, .external_lex_state = 3}, + [2408] = {.lex_state = 57, .external_lex_state = 3}, [2409] = {.lex_state = 0, .external_lex_state = 3}, - [2410] = {.lex_state = 57, .external_lex_state = 3}, - [2411] = {.lex_state = 0, .external_lex_state = 3}, + [2410] = {.lex_state = 0, .external_lex_state = 3}, + [2411] = {.lex_state = 7, .external_lex_state = 3}, [2412] = {.lex_state = 0, .external_lex_state = 3}, [2413] = {.lex_state = 7, .external_lex_state = 3}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, + [2414] = {.lex_state = 7, .external_lex_state = 3}, [2415] = {.lex_state = 7, .external_lex_state = 3}, - [2416] = {.lex_state = 7, .external_lex_state = 3}, + [2416] = {.lex_state = 0, .external_lex_state = 3}, [2417] = {.lex_state = 0, .external_lex_state = 3}, [2418] = {.lex_state = 7, .external_lex_state = 3}, - [2419] = {.lex_state = 7, .external_lex_state = 3}, + [2419] = {.lex_state = 0, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, [2421] = {.lex_state = 0, .external_lex_state = 3}, - [2422] = {.lex_state = 7, .external_lex_state = 3}, - [2423] = {.lex_state = 7, .external_lex_state = 3}, - [2424] = {.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 = 0, .external_lex_state = 3}, [2425] = {.lex_state = 0, .external_lex_state = 3}, [2426] = {.lex_state = 10, .external_lex_state = 3}, - [2427] = {.lex_state = 7, .external_lex_state = 3}, - [2428] = {.lex_state = 0, .external_lex_state = 3}, - [2429] = {.lex_state = 0, .external_lex_state = 3}, - [2430] = {.lex_state = 0, .external_lex_state = 3}, - [2431] = {.lex_state = 10, .external_lex_state = 3}, + [2427] = {.lex_state = 0, .external_lex_state = 3}, + [2428] = {.lex_state = 7, .external_lex_state = 3}, + [2429] = {.lex_state = 7, .external_lex_state = 3}, + [2430] = {.lex_state = 7, .external_lex_state = 3}, + [2431] = {.lex_state = 0, .external_lex_state = 3}, [2432] = {.lex_state = 0, .external_lex_state = 3}, - [2433] = {.lex_state = 7, .external_lex_state = 3}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, - [2435] = {.lex_state = 0, .external_lex_state = 3}, - [2436] = {.lex_state = 10, .external_lex_state = 3}, - [2437] = {.lex_state = 7, .external_lex_state = 3}, - [2438] = {.lex_state = 7, .external_lex_state = 3}, + [2433] = {.lex_state = 10, .external_lex_state = 3}, + [2434] = {.lex_state = 7, .external_lex_state = 3}, + [2435] = {.lex_state = 10, .external_lex_state = 3}, + [2436] = {.lex_state = 7, .external_lex_state = 3}, + [2437] = {.lex_state = 0, .external_lex_state = 3}, + [2438] = {.lex_state = 0, .external_lex_state = 3}, [2439] = {.lex_state = 0, .external_lex_state = 3}, - [2440] = {.lex_state = 0, .external_lex_state = 3}, + [2440] = {.lex_state = 7, .external_lex_state = 3}, [2441] = {.lex_state = 0, .external_lex_state = 3}, [2442] = {.lex_state = 0, .external_lex_state = 3}, [2443] = {.lex_state = 0, .external_lex_state = 3}, - [2444] = {.lex_state = 0, .external_lex_state = 3}, + [2444] = {.lex_state = 7, .external_lex_state = 3}, [2445] = {.lex_state = 0, .external_lex_state = 3}, - [2446] = {.lex_state = 0, .external_lex_state = 3}, - [2447] = {.lex_state = 10, .external_lex_state = 3}, + [2446] = {.lex_state = 10, .external_lex_state = 3}, + [2447] = {.lex_state = 0, .external_lex_state = 3}, [2448] = {.lex_state = 7, .external_lex_state = 3}, - [2449] = {.lex_state = 0, .external_lex_state = 3}, + [2449] = {.lex_state = 10, .external_lex_state = 3}, [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 0, .external_lex_state = 3}, + [2451] = {.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}, + [2454] = {.lex_state = 7, .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}, - [2459] = {.lex_state = 0, .external_lex_state = 3}, - [2460] = {.lex_state = 7, .external_lex_state = 3}, + [2458] = {.lex_state = 7, .external_lex_state = 3}, + [2459] = {.lex_state = 7, .external_lex_state = 3}, + [2460] = {.lex_state = 0, .external_lex_state = 3}, [2461] = {.lex_state = 0, .external_lex_state = 3}, - [2462] = {.lex_state = 7, .external_lex_state = 3}, - [2463] = {.lex_state = 7, .external_lex_state = 3}, + [2462] = {.lex_state = 0, .external_lex_state = 3}, + [2463] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, + [2468] = {.lex_state = 0, .external_lex_state = 3}, + [2469] = {.lex_state = 7, .external_lex_state = 3}, [2470] = {.lex_state = 0, .external_lex_state = 3}, - [2471] = {.lex_state = 7, .external_lex_state = 3}, + [2471] = {.lex_state = 0, .external_lex_state = 3}, [2472] = {.lex_state = 0, .external_lex_state = 3}, [2473] = {.lex_state = 0, .external_lex_state = 3}, [2474] = {.lex_state = 0, .external_lex_state = 3}, [2475] = {.lex_state = 0, .external_lex_state = 3}, [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 0, .external_lex_state = 3}, + [2477] = {.lex_state = 7, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, - [2479] = {.lex_state = 10, .external_lex_state = 3}, - [2480] = {.lex_state = 0, .external_lex_state = 3}, - [2481] = {.lex_state = 10, .external_lex_state = 3}, + [2479] = {.lex_state = 0, .external_lex_state = 3}, + [2480] = {.lex_state = 10, .external_lex_state = 3}, + [2481] = {.lex_state = 7, .external_lex_state = 3}, [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 10, .external_lex_state = 3}, - [2484] = {.lex_state = 0, .external_lex_state = 3}, + [2483] = {.lex_state = 0, .external_lex_state = 3}, + [2484] = {.lex_state = 10, .external_lex_state = 3}, [2485] = {.lex_state = 0, .external_lex_state = 3}, [2486] = {.lex_state = 10, .external_lex_state = 3}, - [2487] = {.lex_state = 7, .external_lex_state = 3}, - [2488] = {.lex_state = 10, .external_lex_state = 3}, + [2487] = {.lex_state = 0, .external_lex_state = 3}, + [2488] = {.lex_state = 0, .external_lex_state = 3}, [2489] = {.lex_state = 0, .external_lex_state = 3}, - [2490] = {.lex_state = 7, .external_lex_state = 3}, - [2491] = {.lex_state = 0, .external_lex_state = 3}, + [2490] = {.lex_state = 0, .external_lex_state = 3}, + [2491] = {.lex_state = 10, .external_lex_state = 3}, [2492] = {.lex_state = 0, .external_lex_state = 3}, [2493] = {.lex_state = 0, .external_lex_state = 3}, [2494] = {.lex_state = 0, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, [2496] = {.lex_state = 0, .external_lex_state = 3}, - [2497] = {.lex_state = 10, .external_lex_state = 3}, + [2497] = {.lex_state = 0, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, - [2499] = {.lex_state = 7, .external_lex_state = 3}, + [2499] = {.lex_state = 0, .external_lex_state = 3}, [2500] = {.lex_state = 10, .external_lex_state = 3}, [2501] = {.lex_state = 0, .external_lex_state = 3}, - [2502] = {.lex_state = 10, .external_lex_state = 3}, - [2503] = {.lex_state = 7, .external_lex_state = 3}, + [2502] = {.lex_state = 0, .external_lex_state = 3}, + [2503] = {.lex_state = 0, .external_lex_state = 3}, [2504] = {.lex_state = 0, .external_lex_state = 3}, [2505] = {.lex_state = 10, .external_lex_state = 3}, - [2506] = {.lex_state = 7, .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}, + [2508] = {.lex_state = 10, .external_lex_state = 3}, [2509] = {.lex_state = 0, .external_lex_state = 3}, - [2510] = {.lex_state = 0, .external_lex_state = 3}, - [2511] = {.lex_state = 10, .external_lex_state = 3}, + [2510] = {.lex_state = 7, .external_lex_state = 3}, + [2511] = {.lex_state = 0, .external_lex_state = 3}, [2512] = {.lex_state = 0, .external_lex_state = 3}, - [2513] = {.lex_state = 10, .external_lex_state = 3}, - [2514] = {.lex_state = 0, .external_lex_state = 3}, + [2513] = {.lex_state = 0, .external_lex_state = 3}, + [2514] = {.lex_state = 10, .external_lex_state = 3}, [2515] = {.lex_state = 0, .external_lex_state = 3}, - [2516] = {.lex_state = 0, .external_lex_state = 3}, + [2516] = {.lex_state = 10, .external_lex_state = 3}, [2517] = {.lex_state = 0, .external_lex_state = 3}, [2518] = {.lex_state = 0, .external_lex_state = 3}, [2519] = {.lex_state = 0, .external_lex_state = 3}, [2520] = {.lex_state = 7, .external_lex_state = 3}, [2521] = {.lex_state = 7, .external_lex_state = 3}, - [2522] = {.lex_state = 7, .external_lex_state = 3}, + [2522] = {.lex_state = 0, .external_lex_state = 3}, [2523] = {.lex_state = 7, .external_lex_state = 3}, - [2524] = {.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 = 7, .external_lex_state = 3}, [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 0, .external_lex_state = 3}, - [2529] = {.lex_state = 7, .external_lex_state = 3}, + [2528] = {.lex_state = 7, .external_lex_state = 3}, + [2529] = {.lex_state = 0, .external_lex_state = 3}, [2530] = {.lex_state = 7, .external_lex_state = 3}, [2531] = {.lex_state = 7, .external_lex_state = 3}, - [2532] = {.lex_state = 0, .external_lex_state = 3}, - [2533] = {.lex_state = 0, .external_lex_state = 3}, + [2532] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [2537] = {.lex_state = 0, .external_lex_state = 3}, - [2538] = {.lex_state = 7, .external_lex_state = 3}, - [2539] = {.lex_state = 0, .external_lex_state = 3}, - [2540] = {.lex_state = 0, .external_lex_state = 3}, + [2536] = {.lex_state = 7, .external_lex_state = 3}, + [2537] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, + [2542] = {.lex_state = 7, .external_lex_state = 3}, + [2543] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -14714,79 +14724,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2439), - [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(2438), - [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(1487), + [sym_source_file] = STATE(2460), + [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(2458), + [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(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -14863,84 +14874,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [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(2438), - [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(1487), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2458), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(183), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(108), + [anon_sym_macro_rules_BANG] = ACTIONS(111), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(128), + [anon_sym_i8] = ACTIONS(128), + [anon_sym_u16] = ACTIONS(128), + [anon_sym_i16] = ACTIONS(128), + [anon_sym_u32] = ACTIONS(128), + [anon_sym_i32] = ACTIONS(128), + [anon_sym_u64] = ACTIONS(128), + [anon_sym_i64] = ACTIONS(128), + [anon_sym_u128] = ACTIONS(128), + [anon_sym_i128] = ACTIONS(128), + [anon_sym_isize] = ACTIONS(128), + [anon_sym_usize] = ACTIONS(128), + [anon_sym_f32] = ACTIONS(128), + [anon_sym_f64] = ACTIONS(128), + [anon_sym_bool] = ACTIONS(128), + [anon_sym_str] = ACTIONS(128), + [anon_sym_char] = ACTIONS(128), + [anon_sym_SQUOTE] = ACTIONS(131), + [anon_sym_async] = ACTIONS(134), + [anon_sym_break] = ACTIONS(137), + [anon_sym_const] = ACTIONS(140), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_default] = ACTIONS(146), + [anon_sym_enum] = ACTIONS(149), + [anon_sym_fn] = ACTIONS(152), + [anon_sym_for] = ACTIONS(155), + [anon_sym_if] = ACTIONS(158), + [anon_sym_impl] = ACTIONS(161), + [anon_sym_let] = ACTIONS(164), + [anon_sym_loop] = ACTIONS(167), + [anon_sym_match] = ACTIONS(170), + [anon_sym_mod] = ACTIONS(173), + [anon_sym_pub] = ACTIONS(176), + [anon_sym_return] = ACTIONS(179), + [anon_sym_static] = ACTIONS(182), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_trait] = ACTIONS(188), + [anon_sym_type] = ACTIONS(191), + [anon_sym_union] = ACTIONS(194), + [anon_sym_unsafe] = ACTIONS(197), + [anon_sym_use] = ACTIONS(200), + [anon_sym_while] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(206), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(212), + [anon_sym_COLON_COLON] = ACTIONS(215), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_DOT_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(224), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_move] = ACTIONS(230), + [sym_integer_literal] = ACTIONS(233), + [aux_sym_string_literal_token1] = ACTIONS(236), + [sym_char_literal] = ACTIONS(233), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(242), + [sym_super] = ACTIONS(245), + [sym_crate] = ACTIONS(248), + [sym_metavariable] = ACTIONS(251), + [sym_raw_string_literal] = ACTIONS(233), + [sym_float_literal] = ACTIONS(233), + [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(2458), + [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(1499), + [sym_visibility_modifier] = STATE(1329), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1193), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(254), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15010,85 +15171,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [3] = { - [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(2438), - [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(1487), + [4] = { + [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(2458), + [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(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(256), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15158,233 +15320,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [4] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym__expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2438), - [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(1487), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(109), - [sym_identifier] = ACTIONS(111), - [anon_sym_SEMI] = ACTIONS(114), - [anon_sym_macro_rules_BANG] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_LBRACK] = ACTIONS(126), - [anon_sym_STAR] = ACTIONS(129), - [anon_sym_u8] = ACTIONS(132), - [anon_sym_i8] = ACTIONS(132), - [anon_sym_u16] = ACTIONS(132), - [anon_sym_i16] = ACTIONS(132), - [anon_sym_u32] = ACTIONS(132), - [anon_sym_i32] = ACTIONS(132), - [anon_sym_u64] = ACTIONS(132), - [anon_sym_i64] = ACTIONS(132), - [anon_sym_u128] = ACTIONS(132), - [anon_sym_i128] = ACTIONS(132), - [anon_sym_isize] = ACTIONS(132), - [anon_sym_usize] = ACTIONS(132), - [anon_sym_f32] = ACTIONS(132), - [anon_sym_f64] = ACTIONS(132), - [anon_sym_bool] = ACTIONS(132), - [anon_sym_str] = ACTIONS(132), - [anon_sym_char] = ACTIONS(132), - [anon_sym_SQUOTE] = ACTIONS(135), - [anon_sym_async] = ACTIONS(138), - [anon_sym_break] = ACTIONS(141), - [anon_sym_const] = ACTIONS(144), - [anon_sym_continue] = ACTIONS(147), - [anon_sym_default] = ACTIONS(150), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_fn] = ACTIONS(156), - [anon_sym_for] = ACTIONS(159), - [anon_sym_if] = ACTIONS(162), - [anon_sym_impl] = ACTIONS(165), - [anon_sym_let] = ACTIONS(168), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_match] = ACTIONS(174), - [anon_sym_mod] = ACTIONS(177), - [anon_sym_pub] = ACTIONS(180), - [anon_sym_return] = ACTIONS(183), - [anon_sym_static] = ACTIONS(186), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_trait] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), - [anon_sym_union] = ACTIONS(198), - [anon_sym_unsafe] = ACTIONS(201), - [anon_sym_use] = ACTIONS(204), - [anon_sym_while] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(210), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(216), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_AMP] = ACTIONS(222), - [anon_sym_DOT_DOT] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_yield] = ACTIONS(231), - [anon_sym_move] = ACTIONS(234), - [sym_integer_literal] = ACTIONS(237), - [aux_sym_string_literal_token1] = ACTIONS(240), - [sym_char_literal] = ACTIONS(237), - [anon_sym_true] = ACTIONS(243), - [anon_sym_false] = ACTIONS(243), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(246), - [sym_super] = ACTIONS(249), - [sym_crate] = ACTIONS(252), - [sym_metavariable] = ACTIONS(255), - [sym_raw_string_literal] = ACTIONS(237), - [sym_float_literal] = ACTIONS(237), - [sym_block_comment] = ACTIONS(3), - }, [5] = { - [sym__statement] = STATE(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(2438), - [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(1487), + [sym__statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym__expression_statement] = STATE(10), + [sym_macro_definition] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_foreign_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_union_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_extern_crate_declaration] = STATE(10), + [sym_const_item] = STATE(10), + [sym_static_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), + [sym_function_modifiers] = STATE(2458), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_extern_modifier] = STATE(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(258), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(258), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15455,78 +15470,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [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(2438), - [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(1487), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2458), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15603,78 +15619,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [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(2438), - [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(1487), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2458), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15751,380 +15768,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [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(2438), - [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(1487), + [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(2458), + [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(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(264), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(120), + [sym_identifier] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(108), + [anon_sym_macro_rules_BANG] = ACTIONS(111), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(128), + [anon_sym_i8] = ACTIONS(128), + [anon_sym_u16] = ACTIONS(128), + [anon_sym_i16] = ACTIONS(128), + [anon_sym_u32] = ACTIONS(128), + [anon_sym_i32] = ACTIONS(128), + [anon_sym_u64] = ACTIONS(128), + [anon_sym_i64] = ACTIONS(128), + [anon_sym_u128] = ACTIONS(128), + [anon_sym_i128] = ACTIONS(128), + [anon_sym_isize] = ACTIONS(128), + [anon_sym_usize] = ACTIONS(128), + [anon_sym_f32] = ACTIONS(128), + [anon_sym_f64] = ACTIONS(128), + [anon_sym_bool] = ACTIONS(128), + [anon_sym_str] = ACTIONS(128), + [anon_sym_char] = ACTIONS(128), + [anon_sym_SQUOTE] = ACTIONS(131), + [anon_sym_async] = ACTIONS(134), + [anon_sym_break] = ACTIONS(137), + [anon_sym_const] = ACTIONS(140), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_default] = ACTIONS(146), + [anon_sym_enum] = ACTIONS(149), + [anon_sym_fn] = ACTIONS(152), + [anon_sym_for] = ACTIONS(155), + [anon_sym_if] = ACTIONS(158), + [anon_sym_impl] = ACTIONS(161), + [anon_sym_let] = ACTIONS(164), + [anon_sym_loop] = ACTIONS(167), + [anon_sym_match] = ACTIONS(170), + [anon_sym_mod] = ACTIONS(173), + [anon_sym_pub] = ACTIONS(176), + [anon_sym_return] = ACTIONS(179), + [anon_sym_static] = ACTIONS(182), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_trait] = ACTIONS(188), + [anon_sym_type] = ACTIONS(191), + [anon_sym_union] = ACTIONS(194), + [anon_sym_unsafe] = ACTIONS(197), + [anon_sym_use] = ACTIONS(200), + [anon_sym_while] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(206), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(212), + [anon_sym_COLON_COLON] = ACTIONS(215), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_DOT_DOT] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(224), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_move] = ACTIONS(230), + [sym_integer_literal] = ACTIONS(233), + [aux_sym_string_literal_token1] = ACTIONS(236), + [sym_char_literal] = ACTIONS(233), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(242), + [sym_super] = ACTIONS(245), + [sym_crate] = ACTIONS(248), + [sym_metavariable] = ACTIONS(251), + [sym_raw_string_literal] = ACTIONS(233), + [sym_float_literal] = ACTIONS(233), [sym_block_comment] = ACTIONS(3), }, [9] = { - [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(2438), - [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(1487), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(119), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(111), - [anon_sym_SEMI] = ACTIONS(114), - [anon_sym_macro_rules_BANG] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(126), - [anon_sym_STAR] = ACTIONS(129), - [anon_sym_u8] = ACTIONS(132), - [anon_sym_i8] = ACTIONS(132), - [anon_sym_u16] = ACTIONS(132), - [anon_sym_i16] = ACTIONS(132), - [anon_sym_u32] = ACTIONS(132), - [anon_sym_i32] = ACTIONS(132), - [anon_sym_u64] = ACTIONS(132), - [anon_sym_i64] = ACTIONS(132), - [anon_sym_u128] = ACTIONS(132), - [anon_sym_i128] = ACTIONS(132), - [anon_sym_isize] = ACTIONS(132), - [anon_sym_usize] = ACTIONS(132), - [anon_sym_f32] = ACTIONS(132), - [anon_sym_f64] = ACTIONS(132), - [anon_sym_bool] = ACTIONS(132), - [anon_sym_str] = ACTIONS(132), - [anon_sym_char] = ACTIONS(132), - [anon_sym_SQUOTE] = ACTIONS(135), - [anon_sym_async] = ACTIONS(138), - [anon_sym_break] = ACTIONS(141), - [anon_sym_const] = ACTIONS(144), - [anon_sym_continue] = ACTIONS(147), - [anon_sym_default] = ACTIONS(150), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_fn] = ACTIONS(156), - [anon_sym_for] = ACTIONS(159), - [anon_sym_if] = ACTIONS(162), - [anon_sym_impl] = ACTIONS(165), - [anon_sym_let] = ACTIONS(168), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_match] = ACTIONS(174), - [anon_sym_mod] = ACTIONS(177), - [anon_sym_pub] = ACTIONS(180), - [anon_sym_return] = ACTIONS(183), - [anon_sym_static] = ACTIONS(186), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_trait] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), - [anon_sym_union] = ACTIONS(198), - [anon_sym_unsafe] = ACTIONS(201), - [anon_sym_use] = ACTIONS(204), - [anon_sym_while] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(210), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(216), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_AMP] = ACTIONS(222), - [anon_sym_DOT_DOT] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_yield] = ACTIONS(231), - [anon_sym_move] = ACTIONS(234), - [sym_integer_literal] = ACTIONS(237), - [aux_sym_string_literal_token1] = ACTIONS(240), - [sym_char_literal] = ACTIONS(237), - [anon_sym_true] = ACTIONS(243), - [anon_sym_false] = ACTIONS(243), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(246), - [sym_super] = ACTIONS(249), - [sym_crate] = ACTIONS(252), - [sym_metavariable] = ACTIONS(255), - [sym_raw_string_literal] = ACTIONS(237), - [sym_float_literal] = ACTIONS(237), - [sym_block_comment] = ACTIONS(3), - }, - [10] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym__expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2438), - [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(1487), + [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(2458), + [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(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1196), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(266), + [anon_sym_RBRACE] = ACTIONS(264), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16194,85 +16065,235 @@ 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(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(2438), - [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(1487), + [10] = { + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2458), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [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(266), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [11] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2458), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1499), + [sym_visibility_modifier] = STATE(1329), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [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_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16343,78 +16364,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [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(2438), - [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(1487), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2458), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1191), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16491,84 +16513,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [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(2438), - [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(1487), + [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(2458), + [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(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(272), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(272), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16639,78 +16662,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym__expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2438), - [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(1487), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2458), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16787,78 +16811,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [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(2438), - [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(1487), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2458), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1194), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16935,78 +16960,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [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(2438), - [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(1487), + [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(2458), + [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(1499), [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(58), - [sym_scoped_identifier] = STATE(1162), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(61), - [sym_if_let_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_while_let_expression] = STATE(61), - [sym_loop_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2426), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(61), - [sym_async_block] = STATE(61), - [sym_block] = STATE(61), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(77), + [sym_scoped_identifier] = STATE(1163), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2449), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17083,51 +17109,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1062), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1134), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -17224,51 +17251,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1069), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -17298,7 +17326,7 @@ 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(314), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), @@ -17364,63 +17392,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1026), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1132), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(314), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(316), - [anon_sym_EQ_GT] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_EQ_GT] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17438,8 +17467,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(318), + [anon_sym_SQUOTE] = ACTIONS(318), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17454,41 +17483,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17504,63 +17533,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1069), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(328), + [anon_sym_RPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_EQ_GT] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_EQ_GT] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_RBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17579,7 +17609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17594,41 +17624,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_COMMA] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17644,63 +17674,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(769), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1085), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(322), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [22] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1126), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_RPAREN] = ACTIONS(324), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(332), - [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_EQ_GT] = ACTIONS(324), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_RBRACK] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17719,7 +17891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17734,41 +17906,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_COMMA] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [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(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17783,63 +17955,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [22] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1075), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [23] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1136), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(336), [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(336), [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(308), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -17876,17 +18049,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(338), [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(328), [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(330), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(332), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(334), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -17923,52 +18096,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [23] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [24] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1085), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(322), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [25] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1195), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -18058,54 +18373,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [24] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(23), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [26] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1069), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(310), [anon_sym_LBRACK] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(312), @@ -18128,7 +18444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(314), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), @@ -18192,59 +18508,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [25] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [27] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1085), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18263,7 +18580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18278,40 +18595,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18326,58 +18643,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [26] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [28] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1085), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(322), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [29] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(338), + [anon_sym_STAR] = ACTIONS(350), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -18413,17 +18866,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(328), [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(364), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(366), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(334), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -18460,59 +18913,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [27] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [30] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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_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(318), + [anon_sym_as] = ACTIONS(316), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), + [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_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(316), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [31] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1189), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18531,7 +19120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18546,40 +19135,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18594,59 +19183,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [28] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(769), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [32] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1069), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18665,7 +19255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18680,40 +19270,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18728,54 +19318,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [29] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1149), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(582), + [33] = { + [sym_attribute_item] = STATE(594), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(594), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -18838,59 +19429,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [30] = { - [sym_attribute_item] = STATE(29), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(29), + [34] = { + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1185), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(374), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(374), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -18948,59 +19540,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [31] = { - [sym_attribute_item] = STATE(39), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(39), + [35] = { + [sym_attribute_item] = STATE(33), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(33), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(378), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(378), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19058,54 +19651,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [32] = { - [sym_attribute_item] = STATE(36), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(36), + [36] = { + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(382), @@ -19167,54 +19761,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [33] = { - [sym_attribute_item] = STATE(36), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(36), + [37] = { + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(384), @@ -19276,54 +19871,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [34] = { - [sym_attribute_item] = STATE(38), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(38), + [38] = { + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(386), @@ -19385,54 +19981,55 @@ 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(36), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(36), + [39] = { + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(388), @@ -19494,54 +20091,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [36] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(582), + [40] = { + [sym_attribute_item] = STATE(594), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1186), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(594), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19602,162 +20200,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [37] = { - [sym_else_clause] = STATE(63), - [ts_builtin_sym_end] = ACTIONS(390), - [sym_identifier] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(390), - [anon_sym_macro_rules_BANG] = ACTIONS(390), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_isize] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_f32] = ACTIONS(392), - [anon_sym_f64] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_str] = ACTIONS(392), - [anon_sym_char] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_as] = ACTIONS(392), - [anon_sym_async] = ACTIONS(392), - [anon_sym_break] = ACTIONS(392), - [anon_sym_const] = ACTIONS(392), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_default] = ACTIONS(392), - [anon_sym_enum] = ACTIONS(392), - [anon_sym_fn] = ACTIONS(392), - [anon_sym_for] = ACTIONS(392), - [anon_sym_if] = ACTIONS(392), - [anon_sym_impl] = ACTIONS(392), - [anon_sym_let] = ACTIONS(392), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(392), - [anon_sym_mod] = ACTIONS(392), - [anon_sym_pub] = ACTIONS(392), - [anon_sym_return] = ACTIONS(392), - [anon_sym_static] = ACTIONS(392), - [anon_sym_struct] = ACTIONS(392), - [anon_sym_trait] = ACTIONS(392), - [anon_sym_type] = ACTIONS(392), - [anon_sym_union] = ACTIONS(392), - [anon_sym_unsafe] = ACTIONS(392), - [anon_sym_use] = ACTIONS(392), - [anon_sym_while] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(392), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_AMP_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_CARET] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(392), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_PERCENT_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_CARET_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_yield] = ACTIONS(392), - [anon_sym_else] = ACTIONS(394), - [anon_sym_move] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [sym_integer_literal] = ACTIONS(390), - [aux_sym_string_literal_token1] = ACTIONS(390), - [sym_char_literal] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(392), - [sym_super] = ACTIONS(392), - [sym_crate] = ACTIONS(392), - [sym_metavariable] = ACTIONS(390), - [sym_raw_string_literal] = ACTIONS(390), - [sym_float_literal] = ACTIONS(390), - [sym_block_comment] = ACTIONS(3), - }, - [38] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(582), + [41] = { + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19818,54 +20309,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [39] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(582), + [42] = { + [sym_attribute_item] = STATE(594), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(594), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19926,54 +20418,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [40] = { - [sym_attribute_item] = STATE(36), - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_enum_variant_list_repeat1] = STATE(36), + [43] = { + [sym_attribute_item] = STATE(594), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(594), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20034,485 +20527,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [41] = { - [sym_else_clause] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(396), - [sym_identifier] = ACTIONS(398), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_macro_rules_BANG] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_QMARK] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(398), - [anon_sym_i8] = ACTIONS(398), - [anon_sym_u16] = ACTIONS(398), - [anon_sym_i16] = ACTIONS(398), - [anon_sym_u32] = ACTIONS(398), - [anon_sym_i32] = ACTIONS(398), - [anon_sym_u64] = ACTIONS(398), - [anon_sym_i64] = ACTIONS(398), - [anon_sym_u128] = ACTIONS(398), - [anon_sym_i128] = ACTIONS(398), - [anon_sym_isize] = ACTIONS(398), - [anon_sym_usize] = ACTIONS(398), - [anon_sym_f32] = ACTIONS(398), - [anon_sym_f64] = ACTIONS(398), - [anon_sym_bool] = ACTIONS(398), - [anon_sym_str] = ACTIONS(398), - [anon_sym_char] = ACTIONS(398), - [anon_sym_SQUOTE] = ACTIONS(398), - [anon_sym_as] = ACTIONS(398), - [anon_sym_async] = ACTIONS(398), - [anon_sym_break] = ACTIONS(398), - [anon_sym_const] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_default] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(398), - [anon_sym_fn] = ACTIONS(398), - [anon_sym_for] = ACTIONS(398), - [anon_sym_if] = ACTIONS(398), - [anon_sym_impl] = ACTIONS(398), - [anon_sym_let] = ACTIONS(398), - [anon_sym_loop] = ACTIONS(398), - [anon_sym_match] = ACTIONS(398), - [anon_sym_mod] = ACTIONS(398), - [anon_sym_pub] = ACTIONS(398), - [anon_sym_return] = ACTIONS(398), - [anon_sym_static] = ACTIONS(398), - [anon_sym_struct] = ACTIONS(398), - [anon_sym_trait] = ACTIONS(398), - [anon_sym_type] = ACTIONS(398), - [anon_sym_union] = ACTIONS(398), - [anon_sym_unsafe] = ACTIONS(398), - [anon_sym_use] = ACTIONS(398), - [anon_sym_while] = ACTIONS(398), - [anon_sym_POUND] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_EQ] = ACTIONS(398), - [anon_sym_extern] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_COLON_COLON] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PERCENT] = ACTIONS(398), - [anon_sym_PLUS_EQ] = ACTIONS(396), - [anon_sym_DASH_EQ] = ACTIONS(396), - [anon_sym_STAR_EQ] = ACTIONS(396), - [anon_sym_SLASH_EQ] = ACTIONS(396), - [anon_sym_PERCENT_EQ] = ACTIONS(396), - [anon_sym_AMP_EQ] = ACTIONS(396), - [anon_sym_PIPE_EQ] = ACTIONS(396), - [anon_sym_CARET_EQ] = ACTIONS(396), - [anon_sym_LT_LT_EQ] = ACTIONS(396), - [anon_sym_GT_GT_EQ] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(398), - [anon_sym_else] = ACTIONS(394), - [anon_sym_move] = ACTIONS(398), - [anon_sym_DOT] = ACTIONS(398), - [sym_integer_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(396), - [sym_char_literal] = ACTIONS(396), - [anon_sym_true] = ACTIONS(398), - [anon_sym_false] = ACTIONS(398), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(398), - [sym_super] = ACTIONS(398), - [sym_crate] = ACTIONS(398), - [sym_metavariable] = ACTIONS(396), - [sym_raw_string_literal] = ACTIONS(396), - [sym_float_literal] = ACTIONS(396), - [sym_block_comment] = ACTIONS(3), - }, - [42] = { - [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_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_else] = 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), - }, - [43] = { - [ts_builtin_sym_end] = ACTIONS(404), - [sym_identifier] = ACTIONS(406), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_macro_rules_BANG] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(404), - [anon_sym_u8] = ACTIONS(406), - [anon_sym_i8] = ACTIONS(406), - [anon_sym_u16] = ACTIONS(406), - [anon_sym_i16] = ACTIONS(406), - [anon_sym_u32] = ACTIONS(406), - [anon_sym_i32] = ACTIONS(406), - [anon_sym_u64] = ACTIONS(406), - [anon_sym_i64] = ACTIONS(406), - [anon_sym_u128] = ACTIONS(406), - [anon_sym_i128] = ACTIONS(406), - [anon_sym_isize] = ACTIONS(406), - [anon_sym_usize] = ACTIONS(406), - [anon_sym_f32] = ACTIONS(406), - [anon_sym_f64] = ACTIONS(406), - [anon_sym_bool] = ACTIONS(406), - [anon_sym_str] = ACTIONS(406), - [anon_sym_char] = ACTIONS(406), - [anon_sym_SQUOTE] = ACTIONS(406), - [anon_sym_as] = ACTIONS(406), - [anon_sym_async] = ACTIONS(406), - [anon_sym_break] = ACTIONS(406), - [anon_sym_const] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(406), - [anon_sym_default] = ACTIONS(406), - [anon_sym_enum] = ACTIONS(406), - [anon_sym_fn] = ACTIONS(406), - [anon_sym_for] = ACTIONS(406), - [anon_sym_if] = ACTIONS(406), - [anon_sym_impl] = ACTIONS(406), - [anon_sym_let] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(406), - [anon_sym_match] = ACTIONS(406), - [anon_sym_mod] = ACTIONS(406), - [anon_sym_pub] = ACTIONS(406), - [anon_sym_return] = ACTIONS(406), - [anon_sym_static] = ACTIONS(406), - [anon_sym_struct] = ACTIONS(406), - [anon_sym_trait] = ACTIONS(406), - [anon_sym_type] = ACTIONS(406), - [anon_sym_union] = ACTIONS(406), - [anon_sym_unsafe] = ACTIONS(406), - [anon_sym_use] = ACTIONS(406), - [anon_sym_while] = ACTIONS(406), - [anon_sym_POUND] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(406), - [anon_sym_extern] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_AMP_AMP] = ACTIONS(404), - [anon_sym_PIPE_PIPE] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_EQ_EQ] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(404), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_PLUS_EQ] = ACTIONS(404), - [anon_sym_DASH_EQ] = ACTIONS(404), - [anon_sym_STAR_EQ] = ACTIONS(404), - [anon_sym_SLASH_EQ] = ACTIONS(404), - [anon_sym_PERCENT_EQ] = ACTIONS(404), - [anon_sym_AMP_EQ] = ACTIONS(404), - [anon_sym_PIPE_EQ] = ACTIONS(404), - [anon_sym_CARET_EQ] = ACTIONS(404), - [anon_sym_LT_LT_EQ] = ACTIONS(404), - [anon_sym_GT_GT_EQ] = ACTIONS(404), - [anon_sym_yield] = ACTIONS(406), - [anon_sym_else] = ACTIONS(406), - [anon_sym_move] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(406), - [sym_integer_literal] = ACTIONS(404), - [aux_sym_string_literal_token1] = ACTIONS(404), - [sym_char_literal] = ACTIONS(404), - [anon_sym_true] = ACTIONS(406), - [anon_sym_false] = ACTIONS(406), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(406), - [sym_super] = ACTIONS(406), - [sym_crate] = ACTIONS(406), - [sym_metavariable] = ACTIONS(404), - [sym_raw_string_literal] = ACTIONS(404), - [sym_float_literal] = ACTIONS(404), - [sym_block_comment] = ACTIONS(3), - }, [44] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [aux_sym_tuple_expression_repeat1] = STATE(44), - [sym_identifier] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_u8] = ACTIONS(425), - [anon_sym_i8] = ACTIONS(425), - [anon_sym_u16] = ACTIONS(425), - [anon_sym_i16] = ACTIONS(425), - [anon_sym_u32] = ACTIONS(425), - [anon_sym_i32] = ACTIONS(425), - [anon_sym_u64] = ACTIONS(425), - [anon_sym_i64] = ACTIONS(425), - [anon_sym_u128] = ACTIONS(425), - [anon_sym_i128] = ACTIONS(425), - [anon_sym_isize] = ACTIONS(425), - [anon_sym_usize] = ACTIONS(425), - [anon_sym_f32] = ACTIONS(425), - [anon_sym_f64] = ACTIONS(425), - [anon_sym_bool] = ACTIONS(425), - [anon_sym_str] = ACTIONS(425), - [anon_sym_char] = ACTIONS(425), - [anon_sym_SQUOTE] = ACTIONS(428), - [anon_sym_async] = ACTIONS(431), - [anon_sym_break] = ACTIONS(434), - [anon_sym_const] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_default] = ACTIONS(443), - [anon_sym_for] = ACTIONS(446), - [anon_sym_if] = ACTIONS(449), - [anon_sym_loop] = ACTIONS(452), - [anon_sym_match] = ACTIONS(455), - [anon_sym_return] = ACTIONS(458), - [anon_sym_union] = ACTIONS(443), - [anon_sym_unsafe] = ACTIONS(461), - [anon_sym_while] = ACTIONS(464), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(467), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(482), - [anon_sym_move] = ACTIONS(485), + [sym_identifier] = ACTIONS(390), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_u8] = ACTIONS(407), + [anon_sym_i8] = ACTIONS(407), + [anon_sym_u16] = ACTIONS(407), + [anon_sym_i16] = ACTIONS(407), + [anon_sym_u32] = ACTIONS(407), + [anon_sym_i32] = ACTIONS(407), + [anon_sym_u64] = ACTIONS(407), + [anon_sym_i64] = ACTIONS(407), + [anon_sym_u128] = ACTIONS(407), + [anon_sym_i128] = ACTIONS(407), + [anon_sym_isize] = ACTIONS(407), + [anon_sym_usize] = ACTIONS(407), + [anon_sym_f32] = ACTIONS(407), + [anon_sym_f64] = ACTIONS(407), + [anon_sym_bool] = ACTIONS(407), + [anon_sym_str] = ACTIONS(407), + [anon_sym_char] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(410), + [anon_sym_async] = ACTIONS(413), + [anon_sym_break] = ACTIONS(416), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(428), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(434), + [anon_sym_match] = ACTIONS(437), + [anon_sym_return] = ACTIONS(440), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(443), + [anon_sym_while] = ACTIONS(446), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(452), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_DOT_DOT] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_move] = ACTIONS(467), + [sym_integer_literal] = ACTIONS(470), + [aux_sym_string_literal_token1] = ACTIONS(473), + [sym_char_literal] = ACTIONS(470), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(479), + [sym_super] = ACTIONS(482), + [sym_crate] = ACTIONS(482), + [sym_metavariable] = ACTIONS(485), + [sym_raw_string_literal] = ACTIONS(470), + [sym_float_literal] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + }, + [45] = { + [sym_else_clause] = STATE(123), + [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_else] = ACTIONS(492), + [anon_sym_move] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(490), [sym_integer_literal] = ACTIONS(488), - [aux_sym_string_literal_token1] = ACTIONS(491), + [aux_sym_string_literal_token1] = ACTIONS(488), [sym_char_literal] = ACTIONS(488), - [anon_sym_true] = ACTIONS(494), - [anon_sym_false] = ACTIONS(494), + [anon_sym_true] = ACTIONS(490), + [anon_sym_false] = ACTIONS(490), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(500), - [sym_crate] = ACTIONS(500), - [sym_metavariable] = ACTIONS(503), + [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), }, - [45] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [46] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [aux_sym_tuple_expression_repeat1] = STATE(44), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(506), + [anon_sym_RPAREN] = ACTIONS(494), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20570,56 +20851,165 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_tuple_expression_repeat1] = STATE(45), + [47] = { + [sym_else_clause] = STATE(140), + [ts_builtin_sym_end] = ACTIONS(496), + [sym_identifier] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(496), + [anon_sym_macro_rules_BANG] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u8] = ACTIONS(498), + [anon_sym_i8] = ACTIONS(498), + [anon_sym_u16] = ACTIONS(498), + [anon_sym_i16] = ACTIONS(498), + [anon_sym_u32] = ACTIONS(498), + [anon_sym_i32] = ACTIONS(498), + [anon_sym_u64] = ACTIONS(498), + [anon_sym_i64] = ACTIONS(498), + [anon_sym_u128] = ACTIONS(498), + [anon_sym_i128] = ACTIONS(498), + [anon_sym_isize] = ACTIONS(498), + [anon_sym_usize] = ACTIONS(498), + [anon_sym_f32] = ACTIONS(498), + [anon_sym_f64] = ACTIONS(498), + [anon_sym_bool] = ACTIONS(498), + [anon_sym_str] = ACTIONS(498), + [anon_sym_char] = ACTIONS(498), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_as] = ACTIONS(498), + [anon_sym_async] = ACTIONS(498), + [anon_sym_break] = ACTIONS(498), + [anon_sym_const] = ACTIONS(498), + [anon_sym_continue] = ACTIONS(498), + [anon_sym_default] = ACTIONS(498), + [anon_sym_enum] = ACTIONS(498), + [anon_sym_fn] = ACTIONS(498), + [anon_sym_for] = ACTIONS(498), + [anon_sym_if] = ACTIONS(498), + [anon_sym_impl] = ACTIONS(498), + [anon_sym_let] = ACTIONS(498), + [anon_sym_loop] = ACTIONS(498), + [anon_sym_match] = ACTIONS(498), + [anon_sym_mod] = ACTIONS(498), + [anon_sym_pub] = ACTIONS(498), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(498), + [anon_sym_struct] = ACTIONS(498), + [anon_sym_trait] = ACTIONS(498), + [anon_sym_type] = ACTIONS(498), + [anon_sym_union] = ACTIONS(498), + [anon_sym_unsafe] = ACTIONS(498), + [anon_sym_use] = ACTIONS(498), + [anon_sym_while] = ACTIONS(498), + [anon_sym_POUND] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(498), + [anon_sym_extern] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(498), + [anon_sym_COLON_COLON] = ACTIONS(496), + [anon_sym_AMP] = ACTIONS(498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(496), + [anon_sym_DOT_DOT] = ACTIONS(498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_AMP_AMP] = ACTIONS(496), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(496), + [anon_sym_BANG_EQ] = ACTIONS(496), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_PLUS_EQ] = ACTIONS(496), + [anon_sym_DASH_EQ] = ACTIONS(496), + [anon_sym_STAR_EQ] = ACTIONS(496), + [anon_sym_SLASH_EQ] = ACTIONS(496), + [anon_sym_PERCENT_EQ] = ACTIONS(496), + [anon_sym_AMP_EQ] = ACTIONS(496), + [anon_sym_PIPE_EQ] = ACTIONS(496), + [anon_sym_CARET_EQ] = ACTIONS(496), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_GT_GT_EQ] = ACTIONS(496), + [anon_sym_yield] = ACTIONS(498), + [anon_sym_else] = ACTIONS(492), + [anon_sym_move] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [sym_integer_literal] = ACTIONS(496), + [aux_sym_string_literal_token1] = ACTIONS(496), + [sym_char_literal] = ACTIONS(496), + [anon_sym_true] = ACTIONS(498), + [anon_sym_false] = ACTIONS(498), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(498), + [sym_super] = ACTIONS(498), + [sym_crate] = ACTIONS(498), + [sym_metavariable] = ACTIONS(496), + [sym_raw_string_literal] = ACTIONS(496), + [sym_float_literal] = ACTIONS(496), + [sym_block_comment] = ACTIONS(3), + }, + [48] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_tuple_expression_repeat1] = STATE(50), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_RPAREN] = ACTIONS(500), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20677,56 +21067,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [47] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [49] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_tuple_expression_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(502), + [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), + }, + [50] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [aux_sym_tuple_expression_repeat1] = STATE(44), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_RPAREN] = ACTIONS(502), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20784,56 +21283,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [aux_sym_tuple_expression_repeat1] = STATE(47), + [51] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [sym_mutable_specifier] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [52] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(512), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [53] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(510), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20872,7 +21584,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(516), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -20891,376 +21604,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [ts_builtin_sym_end] = ACTIONS(512), - [sym_identifier] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_macro_rules_BANG] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_u8] = ACTIONS(514), - [anon_sym_i8] = ACTIONS(514), - [anon_sym_u16] = ACTIONS(514), - [anon_sym_i16] = ACTIONS(514), - [anon_sym_u32] = ACTIONS(514), - [anon_sym_i32] = ACTIONS(514), - [anon_sym_u64] = ACTIONS(514), - [anon_sym_i64] = ACTIONS(514), - [anon_sym_u128] = ACTIONS(514), - [anon_sym_i128] = ACTIONS(514), - [anon_sym_isize] = ACTIONS(514), - [anon_sym_usize] = ACTIONS(514), - [anon_sym_f32] = ACTIONS(514), - [anon_sym_f64] = ACTIONS(514), - [anon_sym_bool] = ACTIONS(514), - [anon_sym_str] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_as] = ACTIONS(514), - [anon_sym_async] = ACTIONS(514), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_fn] = ACTIONS(514), - [anon_sym_for] = ACTIONS(514), - [anon_sym_if] = ACTIONS(514), - [anon_sym_impl] = ACTIONS(514), - [anon_sym_let] = ACTIONS(514), - [anon_sym_loop] = ACTIONS(514), - [anon_sym_match] = ACTIONS(514), - [anon_sym_mod] = ACTIONS(514), - [anon_sym_pub] = ACTIONS(514), - [anon_sym_return] = ACTIONS(514), - [anon_sym_static] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(514), - [anon_sym_trait] = ACTIONS(514), - [anon_sym_type] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [anon_sym_unsafe] = ACTIONS(514), - [anon_sym_use] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_extern] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_GT] = ACTIONS(514), - [anon_sym_COLON_COLON] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(512), + [54] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(520), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DOT_DOT_EQ] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_AMP_AMP] = ACTIONS(512), - [anon_sym_PIPE_PIPE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(514), - [anon_sym_CARET] = ACTIONS(514), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(514), - [anon_sym_GT_GT] = ACTIONS(514), - [anon_sym_SLASH] = ACTIONS(514), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_DASH_EQ] = ACTIONS(512), - [anon_sym_STAR_EQ] = ACTIONS(512), - [anon_sym_SLASH_EQ] = ACTIONS(512), - [anon_sym_PERCENT_EQ] = ACTIONS(512), - [anon_sym_AMP_EQ] = ACTIONS(512), - [anon_sym_PIPE_EQ] = ACTIONS(512), - [anon_sym_CARET_EQ] = ACTIONS(512), - [anon_sym_LT_LT_EQ] = ACTIONS(512), - [anon_sym_GT_GT_EQ] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(514), - [anon_sym_else] = ACTIONS(514), - [anon_sym_move] = ACTIONS(514), - [anon_sym_DOT] = ACTIONS(514), - [sym_integer_literal] = ACTIONS(512), - [aux_sym_string_literal_token1] = ACTIONS(512), - [sym_char_literal] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(514), - [sym_super] = ACTIONS(514), - [sym_crate] = ACTIONS(514), - [sym_metavariable] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(512), - [sym_float_literal] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [50] = { - [ts_builtin_sym_end] = ACTIONS(516), - [sym_identifier] = ACTIONS(518), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_macro_rules_BANG] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_QMARK] = ACTIONS(516), - [anon_sym_u8] = ACTIONS(518), - [anon_sym_i8] = ACTIONS(518), - [anon_sym_u16] = ACTIONS(518), - [anon_sym_i16] = ACTIONS(518), - [anon_sym_u32] = ACTIONS(518), - [anon_sym_i32] = ACTIONS(518), - [anon_sym_u64] = ACTIONS(518), - [anon_sym_i64] = ACTIONS(518), - [anon_sym_u128] = ACTIONS(518), - [anon_sym_i128] = ACTIONS(518), - [anon_sym_isize] = ACTIONS(518), - [anon_sym_usize] = ACTIONS(518), - [anon_sym_f32] = ACTIONS(518), - [anon_sym_f64] = ACTIONS(518), - [anon_sym_bool] = ACTIONS(518), - [anon_sym_str] = ACTIONS(518), - [anon_sym_char] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(518), - [anon_sym_as] = ACTIONS(518), - [anon_sym_async] = ACTIONS(518), - [anon_sym_break] = ACTIONS(518), - [anon_sym_const] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(518), - [anon_sym_default] = ACTIONS(518), - [anon_sym_enum] = ACTIONS(518), - [anon_sym_fn] = ACTIONS(518), - [anon_sym_for] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_impl] = ACTIONS(518), - [anon_sym_let] = ACTIONS(518), - [anon_sym_loop] = ACTIONS(518), - [anon_sym_match] = ACTIONS(518), - [anon_sym_mod] = ACTIONS(518), - [anon_sym_pub] = ACTIONS(518), - [anon_sym_return] = ACTIONS(518), - [anon_sym_static] = ACTIONS(518), - [anon_sym_struct] = ACTIONS(518), - [anon_sym_trait] = ACTIONS(518), - [anon_sym_type] = ACTIONS(518), - [anon_sym_union] = ACTIONS(518), - [anon_sym_unsafe] = ACTIONS(518), - [anon_sym_use] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_POUND] = ACTIONS(516), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(518), - [anon_sym_extern] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_COLON_COLON] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(516), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(516), - [anon_sym_PIPE_PIPE] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(516), - [anon_sym_BANG_EQ] = ACTIONS(516), - [anon_sym_LT_EQ] = ACTIONS(516), - [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_PLUS_EQ] = ACTIONS(516), - [anon_sym_DASH_EQ] = ACTIONS(516), - [anon_sym_STAR_EQ] = ACTIONS(516), - [anon_sym_SLASH_EQ] = ACTIONS(516), - [anon_sym_PERCENT_EQ] = ACTIONS(516), - [anon_sym_AMP_EQ] = ACTIONS(516), - [anon_sym_PIPE_EQ] = ACTIONS(516), - [anon_sym_CARET_EQ] = ACTIONS(516), - [anon_sym_LT_LT_EQ] = ACTIONS(516), - [anon_sym_GT_GT_EQ] = ACTIONS(516), - [anon_sym_yield] = ACTIONS(518), - [anon_sym_move] = ACTIONS(518), - [anon_sym_DOT] = ACTIONS(518), - [sym_integer_literal] = ACTIONS(516), - [aux_sym_string_literal_token1] = ACTIONS(516), - [sym_char_literal] = ACTIONS(516), - [anon_sym_true] = ACTIONS(518), - [anon_sym_false] = ACTIONS(518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(518), - [sym_super] = ACTIONS(518), - [sym_crate] = ACTIONS(518), - [sym_metavariable] = ACTIONS(516), - [sym_raw_string_literal] = ACTIONS(516), - [sym_float_literal] = ACTIONS(516), + [55] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(522), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [51] = { - [ts_builtin_sym_end] = ACTIONS(520), - [sym_identifier] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_macro_rules_BANG] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_u8] = ACTIONS(522), - [anon_sym_i8] = ACTIONS(522), - [anon_sym_u16] = ACTIONS(522), - [anon_sym_i16] = ACTIONS(522), - [anon_sym_u32] = ACTIONS(522), - [anon_sym_i32] = ACTIONS(522), - [anon_sym_u64] = ACTIONS(522), - [anon_sym_i64] = ACTIONS(522), - [anon_sym_u128] = ACTIONS(522), - [anon_sym_i128] = ACTIONS(522), - [anon_sym_isize] = ACTIONS(522), - [anon_sym_usize] = ACTIONS(522), - [anon_sym_f32] = ACTIONS(522), - [anon_sym_f64] = ACTIONS(522), - [anon_sym_bool] = ACTIONS(522), - [anon_sym_str] = ACTIONS(522), - [anon_sym_char] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_as] = ACTIONS(522), - [anon_sym_async] = ACTIONS(522), - [anon_sym_break] = ACTIONS(522), - [anon_sym_const] = ACTIONS(522), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_default] = ACTIONS(522), - [anon_sym_enum] = ACTIONS(522), - [anon_sym_fn] = ACTIONS(522), - [anon_sym_for] = ACTIONS(522), - [anon_sym_if] = ACTIONS(522), - [anon_sym_impl] = ACTIONS(522), - [anon_sym_let] = ACTIONS(522), - [anon_sym_loop] = ACTIONS(522), - [anon_sym_match] = ACTIONS(522), - [anon_sym_mod] = ACTIONS(522), - [anon_sym_pub] = ACTIONS(522), - [anon_sym_return] = ACTIONS(522), - [anon_sym_static] = ACTIONS(522), - [anon_sym_struct] = ACTIONS(522), - [anon_sym_trait] = ACTIONS(522), - [anon_sym_type] = ACTIONS(522), - [anon_sym_union] = ACTIONS(522), - [anon_sym_unsafe] = ACTIONS(522), - [anon_sym_use] = ACTIONS(522), - [anon_sym_while] = ACTIONS(522), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_extern] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_COLON_COLON] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(520), - [anon_sym_DOT_DOT] = ACTIONS(522), - [anon_sym_DOT_DOT_EQ] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(520), - [anon_sym_PIPE_PIPE] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(522), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_EQ_EQ] = ACTIONS(520), - [anon_sym_BANG_EQ] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_PLUS_EQ] = ACTIONS(520), - [anon_sym_DASH_EQ] = ACTIONS(520), - [anon_sym_STAR_EQ] = ACTIONS(520), - [anon_sym_SLASH_EQ] = ACTIONS(520), - [anon_sym_PERCENT_EQ] = ACTIONS(520), - [anon_sym_AMP_EQ] = ACTIONS(520), - [anon_sym_PIPE_EQ] = ACTIONS(520), - [anon_sym_CARET_EQ] = ACTIONS(520), - [anon_sym_LT_LT_EQ] = ACTIONS(520), - [anon_sym_GT_GT_EQ] = ACTIONS(520), - [anon_sym_yield] = ACTIONS(522), - [anon_sym_move] = ACTIONS(522), - [anon_sym_DOT] = ACTIONS(522), - [sym_integer_literal] = ACTIONS(520), - [aux_sym_string_literal_token1] = ACTIONS(520), - [sym_char_literal] = ACTIONS(520), - [anon_sym_true] = ACTIONS(522), - [anon_sym_false] = ACTIONS(522), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(522), - [sym_super] = ACTIONS(522), - [sym_crate] = ACTIONS(522), - [sym_metavariable] = ACTIONS(520), - [sym_raw_string_literal] = ACTIONS(520), - [sym_float_literal] = ACTIONS(520), + [56] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(524), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [52] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1180), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [57] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21293,12 +22009,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -21316,219 +22032,649 @@ 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(532), - [sym_identifier] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_macro_rules_BANG] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_STAR] = ACTIONS(534), - [anon_sym_QMARK] = ACTIONS(532), - [anon_sym_u8] = ACTIONS(534), - [anon_sym_i8] = ACTIONS(534), - [anon_sym_u16] = ACTIONS(534), - [anon_sym_i16] = ACTIONS(534), - [anon_sym_u32] = ACTIONS(534), - [anon_sym_i32] = ACTIONS(534), - [anon_sym_u64] = ACTIONS(534), - [anon_sym_i64] = ACTIONS(534), - [anon_sym_u128] = ACTIONS(534), - [anon_sym_i128] = ACTIONS(534), - [anon_sym_isize] = ACTIONS(534), - [anon_sym_usize] = ACTIONS(534), - [anon_sym_f32] = ACTIONS(534), - [anon_sym_f64] = ACTIONS(534), - [anon_sym_bool] = ACTIONS(534), - [anon_sym_str] = ACTIONS(534), - [anon_sym_char] = ACTIONS(534), - [anon_sym_SQUOTE] = ACTIONS(534), - [anon_sym_as] = ACTIONS(534), - [anon_sym_async] = ACTIONS(534), - [anon_sym_break] = ACTIONS(534), - [anon_sym_const] = ACTIONS(534), - [anon_sym_continue] = ACTIONS(534), - [anon_sym_default] = ACTIONS(534), - [anon_sym_enum] = ACTIONS(534), - [anon_sym_fn] = ACTIONS(534), - [anon_sym_for] = ACTIONS(534), - [anon_sym_if] = ACTIONS(534), - [anon_sym_impl] = ACTIONS(534), + [58] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1129), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [59] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [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), + }, + [60] = { + [ts_builtin_sym_end] = ACTIONS(530), + [sym_identifier] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_macro_rules_BANG] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_u8] = ACTIONS(532), + [anon_sym_i8] = ACTIONS(532), + [anon_sym_u16] = ACTIONS(532), + [anon_sym_i16] = ACTIONS(532), + [anon_sym_u32] = ACTIONS(532), + [anon_sym_i32] = ACTIONS(532), + [anon_sym_u64] = ACTIONS(532), + [anon_sym_i64] = ACTIONS(532), + [anon_sym_u128] = ACTIONS(532), + [anon_sym_i128] = ACTIONS(532), + [anon_sym_isize] = ACTIONS(532), + [anon_sym_usize] = ACTIONS(532), + [anon_sym_f32] = ACTIONS(532), + [anon_sym_f64] = ACTIONS(532), + [anon_sym_bool] = ACTIONS(532), + [anon_sym_str] = ACTIONS(532), + [anon_sym_char] = ACTIONS(532), + [anon_sym_SQUOTE] = ACTIONS(532), + [anon_sym_as] = ACTIONS(532), + [anon_sym_async] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_default] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_fn] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_impl] = ACTIONS(532), + [anon_sym_let] = ACTIONS(532), + [anon_sym_loop] = ACTIONS(532), + [anon_sym_match] = ACTIONS(532), + [anon_sym_mod] = ACTIONS(532), + [anon_sym_pub] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_trait] = ACTIONS(532), + [anon_sym_type] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [anon_sym_unsafe] = ACTIONS(532), + [anon_sym_use] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_POUND] = ACTIONS(530), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(530), + [anon_sym_DOT_DOT] = ACTIONS(532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_PERCENT] = ACTIONS(532), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(530), + [anon_sym_yield] = ACTIONS(532), + [anon_sym_else] = ACTIONS(532), + [anon_sym_move] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(532), + [sym_integer_literal] = ACTIONS(530), + [aux_sym_string_literal_token1] = ACTIONS(530), + [sym_char_literal] = ACTIONS(530), + [anon_sym_true] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(532), + [sym_super] = ACTIONS(532), + [sym_crate] = ACTIONS(532), + [sym_metavariable] = ACTIONS(530), + [sym_raw_string_literal] = ACTIONS(530), + [sym_float_literal] = ACTIONS(530), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), [anon_sym_let] = ACTIONS(534), - [anon_sym_loop] = ACTIONS(534), - [anon_sym_match] = ACTIONS(534), - [anon_sym_mod] = ACTIONS(534), - [anon_sym_pub] = ACTIONS(534), - [anon_sym_return] = ACTIONS(534), - [anon_sym_static] = ACTIONS(534), - [anon_sym_struct] = ACTIONS(534), - [anon_sym_trait] = ACTIONS(534), - [anon_sym_type] = ACTIONS(534), - [anon_sym_union] = ACTIONS(534), - [anon_sym_unsafe] = ACTIONS(534), - [anon_sym_use] = ACTIONS(534), - [anon_sym_while] = ACTIONS(534), - [anon_sym_POUND] = ACTIONS(532), - [anon_sym_BANG] = ACTIONS(534), - [anon_sym_EQ] = ACTIONS(534), - [anon_sym_extern] = ACTIONS(534), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(534), - [anon_sym_COLON_COLON] = ACTIONS(532), - [anon_sym_AMP] = ACTIONS(534), - [anon_sym_DOT_DOT_DOT] = ACTIONS(532), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT_EQ] = ACTIONS(532), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE_PIPE] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(534), - [anon_sym_EQ_EQ] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(532), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_GT_GT] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(534), - [anon_sym_PLUS_EQ] = ACTIONS(532), - [anon_sym_DASH_EQ] = ACTIONS(532), - [anon_sym_STAR_EQ] = ACTIONS(532), - [anon_sym_SLASH_EQ] = ACTIONS(532), - [anon_sym_PERCENT_EQ] = ACTIONS(532), - [anon_sym_AMP_EQ] = ACTIONS(532), - [anon_sym_PIPE_EQ] = ACTIONS(532), - [anon_sym_CARET_EQ] = ACTIONS(532), - [anon_sym_LT_LT_EQ] = ACTIONS(532), - [anon_sym_GT_GT_EQ] = ACTIONS(532), - [anon_sym_yield] = ACTIONS(534), - [anon_sym_move] = ACTIONS(534), - [anon_sym_DOT] = ACTIONS(534), - [sym_integer_literal] = ACTIONS(532), - [aux_sym_string_literal_token1] = ACTIONS(532), - [sym_char_literal] = ACTIONS(532), - [anon_sym_true] = ACTIONS(534), - [anon_sym_false] = ACTIONS(534), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(534), - [sym_super] = ACTIONS(534), - [sym_crate] = ACTIONS(534), - [sym_metavariable] = ACTIONS(532), - [sym_raw_string_literal] = ACTIONS(532), - [sym_float_literal] = ACTIONS(532), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(536), - [sym_identifier] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_macro_rules_BANG] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(536), - [anon_sym_u8] = ACTIONS(538), - [anon_sym_i8] = ACTIONS(538), - [anon_sym_u16] = ACTIONS(538), - [anon_sym_i16] = ACTIONS(538), - [anon_sym_u32] = ACTIONS(538), - [anon_sym_i32] = ACTIONS(538), - [anon_sym_u64] = ACTIONS(538), - [anon_sym_i64] = ACTIONS(538), - [anon_sym_u128] = ACTIONS(538), - [anon_sym_i128] = ACTIONS(538), - [anon_sym_isize] = ACTIONS(538), - [anon_sym_usize] = ACTIONS(538), - [anon_sym_f32] = ACTIONS(538), - [anon_sym_f64] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(538), - [anon_sym_str] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_as] = ACTIONS(538), - [anon_sym_async] = ACTIONS(538), - [anon_sym_break] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(538), - [anon_sym_fn] = ACTIONS(538), - [anon_sym_for] = ACTIONS(538), - [anon_sym_if] = ACTIONS(538), - [anon_sym_impl] = ACTIONS(538), - [anon_sym_let] = ACTIONS(538), - [anon_sym_loop] = ACTIONS(538), - [anon_sym_match] = ACTIONS(538), - [anon_sym_mod] = ACTIONS(538), - [anon_sym_pub] = ACTIONS(538), - [anon_sym_return] = ACTIONS(538), - [anon_sym_static] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(538), - [anon_sym_trait] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_union] = ACTIONS(538), - [anon_sym_unsafe] = ACTIONS(538), - [anon_sym_use] = ACTIONS(538), - [anon_sym_while] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_EQ] = ACTIONS(538), - [anon_sym_extern] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_COLON_COLON] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(536), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(538), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(538), - [anon_sym_move] = ACTIONS(538), - [anon_sym_DOT] = ACTIONS(538), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(536), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_crate] = ACTIONS(538), - [sym_metavariable] = ACTIONS(536), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), + [62] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(536), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [55] = { + [63] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1139), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [64] = { [ts_builtin_sym_end] = ACTIONS(540), [sym_identifier] = ACTIONS(542), [anon_sym_SEMI] = ACTIONS(540), @@ -21618,6 +22764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(540), [anon_sym_GT_GT_EQ] = ACTIONS(540), [anon_sym_yield] = ACTIONS(542), + [anon_sym_else] = ACTIONS(542), [anon_sym_move] = ACTIONS(542), [anon_sym_DOT] = ACTIONS(542), [sym_integer_literal] = ACTIONS(540), @@ -21634,189 +22781,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(540), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(544), - [sym_identifier] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_macro_rules_BANG] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(546), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_u8] = ACTIONS(546), - [anon_sym_i8] = ACTIONS(546), - [anon_sym_u16] = ACTIONS(546), - [anon_sym_i16] = ACTIONS(546), - [anon_sym_u32] = ACTIONS(546), - [anon_sym_i32] = ACTIONS(546), - [anon_sym_u64] = ACTIONS(546), - [anon_sym_i64] = ACTIONS(546), - [anon_sym_u128] = ACTIONS(546), - [anon_sym_i128] = ACTIONS(546), - [anon_sym_isize] = ACTIONS(546), - [anon_sym_usize] = ACTIONS(546), - [anon_sym_f32] = ACTIONS(546), - [anon_sym_f64] = ACTIONS(546), - [anon_sym_bool] = ACTIONS(546), - [anon_sym_str] = ACTIONS(546), - [anon_sym_char] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(546), - [anon_sym_as] = ACTIONS(546), - [anon_sym_async] = ACTIONS(546), - [anon_sym_break] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(546), - [anon_sym_fn] = ACTIONS(546), - [anon_sym_for] = ACTIONS(546), - [anon_sym_if] = ACTIONS(546), - [anon_sym_impl] = ACTIONS(546), - [anon_sym_let] = ACTIONS(546), - [anon_sym_loop] = ACTIONS(546), - [anon_sym_match] = ACTIONS(546), - [anon_sym_mod] = ACTIONS(546), - [anon_sym_pub] = ACTIONS(546), - [anon_sym_return] = ACTIONS(546), - [anon_sym_static] = ACTIONS(546), - [anon_sym_struct] = ACTIONS(546), - [anon_sym_trait] = ACTIONS(546), - [anon_sym_type] = ACTIONS(546), - [anon_sym_union] = ACTIONS(546), - [anon_sym_unsafe] = ACTIONS(546), - [anon_sym_use] = ACTIONS(546), - [anon_sym_while] = ACTIONS(546), - [anon_sym_POUND] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), - [anon_sym_extern] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_COLON_COLON] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(546), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(546), - [anon_sym_PERCENT] = ACTIONS(546), - [anon_sym_PLUS_EQ] = ACTIONS(544), - [anon_sym_DASH_EQ] = ACTIONS(544), - [anon_sym_STAR_EQ] = ACTIONS(544), - [anon_sym_SLASH_EQ] = ACTIONS(544), - [anon_sym_PERCENT_EQ] = ACTIONS(544), - [anon_sym_AMP_EQ] = ACTIONS(544), - [anon_sym_PIPE_EQ] = ACTIONS(544), - [anon_sym_CARET_EQ] = ACTIONS(544), - [anon_sym_LT_LT_EQ] = ACTIONS(544), - [anon_sym_GT_GT_EQ] = ACTIONS(544), - [anon_sym_yield] = ACTIONS(546), - [anon_sym_move] = ACTIONS(546), - [anon_sym_DOT] = ACTIONS(546), - [sym_integer_literal] = ACTIONS(544), - [aux_sym_string_literal_token1] = ACTIONS(544), - [sym_char_literal] = ACTIONS(544), - [anon_sym_true] = ACTIONS(546), - [anon_sym_false] = ACTIONS(546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(546), - [sym_super] = ACTIONS(546), - [sym_crate] = ACTIONS(546), - [sym_metavariable] = ACTIONS(544), - [sym_raw_string_literal] = ACTIONS(544), - [sym_float_literal] = ACTIONS(544), - [sym_block_comment] = ACTIONS(3), - }, - [57] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [65] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(548), - [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(544), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [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), + }, + [67] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(546), + [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), @@ -21846,68 +23102,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), + [68] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(548), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(552), + [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), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(550), + [anon_sym_macro_rules_BANG] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_RBRACE] = ACTIONS(554), [anon_sym_LBRACK] = ACTIONS(554), [anon_sym_PLUS] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(556), [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_u8] = ACTIONS(556), + [anon_sym_i8] = ACTIONS(556), + [anon_sym_u16] = ACTIONS(556), + [anon_sym_i16] = ACTIONS(556), + [anon_sym_u32] = ACTIONS(556), + [anon_sym_i32] = ACTIONS(556), + [anon_sym_u64] = ACTIONS(556), + [anon_sym_i64] = ACTIONS(556), + [anon_sym_u128] = ACTIONS(556), + [anon_sym_i128] = ACTIONS(556), + [anon_sym_isize] = ACTIONS(556), + [anon_sym_usize] = ACTIONS(556), + [anon_sym_f32] = ACTIONS(556), + [anon_sym_f64] = ACTIONS(556), + [anon_sym_bool] = ACTIONS(556), + [anon_sym_str] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(556), [anon_sym_as] = ACTIONS(556), - [anon_sym_async] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), + [anon_sym_async] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_enum] = ACTIONS(556), + [anon_sym_fn] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_impl] = ACTIONS(556), + [anon_sym_let] = ACTIONS(556), + [anon_sym_loop] = ACTIONS(556), + [anon_sym_match] = ACTIONS(556), + [anon_sym_mod] = ACTIONS(556), + [anon_sym_pub] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_struct] = ACTIONS(556), + [anon_sym_trait] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_union] = ACTIONS(556), + [anon_sym_unsafe] = ACTIONS(556), + [anon_sym_use] = ACTIONS(556), + [anon_sym_while] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(556), [anon_sym_EQ] = ACTIONS(556), - [anon_sym_extern] = ACTIONS(552), + [anon_sym_extern] = ACTIONS(556), [anon_sym_LT] = ACTIONS(556), [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(554), [anon_sym_AMP] = ACTIONS(556), [anon_sym_DOT_DOT_DOT] = ACTIONS(554), [anon_sym_DOT_DOT] = ACTIONS(556), @@ -21935,24 +23512,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(554), [anon_sym_LT_LT_EQ] = ACTIONS(554), [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_move] = ACTIONS(552), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_else] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(550), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(554), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(556), + [anon_sym_false] = ACTIONS(556), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(550), - [sym_raw_string_literal] = ACTIONS(550), - [sym_float_literal] = ACTIONS(550), + [sym_self] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_crate] = ACTIONS(556), + [sym_metavariable] = ACTIONS(554), + [sym_raw_string_literal] = ACTIONS(554), + [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), }, - [59] = { + [72] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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), + }, + [73] = { [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(558), @@ -22058,693 +23742,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(562), - [anon_sym_macro_rules_BANG] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_as] = ACTIONS(564), - [anon_sym_async] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_enum] = ACTIONS(564), - [anon_sym_fn] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_impl] = ACTIONS(564), - [anon_sym_let] = ACTIONS(564), - [anon_sym_loop] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_mod] = ACTIONS(564), - [anon_sym_pub] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_struct] = ACTIONS(564), - [anon_sym_trait] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_unsafe] = ACTIONS(564), - [anon_sym_use] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_move] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(568), - [anon_sym_i8] = ACTIONS(568), - [anon_sym_u16] = ACTIONS(568), - [anon_sym_i16] = ACTIONS(568), - [anon_sym_u32] = ACTIONS(568), - [anon_sym_i32] = ACTIONS(568), - [anon_sym_u64] = ACTIONS(568), - [anon_sym_i64] = ACTIONS(568), - [anon_sym_u128] = ACTIONS(568), - [anon_sym_i128] = ACTIONS(568), - [anon_sym_isize] = ACTIONS(568), - [anon_sym_usize] = ACTIONS(568), - [anon_sym_f32] = ACTIONS(568), - [anon_sym_f64] = ACTIONS(568), - [anon_sym_bool] = ACTIONS(568), - [anon_sym_str] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_as] = ACTIONS(556), - [anon_sym_async] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_if] = ACTIONS(568), - [anon_sym_impl] = ACTIONS(568), - [anon_sym_let] = ACTIONS(568), - [anon_sym_loop] = ACTIONS(568), - [anon_sym_match] = ACTIONS(568), - [anon_sym_mod] = ACTIONS(568), - [anon_sym_pub] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_static] = ACTIONS(568), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_trait] = ACTIONS(568), - [anon_sym_type] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_unsafe] = ACTIONS(568), - [anon_sym_use] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_move] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(566), - [aux_sym_string_literal_token1] = ACTIONS(566), - [sym_char_literal] = ACTIONS(566), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(568), - [sym_super] = ACTIONS(568), - [sym_crate] = ACTIONS(568), - [sym_metavariable] = ACTIONS(566), - [sym_raw_string_literal] = ACTIONS(566), - [sym_float_literal] = ACTIONS(566), - [sym_block_comment] = ACTIONS(3), - }, - [62] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1030), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1040), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [74] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(570), - [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(308), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(572), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_macro_rules_BANG] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [anon_sym_POUND] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(574), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_extern] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_COLON_COLON] = ACTIONS(572), - [anon_sym_AMP] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT_EQ] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_CARET] = ACTIONS(574), - [anon_sym_EQ_EQ] = ACTIONS(572), - [anon_sym_BANG_EQ] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(572), - [anon_sym_GT_EQ] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(574), - [anon_sym_PLUS_EQ] = ACTIONS(572), - [anon_sym_DASH_EQ] = ACTIONS(572), - [anon_sym_STAR_EQ] = ACTIONS(572), - [anon_sym_SLASH_EQ] = ACTIONS(572), - [anon_sym_PERCENT_EQ] = ACTIONS(572), - [anon_sym_AMP_EQ] = ACTIONS(572), - [anon_sym_PIPE_EQ] = ACTIONS(572), - [anon_sym_CARET_EQ] = ACTIONS(572), - [anon_sym_LT_LT_EQ] = ACTIONS(572), - [anon_sym_GT_GT_EQ] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(574), - [anon_sym_move] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(572), - [aux_sym_string_literal_token1] = ACTIONS(572), - [sym_char_literal] = ACTIONS(572), - [anon_sym_true] = ACTIONS(574), - [anon_sym_false] = ACTIONS(574), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(572), - [sym_raw_string_literal] = ACTIONS(572), - [sym_float_literal] = ACTIONS(572), - [sym_block_comment] = ACTIONS(3), - }, - [64] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(576), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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), - }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_macro_rules_BANG] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(580), - [anon_sym_move] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22770,19 +23819,18 @@ 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(582), [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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22800,370 +23848,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_macro_rules_BANG] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(586), - [anon_sym_i8] = ACTIONS(586), - [anon_sym_u16] = ACTIONS(586), - [anon_sym_i16] = ACTIONS(586), - [anon_sym_u32] = ACTIONS(586), - [anon_sym_i32] = ACTIONS(586), - [anon_sym_u64] = ACTIONS(586), - [anon_sym_i64] = ACTIONS(586), - [anon_sym_u128] = ACTIONS(586), - [anon_sym_i128] = ACTIONS(586), - [anon_sym_isize] = ACTIONS(586), - [anon_sym_usize] = ACTIONS(586), - [anon_sym_f32] = ACTIONS(586), - [anon_sym_f64] = ACTIONS(586), - [anon_sym_bool] = ACTIONS(586), - [anon_sym_str] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_async] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_fn] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_impl] = ACTIONS(586), - [anon_sym_let] = ACTIONS(586), - [anon_sym_loop] = ACTIONS(586), - [anon_sym_match] = ACTIONS(586), - [anon_sym_mod] = ACTIONS(586), - [anon_sym_pub] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_static] = ACTIONS(586), - [anon_sym_struct] = ACTIONS(586), - [anon_sym_trait] = ACTIONS(586), - [anon_sym_type] = ACTIONS(586), - [anon_sym_union] = ACTIONS(586), - [anon_sym_unsafe] = ACTIONS(586), - [anon_sym_use] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_extern] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_move] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(584), - [aux_sym_string_literal_token1] = ACTIONS(584), - [sym_char_literal] = ACTIONS(584), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(586), - [sym_super] = ACTIONS(586), - [sym_crate] = ACTIONS(586), - [sym_metavariable] = ACTIONS(584), - [sym_raw_string_literal] = ACTIONS(584), - [sym_float_literal] = ACTIONS(584), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_macro_rules_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_extern] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_move] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), - [sym_block_comment] = ACTIONS(3), - }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(592), - [sym_identifier] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_macro_rules_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_async] = ACTIONS(594), - [anon_sym_break] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_enum] = ACTIONS(594), - [anon_sym_fn] = ACTIONS(594), - [anon_sym_for] = ACTIONS(594), - [anon_sym_if] = ACTIONS(594), - [anon_sym_impl] = ACTIONS(594), - [anon_sym_let] = ACTIONS(594), - [anon_sym_loop] = ACTIONS(594), - [anon_sym_match] = ACTIONS(594), - [anon_sym_mod] = ACTIONS(594), - [anon_sym_pub] = ACTIONS(594), - [anon_sym_return] = ACTIONS(594), - [anon_sym_static] = ACTIONS(594), - [anon_sym_struct] = ACTIONS(594), - [anon_sym_trait] = ACTIONS(594), - [anon_sym_type] = ACTIONS(594), - [anon_sym_union] = ACTIONS(594), - [anon_sym_unsafe] = ACTIONS(594), - [anon_sym_use] = ACTIONS(594), - [anon_sym_while] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_extern] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_move] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), - [sym_block_comment] = ACTIONS(3), - }, - [70] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1118), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1117), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [75] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23201,12 +23932,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(596), [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(308), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -23224,481 +23954,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(598), - [sym_identifier] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_macro_rules_BANG] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(600), - [anon_sym_i8] = ACTIONS(600), - [anon_sym_u16] = ACTIONS(600), - [anon_sym_i16] = ACTIONS(600), - [anon_sym_u32] = ACTIONS(600), - [anon_sym_i32] = ACTIONS(600), - [anon_sym_u64] = ACTIONS(600), - [anon_sym_i64] = ACTIONS(600), - [anon_sym_u128] = ACTIONS(600), - [anon_sym_i128] = ACTIONS(600), - [anon_sym_isize] = ACTIONS(600), - [anon_sym_usize] = ACTIONS(600), - [anon_sym_f32] = ACTIONS(600), - [anon_sym_f64] = ACTIONS(600), - [anon_sym_bool] = ACTIONS(600), - [anon_sym_str] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_SQUOTE] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_async] = ACTIONS(600), - [anon_sym_break] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_enum] = ACTIONS(600), - [anon_sym_fn] = ACTIONS(600), - [anon_sym_for] = ACTIONS(600), - [anon_sym_if] = ACTIONS(600), - [anon_sym_impl] = ACTIONS(600), - [anon_sym_let] = ACTIONS(600), - [anon_sym_loop] = ACTIONS(600), - [anon_sym_match] = ACTIONS(600), - [anon_sym_mod] = ACTIONS(600), - [anon_sym_pub] = ACTIONS(600), - [anon_sym_return] = ACTIONS(600), - [anon_sym_static] = ACTIONS(600), - [anon_sym_struct] = ACTIONS(600), - [anon_sym_trait] = ACTIONS(600), - [anon_sym_type] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_unsafe] = ACTIONS(600), - [anon_sym_use] = ACTIONS(600), - [anon_sym_while] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_extern] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(600), - [anon_sym_move] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), - [sym_block_comment] = ACTIONS(3), - }, - [72] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(602), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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), - }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_macro_rules_BANG] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_QMARK] = ACTIONS(604), - [anon_sym_u8] = ACTIONS(606), - [anon_sym_i8] = ACTIONS(606), - [anon_sym_u16] = ACTIONS(606), - [anon_sym_i16] = ACTIONS(606), - [anon_sym_u32] = ACTIONS(606), - [anon_sym_i32] = ACTIONS(606), - [anon_sym_u64] = ACTIONS(606), - [anon_sym_i64] = ACTIONS(606), - [anon_sym_u128] = ACTIONS(606), - [anon_sym_i128] = ACTIONS(606), - [anon_sym_isize] = ACTIONS(606), - [anon_sym_usize] = ACTIONS(606), - [anon_sym_f32] = ACTIONS(606), - [anon_sym_f64] = ACTIONS(606), - [anon_sym_bool] = ACTIONS(606), - [anon_sym_str] = ACTIONS(606), - [anon_sym_char] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_async] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_default] = ACTIONS(606), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_fn] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_impl] = ACTIONS(606), - [anon_sym_let] = ACTIONS(606), - [anon_sym_loop] = ACTIONS(606), - [anon_sym_match] = ACTIONS(606), - [anon_sym_mod] = ACTIONS(606), - [anon_sym_pub] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_static] = ACTIONS(606), - [anon_sym_struct] = ACTIONS(606), - [anon_sym_trait] = ACTIONS(606), - [anon_sym_type] = ACTIONS(606), - [anon_sym_union] = ACTIONS(606), - [anon_sym_unsafe] = ACTIONS(606), - [anon_sym_use] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_EQ] = ACTIONS(606), - [anon_sym_extern] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_COLON_COLON] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(604), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_CARET] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_BANG_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(606), - [anon_sym_PLUS_EQ] = ACTIONS(604), - [anon_sym_DASH_EQ] = ACTIONS(604), - [anon_sym_STAR_EQ] = ACTIONS(604), - [anon_sym_SLASH_EQ] = ACTIONS(604), - [anon_sym_PERCENT_EQ] = ACTIONS(604), - [anon_sym_AMP_EQ] = ACTIONS(604), - [anon_sym_PIPE_EQ] = ACTIONS(604), - [anon_sym_CARET_EQ] = ACTIONS(604), - [anon_sym_LT_LT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_EQ] = ACTIONS(604), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_move] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(606), - [sym_integer_literal] = ACTIONS(604), - [aux_sym_string_literal_token1] = ACTIONS(604), - [sym_char_literal] = ACTIONS(604), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(606), - [sym_super] = ACTIONS(606), - [sym_crate] = ACTIONS(606), - [sym_metavariable] = ACTIONS(604), - [sym_raw_string_literal] = ACTIONS(604), - [sym_float_literal] = ACTIONS(604), - [sym_block_comment] = ACTIONS(3), - }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(608), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(608), - [anon_sym_macro_rules_BANG] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(608), - [anon_sym_u8] = ACTIONS(610), - [anon_sym_i8] = ACTIONS(610), - [anon_sym_u16] = ACTIONS(610), - [anon_sym_i16] = ACTIONS(610), - [anon_sym_u32] = ACTIONS(610), - [anon_sym_i32] = ACTIONS(610), - [anon_sym_u64] = ACTIONS(610), - [anon_sym_i64] = ACTIONS(610), - [anon_sym_u128] = ACTIONS(610), - [anon_sym_i128] = ACTIONS(610), - [anon_sym_isize] = ACTIONS(610), - [anon_sym_usize] = ACTIONS(610), - [anon_sym_f32] = ACTIONS(610), - [anon_sym_f64] = ACTIONS(610), - [anon_sym_bool] = ACTIONS(610), - [anon_sym_str] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_async] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_fn] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_impl] = ACTIONS(610), - [anon_sym_let] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(610), - [anon_sym_match] = ACTIONS(610), - [anon_sym_mod] = ACTIONS(610), - [anon_sym_pub] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_static] = ACTIONS(610), - [anon_sym_struct] = ACTIONS(610), - [anon_sym_trait] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_union] = ACTIONS(610), - [anon_sym_unsafe] = ACTIONS(610), - [anon_sym_use] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_extern] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_COLON_COLON] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT_EQ] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_BANG_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(608), - [anon_sym_STAR_EQ] = ACTIONS(608), - [anon_sym_SLASH_EQ] = ACTIONS(608), - [anon_sym_PERCENT_EQ] = ACTIONS(608), - [anon_sym_AMP_EQ] = ACTIONS(608), - [anon_sym_PIPE_EQ] = ACTIONS(608), - [anon_sym_CARET_EQ] = ACTIONS(608), - [anon_sym_LT_LT_EQ] = ACTIONS(608), - [anon_sym_GT_GT_EQ] = ACTIONS(608), - [anon_sym_yield] = ACTIONS(610), - [anon_sym_move] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(610), - [sym_integer_literal] = ACTIONS(608), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(608), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_crate] = ACTIONS(610), - [sym_metavariable] = ACTIONS(608), - [sym_raw_string_literal] = ACTIONS(608), - [sym_float_literal] = ACTIONS(608), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [76] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(612), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23754,264 +24060,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(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), - }, [77] = { - [ts_builtin_sym_end] = ACTIONS(618), - [sym_identifier] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(618), - [anon_sym_macro_rules_BANG] = ACTIONS(618), - [anon_sym_LPAREN] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_RBRACE] = ACTIONS(618), - [anon_sym_LBRACK] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_QMARK] = ACTIONS(618), - [anon_sym_u8] = ACTIONS(620), - [anon_sym_i8] = ACTIONS(620), - [anon_sym_u16] = ACTIONS(620), - [anon_sym_i16] = ACTIONS(620), - [anon_sym_u32] = ACTIONS(620), - [anon_sym_i32] = ACTIONS(620), - [anon_sym_u64] = ACTIONS(620), - [anon_sym_i64] = ACTIONS(620), - [anon_sym_u128] = ACTIONS(620), - [anon_sym_i128] = ACTIONS(620), - [anon_sym_isize] = ACTIONS(620), - [anon_sym_usize] = ACTIONS(620), - [anon_sym_f32] = ACTIONS(620), - [anon_sym_f64] = ACTIONS(620), - [anon_sym_bool] = ACTIONS(620), - [anon_sym_str] = ACTIONS(620), - [anon_sym_char] = ACTIONS(620), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_as] = ACTIONS(620), - [anon_sym_async] = ACTIONS(620), - [anon_sym_break] = ACTIONS(620), - [anon_sym_const] = ACTIONS(620), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), - [anon_sym_enum] = ACTIONS(620), - [anon_sym_fn] = ACTIONS(620), - [anon_sym_for] = ACTIONS(620), - [anon_sym_if] = ACTIONS(620), - [anon_sym_impl] = ACTIONS(620), - [anon_sym_let] = ACTIONS(620), - [anon_sym_loop] = ACTIONS(620), - [anon_sym_match] = ACTIONS(620), - [anon_sym_mod] = ACTIONS(620), - [anon_sym_pub] = ACTIONS(620), - [anon_sym_return] = ACTIONS(620), - [anon_sym_static] = ACTIONS(620), - [anon_sym_struct] = ACTIONS(620), - [anon_sym_trait] = ACTIONS(620), - [anon_sym_type] = ACTIONS(620), - [anon_sym_union] = ACTIONS(620), - [anon_sym_unsafe] = ACTIONS(620), - [anon_sym_use] = ACTIONS(620), - [anon_sym_while] = ACTIONS(620), - [anon_sym_POUND] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_extern] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(620), - [anon_sym_GT] = ACTIONS(620), - [anon_sym_COLON_COLON] = ACTIONS(618), - [anon_sym_AMP] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT] = ACTIONS(620), - [anon_sym_DOT_DOT_EQ] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_AMP_AMP] = ACTIONS(618), - [anon_sym_PIPE_PIPE] = ACTIONS(618), - [anon_sym_PIPE] = ACTIONS(620), - [anon_sym_CARET] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(618), - [anon_sym_BANG_EQ] = ACTIONS(618), - [anon_sym_LT_EQ] = ACTIONS(618), - [anon_sym_GT_EQ] = ACTIONS(618), - [anon_sym_LT_LT] = ACTIONS(620), - [anon_sym_GT_GT] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(620), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(618), - [anon_sym_DASH_EQ] = ACTIONS(618), - [anon_sym_STAR_EQ] = ACTIONS(618), - [anon_sym_SLASH_EQ] = ACTIONS(618), - [anon_sym_PERCENT_EQ] = ACTIONS(618), - [anon_sym_AMP_EQ] = ACTIONS(618), - [anon_sym_PIPE_EQ] = ACTIONS(618), - [anon_sym_CARET_EQ] = ACTIONS(618), - [anon_sym_LT_LT_EQ] = ACTIONS(618), - [anon_sym_GT_GT_EQ] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(620), - [anon_sym_move] = ACTIONS(620), - [anon_sym_DOT] = ACTIONS(620), - [sym_integer_literal] = ACTIONS(618), - [aux_sym_string_literal_token1] = ACTIONS(618), - [sym_char_literal] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(620), - [sym_super] = ACTIONS(620), - [sym_crate] = ACTIONS(620), - [sym_metavariable] = ACTIONS(618), - [sym_raw_string_literal] = ACTIONS(618), - [sym_float_literal] = ACTIONS(618), + [ts_builtin_sym_end] = ACTIONS(562), + [sym_identifier] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_macro_rules_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_impl] = ACTIONS(564), + [anon_sym_let] = ACTIONS(564), + [anon_sym_loop] = ACTIONS(564), + [anon_sym_match] = ACTIONS(564), + [anon_sym_mod] = ACTIONS(564), + [anon_sym_pub] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_trait] = ACTIONS(564), + [anon_sym_type] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [anon_sym_unsafe] = ACTIONS(564), + [anon_sym_use] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_move] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), [sym_block_comment] = ACTIONS(3), }, [78] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1083), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24052,7 +24253,6 @@ 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(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), @@ -24073,56 +24273,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [79] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_macro_rules_BANG] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_fn] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_impl] = ACTIONS(572), + [anon_sym_let] = ACTIONS(572), + [anon_sym_loop] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_mod] = ACTIONS(572), + [anon_sym_pub] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_trait] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_unsafe] = ACTIONS(572), + [anon_sym_use] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_move] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), + [sym_block_comment] = ACTIONS(3), + }, + [80] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -24148,19 +24455,18 @@ 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(624), [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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -24178,57 +24484,163 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [81] = { + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_macro_rules_BANG] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(576), + [anon_sym_fn] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_impl] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_loop] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_mod] = ACTIONS(576), + [anon_sym_pub] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_static] = ACTIONS(576), + [anon_sym_struct] = ACTIONS(576), + [anon_sym_trait] = ACTIONS(576), + [anon_sym_type] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_unsafe] = ACTIONS(576), + [anon_sym_use] = ACTIONS(576), + [anon_sym_while] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_extern] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(576), + [anon_sym_move] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), + [sym_block_comment] = ACTIONS(3), + }, + [82] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24284,163 +24696,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(628), - [sym_identifier] = ACTIONS(630), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_macro_rules_BANG] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_async] = ACTIONS(630), - [anon_sym_break] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_continue] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_enum] = ACTIONS(630), - [anon_sym_fn] = ACTIONS(630), - [anon_sym_for] = ACTIONS(630), - [anon_sym_if] = ACTIONS(630), - [anon_sym_impl] = ACTIONS(630), - [anon_sym_let] = ACTIONS(630), - [anon_sym_loop] = ACTIONS(630), - [anon_sym_match] = ACTIONS(630), - [anon_sym_mod] = ACTIONS(630), - [anon_sym_pub] = ACTIONS(630), - [anon_sym_return] = ACTIONS(630), - [anon_sym_static] = ACTIONS(630), - [anon_sym_struct] = ACTIONS(630), - [anon_sym_trait] = ACTIONS(630), - [anon_sym_type] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_unsafe] = ACTIONS(630), - [anon_sym_use] = ACTIONS(630), - [anon_sym_while] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(630), - [anon_sym_EQ] = ACTIONS(630), - [anon_sym_extern] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_COLON_COLON] = ACTIONS(628), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(628), - [anon_sym_PIPE_PIPE] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(630), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(628), - [anon_sym_DASH_EQ] = ACTIONS(628), - [anon_sym_STAR_EQ] = ACTIONS(628), - [anon_sym_SLASH_EQ] = ACTIONS(628), - [anon_sym_PERCENT_EQ] = ACTIONS(628), - [anon_sym_AMP_EQ] = ACTIONS(628), - [anon_sym_PIPE_EQ] = ACTIONS(628), - [anon_sym_CARET_EQ] = ACTIONS(628), - [anon_sym_LT_LT_EQ] = ACTIONS(628), - [anon_sym_GT_GT_EQ] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(630), - [anon_sym_move] = ACTIONS(630), - [anon_sym_DOT] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [83] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -24466,19 +24773,18 @@ 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(632), [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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -24496,587 +24802,588 @@ 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(634), - [sym_identifier] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_macro_rules_BANG] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(634), - [anon_sym_u8] = ACTIONS(636), - [anon_sym_i8] = ACTIONS(636), - [anon_sym_u16] = ACTIONS(636), - [anon_sym_i16] = ACTIONS(636), - [anon_sym_u32] = ACTIONS(636), - [anon_sym_i32] = ACTIONS(636), - [anon_sym_u64] = ACTIONS(636), - [anon_sym_i64] = ACTIONS(636), - [anon_sym_u128] = ACTIONS(636), - [anon_sym_i128] = ACTIONS(636), - [anon_sym_isize] = ACTIONS(636), - [anon_sym_usize] = ACTIONS(636), - [anon_sym_f32] = ACTIONS(636), - [anon_sym_f64] = ACTIONS(636), - [anon_sym_bool] = ACTIONS(636), - [anon_sym_str] = ACTIONS(636), - [anon_sym_char] = ACTIONS(636), - [anon_sym_SQUOTE] = ACTIONS(636), - [anon_sym_as] = ACTIONS(636), - [anon_sym_async] = ACTIONS(636), - [anon_sym_break] = ACTIONS(636), - [anon_sym_const] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_enum] = ACTIONS(636), - [anon_sym_fn] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_impl] = ACTIONS(636), - [anon_sym_let] = ACTIONS(636), - [anon_sym_loop] = ACTIONS(636), - [anon_sym_match] = ACTIONS(636), - [anon_sym_mod] = ACTIONS(636), - [anon_sym_pub] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_static] = ACTIONS(636), - [anon_sym_struct] = ACTIONS(636), - [anon_sym_trait] = ACTIONS(636), - [anon_sym_type] = ACTIONS(636), - [anon_sym_union] = ACTIONS(636), - [anon_sym_unsafe] = ACTIONS(636), - [anon_sym_use] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(636), - [anon_sym_extern] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(634), - [anon_sym_DOT_DOT] = ACTIONS(636), - [anon_sym_DOT_DOT_EQ] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(634), - [anon_sym_PIPE_PIPE] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(634), - [anon_sym_BANG_EQ] = ACTIONS(634), - [anon_sym_LT_EQ] = ACTIONS(634), - [anon_sym_GT_EQ] = ACTIONS(634), - [anon_sym_LT_LT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_AMP_EQ] = ACTIONS(634), - [anon_sym_PIPE_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_LT_LT_EQ] = ACTIONS(634), - [anon_sym_GT_GT_EQ] = ACTIONS(634), - [anon_sym_yield] = ACTIONS(636), - [anon_sym_move] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(636), - [sym_integer_literal] = ACTIONS(634), - [aux_sym_string_literal_token1] = ACTIONS(634), - [sym_char_literal] = ACTIONS(634), - [anon_sym_true] = ACTIONS(636), - [anon_sym_false] = ACTIONS(636), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(636), - [sym_super] = ACTIONS(636), - [sym_crate] = ACTIONS(636), - [sym_metavariable] = ACTIONS(634), - [sym_raw_string_literal] = ACTIONS(634), - [sym_float_literal] = ACTIONS(634), - [sym_block_comment] = ACTIONS(3), - }, [84] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1131), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [sym_mutable_specifier] = ACTIONS(638), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [85] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_macro_rules_BANG] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_async] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_impl] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(580), + [anon_sym_mod] = ACTIONS(580), + [anon_sym_pub] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_struct] = ACTIONS(580), + [anon_sym_trait] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_unsafe] = ACTIONS(580), + [anon_sym_use] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_extern] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_move] = ACTIONS(580), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, + [86] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(640), [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [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), }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(642), - [sym_identifier] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_macro_rules_BANG] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(642), - [anon_sym_u8] = ACTIONS(644), - [anon_sym_i8] = ACTIONS(644), - [anon_sym_u16] = ACTIONS(644), - [anon_sym_i16] = ACTIONS(644), - [anon_sym_u32] = ACTIONS(644), - [anon_sym_i32] = ACTIONS(644), - [anon_sym_u64] = ACTIONS(644), - [anon_sym_i64] = ACTIONS(644), - [anon_sym_u128] = ACTIONS(644), - [anon_sym_i128] = ACTIONS(644), - [anon_sym_isize] = ACTIONS(644), - [anon_sym_usize] = ACTIONS(644), - [anon_sym_f32] = ACTIONS(644), - [anon_sym_f64] = ACTIONS(644), - [anon_sym_bool] = ACTIONS(644), - [anon_sym_str] = ACTIONS(644), - [anon_sym_char] = ACTIONS(644), - [anon_sym_SQUOTE] = ACTIONS(644), - [anon_sym_as] = ACTIONS(644), - [anon_sym_async] = ACTIONS(644), - [anon_sym_break] = ACTIONS(644), - [anon_sym_const] = ACTIONS(644), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_enum] = ACTIONS(644), - [anon_sym_fn] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_impl] = ACTIONS(644), - [anon_sym_let] = ACTIONS(644), - [anon_sym_loop] = ACTIONS(644), - [anon_sym_match] = ACTIONS(644), - [anon_sym_mod] = ACTIONS(644), - [anon_sym_pub] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_static] = ACTIONS(644), - [anon_sym_struct] = ACTIONS(644), - [anon_sym_trait] = ACTIONS(644), - [anon_sym_type] = ACTIONS(644), - [anon_sym_union] = ACTIONS(644), - [anon_sym_unsafe] = ACTIONS(644), - [anon_sym_use] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(642), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_extern] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_COLON_COLON] = ACTIONS(642), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(642), - [anon_sym_PIPE_PIPE] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(642), - [anon_sym_BANG_EQ] = ACTIONS(642), - [anon_sym_LT_EQ] = ACTIONS(642), - [anon_sym_GT_EQ] = ACTIONS(642), - [anon_sym_LT_LT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_STAR_EQ] = ACTIONS(642), - [anon_sym_SLASH_EQ] = ACTIONS(642), - [anon_sym_PERCENT_EQ] = ACTIONS(642), - [anon_sym_AMP_EQ] = ACTIONS(642), - [anon_sym_PIPE_EQ] = ACTIONS(642), - [anon_sym_CARET_EQ] = ACTIONS(642), - [anon_sym_LT_LT_EQ] = ACTIONS(642), - [anon_sym_GT_GT_EQ] = ACTIONS(642), - [anon_sym_yield] = ACTIONS(644), - [anon_sym_move] = ACTIONS(644), - [anon_sym_DOT] = ACTIONS(644), - [sym_integer_literal] = ACTIONS(642), - [aux_sym_string_literal_token1] = ACTIONS(642), - [sym_char_literal] = ACTIONS(642), - [anon_sym_true] = ACTIONS(644), - [anon_sym_false] = ACTIONS(644), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(644), - [sym_super] = ACTIONS(644), - [sym_crate] = ACTIONS(644), - [sym_metavariable] = ACTIONS(642), - [sym_raw_string_literal] = ACTIONS(642), - [sym_float_literal] = ACTIONS(642), - [sym_block_comment] = ACTIONS(3), - }, [87] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(646), [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [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), }, [88] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1040), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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), + }, + [89] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -25108,13 +25415,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(524), - [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -25132,686 +25438,371 @@ 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(648), - [sym_identifier] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_macro_rules_BANG] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_async] = ACTIONS(650), - [anon_sym_break] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_continue] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_enum] = ACTIONS(650), - [anon_sym_fn] = ACTIONS(650), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(650), - [anon_sym_impl] = ACTIONS(650), - [anon_sym_let] = ACTIONS(650), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(650), - [anon_sym_mod] = ACTIONS(650), - [anon_sym_pub] = ACTIONS(650), - [anon_sym_return] = ACTIONS(650), - [anon_sym_static] = ACTIONS(650), - [anon_sym_struct] = ACTIONS(650), - [anon_sym_trait] = ACTIONS(650), - [anon_sym_type] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_unsafe] = ACTIONS(650), - [anon_sym_use] = ACTIONS(650), - [anon_sym_while] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_extern] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_yield] = ACTIONS(650), - [anon_sym_move] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), - [sym_block_comment] = ACTIONS(3), - }, [90] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(652), [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [91] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1117), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_DASH_GT] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(350), + [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), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(654), - [sym_identifier] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(654), - [anon_sym_macro_rules_BANG] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_u8] = ACTIONS(656), - [anon_sym_i8] = ACTIONS(656), - [anon_sym_u16] = ACTIONS(656), - [anon_sym_i16] = ACTIONS(656), - [anon_sym_u32] = ACTIONS(656), - [anon_sym_i32] = ACTIONS(656), - [anon_sym_u64] = ACTIONS(656), - [anon_sym_i64] = ACTIONS(656), - [anon_sym_u128] = ACTIONS(656), - [anon_sym_i128] = ACTIONS(656), - [anon_sym_isize] = ACTIONS(656), - [anon_sym_usize] = ACTIONS(656), - [anon_sym_f32] = ACTIONS(656), - [anon_sym_f64] = ACTIONS(656), - [anon_sym_bool] = ACTIONS(656), - [anon_sym_str] = ACTIONS(656), - [anon_sym_char] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(656), - [anon_sym_as] = ACTIONS(656), - [anon_sym_async] = ACTIONS(656), - [anon_sym_break] = ACTIONS(656), - [anon_sym_const] = ACTIONS(656), - [anon_sym_continue] = ACTIONS(656), - [anon_sym_default] = ACTIONS(656), - [anon_sym_enum] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(656), - [anon_sym_for] = ACTIONS(656), - [anon_sym_if] = ACTIONS(656), - [anon_sym_impl] = ACTIONS(656), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(656), - [anon_sym_match] = ACTIONS(656), - [anon_sym_mod] = ACTIONS(656), - [anon_sym_pub] = ACTIONS(656), - [anon_sym_return] = ACTIONS(656), - [anon_sym_static] = ACTIONS(656), - [anon_sym_struct] = ACTIONS(656), - [anon_sym_trait] = ACTIONS(656), - [anon_sym_type] = ACTIONS(656), - [anon_sym_union] = ACTIONS(656), - [anon_sym_unsafe] = ACTIONS(656), - [anon_sym_use] = ACTIONS(656), - [anon_sym_while] = ACTIONS(656), - [anon_sym_POUND] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_extern] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(656), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_SLASH] = ACTIONS(656), - [anon_sym_PERCENT] = ACTIONS(656), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_STAR_EQ] = ACTIONS(654), - [anon_sym_SLASH_EQ] = ACTIONS(654), - [anon_sym_PERCENT_EQ] = ACTIONS(654), - [anon_sym_AMP_EQ] = ACTIONS(654), - [anon_sym_PIPE_EQ] = ACTIONS(654), - [anon_sym_CARET_EQ] = ACTIONS(654), - [anon_sym_LT_LT_EQ] = ACTIONS(654), - [anon_sym_GT_GT_EQ] = ACTIONS(654), - [anon_sym_yield] = ACTIONS(656), - [anon_sym_move] = ACTIONS(656), - [anon_sym_DOT] = ACTIONS(656), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(654), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(656), - [anon_sym_false] = ACTIONS(656), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(656), - [sym_super] = ACTIONS(656), - [sym_crate] = ACTIONS(656), - [sym_metavariable] = ACTIONS(654), - [sym_raw_string_literal] = ACTIONS(654), - [sym_float_literal] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_macro_rules_BANG] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_extern] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_yield] = ACTIONS(584), + [anon_sym_move] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), [sym_block_comment] = ACTIONS(3), }, [93] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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), - }, - [94] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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), - }, - [95] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25871,52 +25862,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1089), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [94] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25976,57 +25968,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [95] = { + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_macro_rules_BANG] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_async] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_fn] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(588), + [anon_sym_let] = ACTIONS(588), + [anon_sym_loop] = ACTIONS(588), + [anon_sym_match] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(588), + [anon_sym_pub] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_struct] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_use] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(588), + [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_move] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), + [sym_block_comment] = ACTIONS(3), + }, + [96] = { + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_macro_rules_BANG] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_async] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_fn] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_impl] = ACTIONS(592), + [anon_sym_let] = ACTIONS(592), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(592), + [anon_sym_mod] = ACTIONS(592), + [anon_sym_pub] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_trait] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_unsafe] = ACTIONS(592), + [anon_sym_use] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_yield] = ACTIONS(592), + [anon_sym_move] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), + [sym_block_comment] = ACTIONS(3), + }, [97] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26058,12 +26263,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26082,261 +26287,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [98] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [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), }, [99] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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), + [ts_builtin_sym_end] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_macro_rules_BANG] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(596), + [anon_sym_i8] = ACTIONS(596), + [anon_sym_u16] = ACTIONS(596), + [anon_sym_i16] = ACTIONS(596), + [anon_sym_u32] = ACTIONS(596), + [anon_sym_i32] = ACTIONS(596), + [anon_sym_u64] = ACTIONS(596), + [anon_sym_i64] = ACTIONS(596), + [anon_sym_u128] = ACTIONS(596), + [anon_sym_i128] = ACTIONS(596), + [anon_sym_isize] = ACTIONS(596), + [anon_sym_usize] = ACTIONS(596), + [anon_sym_f32] = ACTIONS(596), + [anon_sym_f64] = ACTIONS(596), + [anon_sym_bool] = ACTIONS(596), + [anon_sym_str] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_SQUOTE] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_async] = ACTIONS(596), + [anon_sym_break] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(596), + [anon_sym_fn] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_impl] = ACTIONS(596), + [anon_sym_let] = ACTIONS(596), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(596), + [anon_sym_mod] = ACTIONS(596), + [anon_sym_pub] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_static] = ACTIONS(596), + [anon_sym_struct] = ACTIONS(596), + [anon_sym_trait] = ACTIONS(596), + [anon_sym_type] = ACTIONS(596), + [anon_sym_union] = ACTIONS(596), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_use] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_extern] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_AMP_EQ] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(594), + [anon_sym_CARET_EQ] = ACTIONS(594), + [anon_sym_LT_LT_EQ] = ACTIONS(594), + [anon_sym_GT_GT_EQ] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_move] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [sym_integer_literal] = ACTIONS(594), + [aux_sym_string_literal_token1] = ACTIONS(594), + [sym_char_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(596), + [anon_sym_false] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_crate] = ACTIONS(596), + [sym_metavariable] = ACTIONS(594), + [sym_raw_string_literal] = ACTIONS(594), + [sym_float_literal] = ACTIONS(594), [sym_block_comment] = ACTIONS(3), }, [100] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26377,7 +26585,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(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26397,51 +26605,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [101] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1084), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26482,7 +26691,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(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26502,161 +26711,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [102] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_macro_rules_BANG] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_u8] = ACTIONS(600), + [anon_sym_i8] = ACTIONS(600), + [anon_sym_u16] = ACTIONS(600), + [anon_sym_i16] = ACTIONS(600), + [anon_sym_u32] = ACTIONS(600), + [anon_sym_i32] = ACTIONS(600), + [anon_sym_u64] = ACTIONS(600), + [anon_sym_i64] = ACTIONS(600), + [anon_sym_u128] = ACTIONS(600), + [anon_sym_i128] = ACTIONS(600), + [anon_sym_isize] = ACTIONS(600), + [anon_sym_usize] = ACTIONS(600), + [anon_sym_f32] = ACTIONS(600), + [anon_sym_f64] = ACTIONS(600), + [anon_sym_bool] = ACTIONS(600), + [anon_sym_str] = ACTIONS(600), + [anon_sym_char] = ACTIONS(600), + [anon_sym_SQUOTE] = ACTIONS(600), + [anon_sym_as] = ACTIONS(600), + [anon_sym_async] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_const] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(600), + [anon_sym_fn] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_impl] = ACTIONS(600), + [anon_sym_let] = ACTIONS(600), + [anon_sym_loop] = ACTIONS(600), + [anon_sym_match] = ACTIONS(600), + [anon_sym_mod] = ACTIONS(600), + [anon_sym_pub] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_static] = ACTIONS(600), + [anon_sym_struct] = ACTIONS(600), + [anon_sym_trait] = ACTIONS(600), + [anon_sym_type] = ACTIONS(600), + [anon_sym_union] = ACTIONS(600), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_use] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(598), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(600), + [anon_sym_extern] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_PIPE] = ACTIONS(600), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(598), + [anon_sym_BANG_EQ] = ACTIONS(598), + [anon_sym_LT_EQ] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(600), + [anon_sym_PERCENT] = ACTIONS(600), + [anon_sym_PLUS_EQ] = ACTIONS(598), + [anon_sym_DASH_EQ] = ACTIONS(598), + [anon_sym_STAR_EQ] = ACTIONS(598), + [anon_sym_SLASH_EQ] = ACTIONS(598), + [anon_sym_PERCENT_EQ] = ACTIONS(598), + [anon_sym_AMP_EQ] = ACTIONS(598), + [anon_sym_PIPE_EQ] = ACTIONS(598), + [anon_sym_CARET_EQ] = ACTIONS(598), + [anon_sym_LT_LT_EQ] = ACTIONS(598), + [anon_sym_GT_GT_EQ] = ACTIONS(598), + [anon_sym_yield] = ACTIONS(600), + [anon_sym_move] = ACTIONS(600), + [anon_sym_DOT] = ACTIONS(600), + [sym_integer_literal] = ACTIONS(598), + [aux_sym_string_literal_token1] = ACTIONS(598), + [sym_char_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_crate] = ACTIONS(600), + [sym_metavariable] = ACTIONS(598), + [sym_raw_string_literal] = ACTIONS(598), + [sym_float_literal] = ACTIONS(598), [sym_block_comment] = ACTIONS(3), }, [103] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1069), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26688,12 +26899,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26712,156 +26923,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [104] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1144), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [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), }, [105] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26922,261 +27135,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [106] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [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), }, [107] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(769), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [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), }, [108] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [ts_builtin_sym_end] = ACTIONS(602), + [sym_identifier] = ACTIONS(604), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_macro_rules_BANG] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(604), + [anon_sym_i8] = ACTIONS(604), + [anon_sym_u16] = ACTIONS(604), + [anon_sym_i16] = ACTIONS(604), + [anon_sym_u32] = ACTIONS(604), + [anon_sym_i32] = ACTIONS(604), + [anon_sym_u64] = ACTIONS(604), + [anon_sym_i64] = ACTIONS(604), + [anon_sym_u128] = ACTIONS(604), + [anon_sym_i128] = ACTIONS(604), + [anon_sym_isize] = ACTIONS(604), + [anon_sym_usize] = ACTIONS(604), + [anon_sym_f32] = ACTIONS(604), + [anon_sym_f64] = ACTIONS(604), + [anon_sym_bool] = ACTIONS(604), + [anon_sym_str] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_as] = ACTIONS(604), + [anon_sym_async] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_const] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(604), + [anon_sym_fn] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_impl] = ACTIONS(604), + [anon_sym_let] = ACTIONS(604), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(604), + [anon_sym_mod] = ACTIONS(604), + [anon_sym_pub] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_static] = ACTIONS(604), + [anon_sym_struct] = ACTIONS(604), + [anon_sym_trait] = ACTIONS(604), + [anon_sym_type] = ACTIONS(604), + [anon_sym_union] = ACTIONS(604), + [anon_sym_unsafe] = ACTIONS(604), + [anon_sym_use] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_POUND] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(604), + [anon_sym_extern] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_CARET] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(602), + [anon_sym_BANG_EQ] = ACTIONS(602), + [anon_sym_LT_EQ] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(604), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_PLUS_EQ] = ACTIONS(602), + [anon_sym_DASH_EQ] = ACTIONS(602), + [anon_sym_STAR_EQ] = ACTIONS(602), + [anon_sym_SLASH_EQ] = ACTIONS(602), + [anon_sym_PERCENT_EQ] = ACTIONS(602), + [anon_sym_AMP_EQ] = ACTIONS(602), + [anon_sym_PIPE_EQ] = ACTIONS(602), + [anon_sym_CARET_EQ] = ACTIONS(602), + [anon_sym_LT_LT_EQ] = ACTIONS(602), + [anon_sym_GT_GT_EQ] = ACTIONS(602), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_move] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(604), + [sym_integer_literal] = ACTIONS(602), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_crate] = ACTIONS(604), + [sym_metavariable] = ACTIONS(602), + [sym_raw_string_literal] = ACTIONS(602), + [sym_float_literal] = ACTIONS(602), + [sym_block_comment] = ACTIONS(3), + }, + [109] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27236,472 +27558,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [110] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [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), }, - [110] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [111] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [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), }, - [111] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [112] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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), - }, - [112] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [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), }, [113] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1069), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27762,261 +27983,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [114] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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), - }, - [115] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1078), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28057,7 +28069,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(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28076,52 +28088,53 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1068), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [115] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1138), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28162,7 +28175,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(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28181,57 +28194,58 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1188), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [116] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1190), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28263,12 +28277,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -28286,157 +28300,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(556), - [anon_sym_async] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_extern] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_move] = ACTIONS(552), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(550), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(550), - [sym_raw_string_literal] = ACTIONS(550), - [sym_float_literal] = ACTIONS(550), - [sym_block_comment] = ACTIONS(3), - }, - [120] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1065), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [117] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1137), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28477,7 +28387,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(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28496,52 +28406,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [118] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1135), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28582,7 +28493,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(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28601,52 +28512,53 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(769), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [119] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1133), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28687,7 +28599,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(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28706,52 +28618,53 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1123), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [120] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28811,52 +28724,53 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1027), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [121] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28916,52 +28830,53 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1032), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [122] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29021,55 +28936,162 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [123] = { + [ts_builtin_sym_end] = ACTIONS(606), + [sym_identifier] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(606), + [anon_sym_macro_rules_BANG] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(608), + [anon_sym_i8] = ACTIONS(608), + [anon_sym_u16] = ACTIONS(608), + [anon_sym_i16] = ACTIONS(608), + [anon_sym_u32] = ACTIONS(608), + [anon_sym_i32] = ACTIONS(608), + [anon_sym_u64] = ACTIONS(608), + [anon_sym_i64] = ACTIONS(608), + [anon_sym_u128] = ACTIONS(608), + [anon_sym_i128] = ACTIONS(608), + [anon_sym_isize] = ACTIONS(608), + [anon_sym_usize] = ACTIONS(608), + [anon_sym_f32] = ACTIONS(608), + [anon_sym_f64] = ACTIONS(608), + [anon_sym_bool] = ACTIONS(608), + [anon_sym_str] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(608), + [anon_sym_as] = ACTIONS(608), + [anon_sym_async] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_const] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(608), + [anon_sym_fn] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_impl] = ACTIONS(608), + [anon_sym_let] = ACTIONS(608), + [anon_sym_loop] = ACTIONS(608), + [anon_sym_match] = ACTIONS(608), + [anon_sym_mod] = ACTIONS(608), + [anon_sym_pub] = ACTIONS(608), + [anon_sym_return] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_struct] = ACTIONS(608), + [anon_sym_trait] = ACTIONS(608), + [anon_sym_type] = ACTIONS(608), + [anon_sym_union] = ACTIONS(608), + [anon_sym_unsafe] = ACTIONS(608), + [anon_sym_use] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [anon_sym_POUND] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(608), + [anon_sym_extern] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_COLON_COLON] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_CARET] = ACTIONS(608), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_BANG_EQ] = ACTIONS(606), + [anon_sym_LT_EQ] = ACTIONS(606), + [anon_sym_GT_EQ] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_SLASH] = ACTIONS(608), + [anon_sym_PERCENT] = ACTIONS(608), + [anon_sym_PLUS_EQ] = ACTIONS(606), + [anon_sym_DASH_EQ] = ACTIONS(606), + [anon_sym_STAR_EQ] = ACTIONS(606), + [anon_sym_SLASH_EQ] = ACTIONS(606), + [anon_sym_PERCENT_EQ] = ACTIONS(606), + [anon_sym_AMP_EQ] = ACTIONS(606), + [anon_sym_PIPE_EQ] = ACTIONS(606), + [anon_sym_CARET_EQ] = ACTIONS(606), + [anon_sym_LT_LT_EQ] = ACTIONS(606), + [anon_sym_GT_GT_EQ] = ACTIONS(606), + [anon_sym_yield] = ACTIONS(608), + [anon_sym_move] = ACTIONS(608), + [anon_sym_DOT] = ACTIONS(608), + [sym_integer_literal] = ACTIONS(606), + [aux_sym_string_literal_token1] = ACTIONS(606), + [sym_char_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(608), + [anon_sym_false] = ACTIONS(608), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(608), + [sym_super] = ACTIONS(608), + [sym_crate] = ACTIONS(608), + [sym_metavariable] = ACTIONS(606), + [sym_raw_string_literal] = ACTIONS(606), + [sym_float_literal] = ACTIONS(606), + [sym_block_comment] = ACTIONS(3), + }, + [124] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(224), + [sym_if_let_expression] = STATE(224), + [sym_match_expression] = STATE(224), + [sym_while_expression] = STATE(224), + [sym_while_let_expression] = STATE(224), + [sym_loop_expression] = STATE(224), + [sym_for_expression] = STATE(224), + [sym_const_block] = STATE(224), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2516), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(224), + [sym_async_block] = STATE(224), + [sym_block] = STATE(224), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(610), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29090,19 +29112,125 @@ 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(612), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(614), [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(616), + [anon_sym_if] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(620), + [anon_sym_match] = ACTIONS(622), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(624), + [anon_sym_while] = ACTIONS(626), + [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), + }, + [125] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(224), + [sym_if_let_expression] = STATE(224), + [sym_match_expression] = STATE(224), + [sym_while_expression] = STATE(224), + [sym_while_let_expression] = STATE(224), + [sym_loop_expression] = STATE(224), + [sym_for_expression] = STATE(224), + [sym_const_block] = STATE(224), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2516), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(224), + [sym_async_block] = STATE(224), + [sym_block] = STATE(224), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(610), + [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(612), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(620), + [anon_sym_match] = ACTIONS(622), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(624), + [anon_sym_while] = ACTIONS(626), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -29126,52 +29254,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [126] = { + [ts_builtin_sym_end] = ACTIONS(628), + [sym_identifier] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(628), + [anon_sym_macro_rules_BANG] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_async] = ACTIONS(630), + [anon_sym_break] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_enum] = ACTIONS(630), + [anon_sym_fn] = ACTIONS(630), + [anon_sym_for] = ACTIONS(630), + [anon_sym_if] = ACTIONS(630), + [anon_sym_impl] = ACTIONS(630), + [anon_sym_let] = ACTIONS(630), + [anon_sym_loop] = ACTIONS(630), + [anon_sym_match] = ACTIONS(630), + [anon_sym_mod] = ACTIONS(630), + [anon_sym_pub] = ACTIONS(630), + [anon_sym_return] = ACTIONS(630), + [anon_sym_static] = ACTIONS(630), + [anon_sym_struct] = ACTIONS(630), + [anon_sym_trait] = ACTIONS(630), + [anon_sym_type] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_unsafe] = ACTIONS(630), + [anon_sym_use] = ACTIONS(630), + [anon_sym_while] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_extern] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_COLON_COLON] = ACTIONS(628), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_DASH_EQ] = ACTIONS(628), + [anon_sym_STAR_EQ] = ACTIONS(628), + [anon_sym_SLASH_EQ] = ACTIONS(628), + [anon_sym_PERCENT_EQ] = ACTIONS(628), + [anon_sym_AMP_EQ] = ACTIONS(628), + [anon_sym_PIPE_EQ] = ACTIONS(628), + [anon_sym_CARET_EQ] = ACTIONS(628), + [anon_sym_LT_LT_EQ] = ACTIONS(628), + [anon_sym_GT_GT_EQ] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(630), + [anon_sym_move] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), + [sym_block_comment] = ACTIONS(3), + }, [127] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29232,161 +29467,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [128] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1181), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [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), }, [129] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29418,12 +29655,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29442,51 +29679,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [130] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29547,161 +29785,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [131] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [ts_builtin_sym_end] = ACTIONS(632), + [sym_identifier] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_macro_rules_BANG] = ACTIONS(632), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(634), + [anon_sym_extern] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(634), + [anon_sym_COLON_COLON] = ACTIONS(632), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(632), + [anon_sym_DOT_DOT] = ACTIONS(634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_EQ_EQ] = ACTIONS(632), + [anon_sym_BANG_EQ] = ACTIONS(632), + [anon_sym_LT_EQ] = ACTIONS(632), + [anon_sym_GT_EQ] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(634), + [anon_sym_PLUS_EQ] = ACTIONS(632), + [anon_sym_DASH_EQ] = ACTIONS(632), + [anon_sym_STAR_EQ] = ACTIONS(632), + [anon_sym_SLASH_EQ] = ACTIONS(632), + [anon_sym_PERCENT_EQ] = ACTIONS(632), + [anon_sym_AMP_EQ] = ACTIONS(632), + [anon_sym_PIPE_EQ] = ACTIONS(632), + [anon_sym_CARET_EQ] = ACTIONS(632), + [anon_sym_LT_LT_EQ] = ACTIONS(632), + [anon_sym_GT_GT_EQ] = ACTIONS(632), + [anon_sym_yield] = ACTIONS(634), + [anon_sym_move] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(632), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), + [sym_block_comment] = ACTIONS(3), + }, + [132] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [132] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [133] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29733,12 +30079,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29756,57 +30102,58 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [134] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29838,12 +30185,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29861,262 +30208,371 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [135] = { + [ts_builtin_sym_end] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_macro_rules_BANG] = ACTIONS(636), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [anon_sym_DOT_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_LT_EQ] = ACTIONS(636), + [anon_sym_GT_EQ] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(638), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_PLUS_EQ] = ACTIONS(636), + [anon_sym_DASH_EQ] = ACTIONS(636), + [anon_sym_STAR_EQ] = ACTIONS(636), + [anon_sym_SLASH_EQ] = ACTIONS(636), + [anon_sym_PERCENT_EQ] = ACTIONS(636), + [anon_sym_AMP_EQ] = ACTIONS(636), + [anon_sym_PIPE_EQ] = ACTIONS(636), + [anon_sym_CARET_EQ] = ACTIONS(636), + [anon_sym_LT_LT_EQ] = ACTIONS(636), + [anon_sym_GT_GT_EQ] = ACTIONS(636), + [anon_sym_yield] = ACTIONS(638), + [anon_sym_move] = ACTIONS(638), + [anon_sym_DOT] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(636), + [aux_sym_string_literal_token1] = ACTIONS(636), + [sym_char_literal] = ACTIONS(636), + [anon_sym_true] = ACTIONS(638), + [anon_sym_false] = ACTIONS(638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(636), + [sym_raw_string_literal] = ACTIONS(636), + [sym_float_literal] = ACTIONS(636), + [sym_block_comment] = ACTIONS(3), + }, + [136] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [135] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1035), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [137] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1036), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [138] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30176,262 +30632,583 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [139] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [138] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1177), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [140] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_macro_rules_BANG] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(642), + [anon_sym_i8] = ACTIONS(642), + [anon_sym_u16] = ACTIONS(642), + [anon_sym_i16] = ACTIONS(642), + [anon_sym_u32] = ACTIONS(642), + [anon_sym_i32] = ACTIONS(642), + [anon_sym_u64] = ACTIONS(642), + [anon_sym_i64] = ACTIONS(642), + [anon_sym_u128] = ACTIONS(642), + [anon_sym_i128] = ACTIONS(642), + [anon_sym_isize] = ACTIONS(642), + [anon_sym_usize] = ACTIONS(642), + [anon_sym_f32] = ACTIONS(642), + [anon_sym_f64] = ACTIONS(642), + [anon_sym_bool] = ACTIONS(642), + [anon_sym_str] = ACTIONS(642), + [anon_sym_char] = ACTIONS(642), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_as] = ACTIONS(642), + [anon_sym_async] = ACTIONS(642), + [anon_sym_break] = ACTIONS(642), + [anon_sym_const] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_enum] = ACTIONS(642), + [anon_sym_fn] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_impl] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(642), + [anon_sym_mod] = ACTIONS(642), + [anon_sym_pub] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_static] = ACTIONS(642), + [anon_sym_struct] = ACTIONS(642), + [anon_sym_trait] = ACTIONS(642), + [anon_sym_type] = ACTIONS(642), + [anon_sym_union] = ACTIONS(642), + [anon_sym_unsafe] = ACTIONS(642), + [anon_sym_use] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT] = ACTIONS(642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_yield] = ACTIONS(642), + [anon_sym_move] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [sym_integer_literal] = ACTIONS(640), + [aux_sym_string_literal_token1] = ACTIONS(640), + [sym_char_literal] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(642), + [sym_super] = ACTIONS(642), + [sym_crate] = ACTIONS(642), + [sym_metavariable] = ACTIONS(640), + [sym_raw_string_literal] = ACTIONS(640), + [sym_float_literal] = ACTIONS(640), + [sym_block_comment] = ACTIONS(3), + }, + [141] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1069), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [139] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [142] = { + [ts_builtin_sym_end] = ACTIONS(644), + [sym_identifier] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(644), + [anon_sym_macro_rules_BANG] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_async] = ACTIONS(646), + [anon_sym_break] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_enum] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(646), + [anon_sym_for] = ACTIONS(646), + [anon_sym_if] = ACTIONS(646), + [anon_sym_impl] = ACTIONS(646), + [anon_sym_let] = ACTIONS(646), + [anon_sym_loop] = ACTIONS(646), + [anon_sym_match] = ACTIONS(646), + [anon_sym_mod] = ACTIONS(646), + [anon_sym_pub] = ACTIONS(646), + [anon_sym_return] = ACTIONS(646), + [anon_sym_static] = ACTIONS(646), + [anon_sym_struct] = ACTIONS(646), + [anon_sym_trait] = ACTIONS(646), + [anon_sym_type] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_use] = ACTIONS(646), + [anon_sym_while] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_yield] = ACTIONS(646), + [anon_sym_move] = ACTIONS(646), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), + [sym_block_comment] = ACTIONS(3), + }, + [143] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [144] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30491,57 +31268,58 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [145] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30573,12 +31351,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30596,52 +31374,477 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [146] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [147] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [148] = { + [ts_builtin_sym_end] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_macro_rules_BANG] = ACTIONS(648), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_async] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_impl] = ACTIONS(650), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(650), + [anon_sym_mod] = ACTIONS(650), + [anon_sym_pub] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_static] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_trait] = ACTIONS(650), + [anon_sym_type] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_unsafe] = ACTIONS(650), + [anon_sym_use] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_yield] = ACTIONS(650), + [anon_sym_move] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), + [sym_block_comment] = ACTIONS(3), + }, + [149] = { + [ts_builtin_sym_end] = ACTIONS(652), + [sym_identifier] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_macro_rules_BANG] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_async] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_fn] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_impl] = ACTIONS(654), + [anon_sym_let] = ACTIONS(654), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(654), + [anon_sym_mod] = ACTIONS(654), + [anon_sym_pub] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_static] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_trait] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_use] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_STAR_EQ] = ACTIONS(652), + [anon_sym_SLASH_EQ] = ACTIONS(652), + [anon_sym_PERCENT_EQ] = ACTIONS(652), + [anon_sym_AMP_EQ] = ACTIONS(652), + [anon_sym_PIPE_EQ] = ACTIONS(652), + [anon_sym_CARET_EQ] = ACTIONS(652), + [anon_sym_LT_LT_EQ] = ACTIONS(652), + [anon_sym_GT_GT_EQ] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(654), + [anon_sym_move] = ACTIONS(654), + [anon_sym_DOT] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_metavariable] = ACTIONS(652), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), + [sym_block_comment] = ACTIONS(3), + }, + [150] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30701,52 +31904,53 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1183), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [151] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30806,55 +32010,56 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(224), - [sym_if_let_expression] = STATE(224), - [sym_match_expression] = STATE(224), - [sym_while_expression] = STATE(224), - [sym_while_let_expression] = STATE(224), - [sym_loop_expression] = STATE(224), - [sym_for_expression] = STATE(224), - [sym_const_block] = STATE(224), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(224), - [sym_async_block] = STATE(224), - [sym_block] = STATE(224), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [152] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(658), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30875,19 +32080,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(660), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(662), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(664), - [anon_sym_if] = ACTIONS(666), - [anon_sym_loop] = ACTIONS(668), - [anon_sym_match] = ACTIONS(670), + [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(672), - [anon_sym_while] = ACTIONS(674), + [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), @@ -30911,52 +32116,53 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [153] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31016,370 +32222,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), + [154] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [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), }, - [146] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), + [155] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [147] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [156] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [157] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(237), + [sym_if_let_expression] = STATE(237), + [sym_match_expression] = STATE(237), + [sym_while_expression] = STATE(237), + [sym_while_let_expression] = STATE(237), + [sym_loop_expression] = STATE(237), + [sym_for_expression] = STATE(237), + [sym_const_block] = STATE(237), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2516), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(237), + [sym_async_block] = STATE(237), + [sym_block] = STATE(237), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(610), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31400,19 +32610,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(612), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(614), [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(616), + [anon_sym_if] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(620), + [anon_sym_match] = ACTIONS(622), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(624), + [anon_sym_while] = ACTIONS(626), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31436,57 +32646,58 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [158] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31518,12 +32729,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31541,262 +32752,371 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1179), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(232), - [sym_if_let_expression] = STATE(232), - [sym_match_expression] = STATE(232), - [sym_while_expression] = STATE(232), - [sym_while_let_expression] = STATE(232), - [sym_loop_expression] = STATE(232), - [sym_for_expression] = STATE(232), - [sym_const_block] = STATE(232), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(232), - [sym_async_block] = STATE(232), - [sym_block] = STATE(232), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [159] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(658), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(660), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(662), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(664), - [anon_sym_if] = ACTIONS(666), - [anon_sym_loop] = ACTIONS(668), - [anon_sym_match] = ACTIONS(670), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_while] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [151] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1196), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [160] = { + [ts_builtin_sym_end] = ACTIONS(656), + [sym_identifier] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_macro_rules_BANG] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_u8] = ACTIONS(658), + [anon_sym_i8] = ACTIONS(658), + [anon_sym_u16] = ACTIONS(658), + [anon_sym_i16] = ACTIONS(658), + [anon_sym_u32] = ACTIONS(658), + [anon_sym_i32] = ACTIONS(658), + [anon_sym_u64] = ACTIONS(658), + [anon_sym_i64] = ACTIONS(658), + [anon_sym_u128] = ACTIONS(658), + [anon_sym_i128] = ACTIONS(658), + [anon_sym_isize] = ACTIONS(658), + [anon_sym_usize] = ACTIONS(658), + [anon_sym_f32] = ACTIONS(658), + [anon_sym_f64] = ACTIONS(658), + [anon_sym_bool] = ACTIONS(658), + [anon_sym_str] = ACTIONS(658), + [anon_sym_char] = ACTIONS(658), + [anon_sym_SQUOTE] = ACTIONS(658), + [anon_sym_as] = ACTIONS(658), + [anon_sym_async] = ACTIONS(658), + [anon_sym_break] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_continue] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_enum] = ACTIONS(658), + [anon_sym_fn] = ACTIONS(658), + [anon_sym_for] = ACTIONS(658), + [anon_sym_if] = ACTIONS(658), + [anon_sym_impl] = ACTIONS(658), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_match] = ACTIONS(658), + [anon_sym_mod] = ACTIONS(658), + [anon_sym_pub] = ACTIONS(658), + [anon_sym_return] = ACTIONS(658), + [anon_sym_static] = ACTIONS(658), + [anon_sym_struct] = ACTIONS(658), + [anon_sym_trait] = ACTIONS(658), + [anon_sym_type] = ACTIONS(658), + [anon_sym_union] = ACTIONS(658), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_use] = ACTIONS(658), + [anon_sym_while] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_extern] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_yield] = ACTIONS(658), + [anon_sym_move] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(658), + [sym_integer_literal] = ACTIONS(656), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(656), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(658), + [sym_super] = ACTIONS(658), + [sym_crate] = ACTIONS(658), + [sym_metavariable] = ACTIONS(656), + [sym_raw_string_literal] = ACTIONS(656), + [sym_float_literal] = ACTIONS(656), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [152] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [162] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1069), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31837,7 +33157,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(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31856,157 +33176,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [163] = { + [ts_builtin_sym_end] = ACTIONS(660), + [sym_identifier] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_macro_rules_BANG] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_async] = ACTIONS(662), + [anon_sym_break] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_enum] = ACTIONS(662), + [anon_sym_fn] = ACTIONS(662), + [anon_sym_for] = ACTIONS(662), + [anon_sym_if] = ACTIONS(662), + [anon_sym_impl] = ACTIONS(662), + [anon_sym_let] = ACTIONS(662), + [anon_sym_loop] = ACTIONS(662), + [anon_sym_match] = ACTIONS(662), + [anon_sym_mod] = ACTIONS(662), + [anon_sym_pub] = ACTIONS(662), + [anon_sym_return] = ACTIONS(662), + [anon_sym_static] = ACTIONS(662), + [anon_sym_struct] = ACTIONS(662), + [anon_sym_trait] = ACTIONS(662), + [anon_sym_type] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_unsafe] = ACTIONS(662), + [anon_sym_use] = ACTIONS(662), + [anon_sym_while] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_extern] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(662), + [anon_sym_move] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [154] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [165] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32066,162 +33494,270 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [166] = { + [ts_builtin_sym_end] = ACTIONS(664), + [sym_identifier] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_macro_rules_BANG] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(666), + [anon_sym_as] = ACTIONS(666), + [anon_sym_async] = ACTIONS(666), + [anon_sym_break] = ACTIONS(666), + [anon_sym_const] = ACTIONS(666), + [anon_sym_continue] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_enum] = ACTIONS(666), + [anon_sym_fn] = ACTIONS(666), + [anon_sym_for] = ACTIONS(666), + [anon_sym_if] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(666), + [anon_sym_let] = ACTIONS(666), + [anon_sym_loop] = ACTIONS(666), + [anon_sym_match] = ACTIONS(666), + [anon_sym_mod] = ACTIONS(666), + [anon_sym_pub] = ACTIONS(666), + [anon_sym_return] = ACTIONS(666), + [anon_sym_static] = ACTIONS(666), + [anon_sym_struct] = ACTIONS(666), + [anon_sym_trait] = ACTIONS(666), + [anon_sym_type] = ACTIONS(666), + [anon_sym_union] = ACTIONS(666), + [anon_sym_unsafe] = ACTIONS(666), + [anon_sym_use] = ACTIONS(666), + [anon_sym_while] = ACTIONS(666), + [anon_sym_POUND] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_extern] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(666), + [anon_sym_COLON_COLON] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [anon_sym_DOT_DOT] = ACTIONS(666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(664), + [anon_sym_PIPE_PIPE] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(664), + [anon_sym_DASH_EQ] = ACTIONS(664), + [anon_sym_STAR_EQ] = ACTIONS(664), + [anon_sym_SLASH_EQ] = ACTIONS(664), + [anon_sym_PERCENT_EQ] = ACTIONS(664), + [anon_sym_AMP_EQ] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(664), + [anon_sym_LT_LT_EQ] = ACTIONS(664), + [anon_sym_GT_GT_EQ] = ACTIONS(664), + [anon_sym_yield] = ACTIONS(666), + [anon_sym_move] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(666), + [sym_integer_literal] = ACTIONS(664), + [aux_sym_string_literal_token1] = ACTIONS(664), + [sym_char_literal] = ACTIONS(664), + [anon_sym_true] = ACTIONS(666), + [anon_sym_false] = ACTIONS(666), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(666), + [sym_super] = ACTIONS(666), + [sym_crate] = ACTIONS(666), + [sym_metavariable] = ACTIONS(664), + [sym_raw_string_literal] = ACTIONS(664), + [sym_float_literal] = ACTIONS(664), + [sym_block_comment] = ACTIONS(3), + }, + [167] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1207), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [156] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1184), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [168] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32253,12 +33789,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32276,57 +33812,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [169] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32358,12 +33895,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32381,265 +33918,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1191), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(224), - [sym_if_let_expression] = STATE(224), - [sym_match_expression] = STATE(224), - [sym_while_expression] = STATE(224), - [sym_while_let_expression] = STATE(224), - [sym_loop_expression] = STATE(224), - [sym_for_expression] = STATE(224), - [sym_const_block] = STATE(224), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(224), - [sym_async_block] = STATE(224), - [sym_block] = STATE(224), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [170] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(658), - [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(660), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(662), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(664), - [anon_sym_if] = ACTIONS(666), - [anon_sym_loop] = ACTIONS(668), - [anon_sym_match] = ACTIONS(670), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_while] = ACTIONS(674), - [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), - }, - [159] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(232), - [sym_if_let_expression] = STATE(232), - [sym_match_expression] = STATE(232), - [sym_while_expression] = STATE(232), - [sym_while_let_expression] = STATE(232), - [sym_loop_expression] = STATE(232), - [sym_for_expression] = STATE(232), - [sym_const_block] = STATE(232), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(232), - [sym_async_block] = STATE(232), - [sym_block] = STATE(232), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(658), - [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(660), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(662), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(664), - [anon_sym_if] = ACTIONS(666), - [anon_sym_loop] = ACTIONS(668), - [anon_sym_match] = ACTIONS(670), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_while] = ACTIONS(674), - [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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32696,57 +34024,58 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [171] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32778,12 +34107,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32801,160 +34130,268 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [172] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [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), }, - [163] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [173] = { + [ts_builtin_sym_end] = ACTIONS(668), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_macro_rules_BANG] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(670), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_extern] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_COLON_COLON] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(668), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(670), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(670), + [anon_sym_move] = ACTIONS(670), + [anon_sym_DOT] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(668), + [aux_sym_string_literal_token1] = ACTIONS(668), + [sym_char_literal] = ACTIONS(668), + [anon_sym_true] = ACTIONS(670), + [anon_sym_false] = ACTIONS(670), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(668), + [sym_raw_string_literal] = ACTIONS(668), + [sym_float_literal] = ACTIONS(668), + [sym_block_comment] = ACTIONS(3), + }, + [174] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(237), + [sym_if_let_expression] = STATE(237), + [sym_match_expression] = STATE(237), + [sym_while_expression] = STATE(237), + [sym_while_let_expression] = STATE(237), + [sym_loop_expression] = STATE(237), + [sym_for_expression] = STATE(237), + [sym_const_block] = STATE(237), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2516), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(237), + [sym_async_block] = STATE(237), + [sym_block] = STATE(237), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(610), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32975,19 +34412,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(612), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(614), [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(616), + [anon_sym_if] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(620), + [anon_sym_match] = ACTIONS(622), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(624), + [anon_sym_while] = ACTIONS(626), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -33011,157 +34448,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), + [175] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [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(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(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(504), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [176] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33221,162 +34660,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1185), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [177] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1202), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33408,12 +34743,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33431,157 +34766,159 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [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), + [178] = { + [ts_builtin_sym_end] = ACTIONS(672), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_macro_rules_BANG] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_async] = ACTIONS(674), + [anon_sym_break] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_let] = ACTIONS(674), + [anon_sym_loop] = ACTIONS(674), + [anon_sym_match] = ACTIONS(674), + [anon_sym_mod] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_static] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_trait] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_unsafe] = ACTIONS(674), + [anon_sym_use] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT] = ACTIONS(674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_CARET] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_yield] = ACTIONS(674), + [anon_sym_move] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(672), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_char_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(672), + [sym_raw_string_literal] = ACTIONS(672), + [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1182), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [179] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1127), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33622,7 +34959,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(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33641,57 +34978,58 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [180] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1952), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(1178), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(66), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33723,12 +35061,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(524), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33746,52 +35084,53 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), + [181] = { + [sym_bracketed_type] = STATE(2453), + [sym_generic_function] = STATE(772), + [sym_generic_type_with_turbofish] = STATE(1895), + [sym__expression_except_range] = STATE(772), + [sym__expression] = STATE(1192), + [sym_macro_invocation] = STATE(772), + [sym_scoped_identifier] = STATE(799), + [sym_scoped_type_identifier_in_expression_position] = STATE(2223), + [sym_range_expression] = STATE(1053), + [sym_unary_expression] = STATE(772), + [sym_try_expression] = STATE(772), + [sym_reference_expression] = STATE(772), + [sym_binary_expression] = STATE(772), + [sym_assignment_expression] = STATE(772), + [sym_compound_assignment_expr] = STATE(772), + [sym_type_cast_expression] = STATE(772), + [sym_return_expression] = STATE(772), + [sym_yield_expression] = STATE(772), + [sym_call_expression] = STATE(772), + [sym_array_expression] = STATE(772), + [sym_parenthesized_expression] = STATE(772), + [sym_tuple_expression] = STATE(772), + [sym_unit_expression] = STATE(772), + [sym_struct_expression] = STATE(772), + [sym_if_expression] = STATE(772), + [sym_if_let_expression] = STATE(772), + [sym_match_expression] = STATE(772), + [sym_while_expression] = STATE(772), + [sym_while_let_expression] = STATE(772), + [sym_loop_expression] = STATE(772), + [sym_for_expression] = STATE(772), + [sym_const_block] = STATE(772), + [sym_closure_expression] = STATE(772), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2484), + [sym_break_expression] = STATE(772), + [sym_continue_expression] = STATE(772), + [sym_index_expression] = STATE(772), + [sym_await_expression] = STATE(772), + [sym_field_expression] = STATE(773), + [sym_unsafe_block] = STATE(772), + [sym_async_block] = STATE(772), + [sym_block] = STATE(772), + [sym__literal] = STATE(772), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33851,653 +35190,234 @@ 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(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [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), + [182] = { + [ts_builtin_sym_end] = ACTIONS(676), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_macro_rules_BANG] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT] = ACTIONS(678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_move] = ACTIONS(678), + [anon_sym_DOT] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(676), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(676), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym_metavariable] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(676), + [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [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), - }, - [174] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1948), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1198), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(524), - [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(524), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [175] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [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), - }, - [177] = { - [sym_bracketed_type] = STATE(2432), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1896), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(982), - [sym_scoped_type_identifier_in_expression_position] = STATE(2236), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_const_block] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2481), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(1006), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [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), + [183] = { + [sym_identifier] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_macro_rules_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_impl] = ACTIONS(564), + [anon_sym_let] = ACTIONS(564), + [anon_sym_loop] = ACTIONS(564), + [anon_sym_match] = ACTIONS(564), + [anon_sym_mod] = ACTIONS(564), + [anon_sym_pub] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_trait] = ACTIONS(564), + [anon_sym_type] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [anon_sym_unsafe] = ACTIONS(564), + [anon_sym_use] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_move] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(1988), - [sym_variadic_parameter] = STATE(1988), - [sym_parameter] = STATE(1988), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(1989), + [184] = { + [sym_attribute_item] = STATE(196), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(1998), + [sym_variadic_parameter] = STATE(1998), + [sym_parameter] = STATE(1998), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1832), + [sym_bracketed_type] = STATE(2475), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2473), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2476), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -34505,101 +35425,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1721), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(708), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1724), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(712), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(736), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [179] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(1988), - [sym_variadic_parameter] = STATE(1988), - [sym_parameter] = STATE(1988), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1846), + [185] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2058), + [sym_variadic_parameter] = STATE(2058), + [sym_parameter] = STATE(2058), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1822), [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(1989), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), + [sym_generic_type] = STATE(1370), [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -34608,134 +35528,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1721), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(744), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(736), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(1988), - [sym_variadic_parameter] = STATE(1988), - [sym_parameter] = STATE(1988), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -34753,59 +35570,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(762), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [181] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(1988), - [sym_variadic_parameter] = STATE(1988), - [sym_parameter] = STATE(1988), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1846), + [186] = { + [sym_attribute_item] = STATE(196), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(1998), + [sym_variadic_parameter] = STATE(1998), + [sym_parameter] = STATE(1998), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1832), [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(1989), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), + [sym_generic_type] = STATE(1370), [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -34814,134 +35631,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1721), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(718), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(736), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [182] = { - [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2055), - [sym_variadic_parameter] = STATE(2055), - [sym_parameter] = STATE(2055), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1758), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -34959,60 +35673,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(778), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(774), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(780), + [anon_sym__] = ACTIONS(776), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2237), - [sym_variadic_parameter] = STATE(2237), - [sym_parameter] = STATE(2237), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1899), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [187] = { + [sym_attribute_item] = STATE(196), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(1998), + [sym_variadic_parameter] = STATE(1998), + [sym_parameter] = STATE(1998), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1832), + [sym_bracketed_type] = STATE(2475), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2476), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1724), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [188] = { + [sym_attribute_item] = STATE(196), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(1998), + [sym_variadic_parameter] = STATE(1998), + [sym_parameter] = STATE(1998), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1832), + [sym_bracketed_type] = STATE(2475), + [sym_lifetime] = STATE(2002), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2476), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1724), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [189] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2227), + [sym_variadic_parameter] = STATE(2227), + [sym_parameter] = STATE(2227), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35020,31 +35940,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35062,59 +35982,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(784), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [184] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2237), - [sym_variadic_parameter] = STATE(2237), - [sym_parameter] = STATE(2237), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1899), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [190] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2227), + [sym_variadic_parameter] = STATE(2227), + [sym_parameter] = STATE(2227), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35122,31 +36042,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35164,59 +36084,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(784), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [185] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2237), - [sym_variadic_parameter] = STATE(2237), - [sym_parameter] = STATE(2237), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1899), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [191] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2227), + [sym_variadic_parameter] = STATE(2227), + [sym_parameter] = STATE(2227), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35224,31 +36144,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35266,59 +36186,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(784), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [186] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2237), - [sym_variadic_parameter] = STATE(2237), - [sym_parameter] = STATE(2237), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1899), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [192] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2227), + [sym_variadic_parameter] = STATE(2227), + [sym_parameter] = STATE(2227), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35326,31 +36246,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35368,59 +36288,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(784), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2237), - [sym_variadic_parameter] = STATE(2237), - [sym_parameter] = STATE(2237), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1899), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [193] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2227), + [sym_variadic_parameter] = STATE(2227), + [sym_parameter] = STATE(2227), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35428,31 +36348,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35470,59 +36390,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(784), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [188] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2237), - [sym_variadic_parameter] = STATE(2237), - [sym_parameter] = STATE(2237), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1899), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [194] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2227), + [sym_variadic_parameter] = STATE(2227), + [sym_parameter] = STATE(2227), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35530,31 +36450,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35572,59 +36492,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(784), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [189] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2237), - [sym_variadic_parameter] = STATE(2237), - [sym_parameter] = STATE(2237), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1899), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [195] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2227), + [sym_variadic_parameter] = STATE(2227), + [sym_parameter] = STATE(2227), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35632,30 +36552,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35673,58 +36593,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(784), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [190] = { - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(1981), - [sym_variadic_parameter] = STATE(1981), - [sym_parameter] = STATE(1981), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1787), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [196] = { + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(1936), + [sym_variadic_parameter] = STATE(1936), + [sym_parameter] = STATE(1936), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1844), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35732,30 +36652,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35773,57 +36693,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(796), + [anon_sym__] = ACTIONS(800), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [191] = { - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2108), - [sym_variadic_parameter] = STATE(2108), - [sym_parameter] = STATE(2108), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1794), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [197] = { + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2293), + [sym_variadic_parameter] = STATE(2293), + [sym_parameter] = STATE(2293), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35831,30 +36751,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35872,57 +36792,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(798), + [anon_sym__] = ACTIONS(802), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [192] = { - [sym_function_modifiers] = STATE(2315), - [sym_self_parameter] = STATE(2259), - [sym_variadic_parameter] = STATE(2259), - [sym_parameter] = STATE(2259), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2005), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(1989), + [198] = { + [sym_function_modifiers] = STATE(2404), + [sym_self_parameter] = STATE(2117), + [sym_variadic_parameter] = STATE(2117), + [sym_parameter] = STATE(2117), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1807), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(2002), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -35930,30 +36850,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2267), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2265), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -35971,54 +36891,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(800), + [anon_sym__] = ACTIONS(804), [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [193] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1882), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2314), + [199] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2478), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2476), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2479), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -36026,96 +36946,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1830), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_RBRACK] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(808), - [anon_sym_i8] = ACTIONS(808), - [anon_sym_u16] = ACTIONS(808), - [anon_sym_i16] = ACTIONS(808), - [anon_sym_u32] = ACTIONS(808), - [anon_sym_i32] = ACTIONS(808), - [anon_sym_u64] = ACTIONS(808), - [anon_sym_i64] = ACTIONS(808), - [anon_sym_u128] = ACTIONS(808), - [anon_sym_i128] = ACTIONS(808), - [anon_sym_isize] = ACTIONS(808), - [anon_sym_usize] = ACTIONS(808), - [anon_sym_f32] = ACTIONS(808), - [anon_sym_f64] = ACTIONS(808), - [anon_sym_bool] = ACTIONS(808), - [anon_sym_str] = ACTIONS(808), - [anon_sym_char] = ACTIONS(808), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(810), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(812), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1792), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(810), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(816), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(826), - [sym_super] = ACTIONS(826), - [sym_crate] = ACTIONS(826), - [sym_metavariable] = ACTIONS(828), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(832), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [194] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1816), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2314), + [200] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1802), + [sym_bracketed_type] = STATE(2475), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2473), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2476), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -36123,96 +37043,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1832), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(836), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(738), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [195] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1816), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2314), + [201] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1802), + [sym_bracketed_type] = STATE(2475), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2473), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2476), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -36220,96 +37140,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1832), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(836), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(738), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1816), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2314), + [202] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1802), + [sym_bracketed_type] = STATE(2475), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2473), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2476), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -36317,192 +37237,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1832), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(836), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(738), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [sym_identifier] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_EQ_GT] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_RBRACK] = ACTIONS(846), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_QMARK] = ACTIONS(846), - [anon_sym_u8] = ACTIONS(844), - [anon_sym_i8] = ACTIONS(844), - [anon_sym_u16] = ACTIONS(844), - [anon_sym_i16] = ACTIONS(844), - [anon_sym_u32] = ACTIONS(844), - [anon_sym_i32] = ACTIONS(844), - [anon_sym_u64] = ACTIONS(844), - [anon_sym_i64] = ACTIONS(844), - [anon_sym_u128] = ACTIONS(844), - [anon_sym_i128] = ACTIONS(844), - [anon_sym_isize] = ACTIONS(844), - [anon_sym_usize] = ACTIONS(844), - [anon_sym_f32] = ACTIONS(844), - [anon_sym_f64] = ACTIONS(844), - [anon_sym_bool] = ACTIONS(844), - [anon_sym_str] = ACTIONS(844), - [anon_sym_char] = ACTIONS(844), - [anon_sym_SQUOTE] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_async] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_default] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_union] = ACTIONS(844), - [anon_sym_unsafe] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(844), - [anon_sym_EQ] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_COLON_COLON] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(844), - [anon_sym_DOT_DOT_EQ] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(846), - [anon_sym_PIPE_PIPE] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_PLUS_EQ] = ACTIONS(846), - [anon_sym_DASH_EQ] = ACTIONS(846), - [anon_sym_STAR_EQ] = ACTIONS(846), - [anon_sym_SLASH_EQ] = ACTIONS(846), - [anon_sym_PERCENT_EQ] = ACTIONS(846), - [anon_sym_AMP_EQ] = ACTIONS(846), - [anon_sym_PIPE_EQ] = ACTIONS(846), - [anon_sym_CARET_EQ] = ACTIONS(846), - [anon_sym_LT_LT_EQ] = ACTIONS(846), - [anon_sym_GT_GT_EQ] = ACTIONS(846), - [anon_sym_yield] = ACTIONS(844), - [anon_sym_move] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [sym_integer_literal] = ACTIONS(846), - [aux_sym_string_literal_token1] = ACTIONS(846), - [sym_char_literal] = ACTIONS(846), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(844), - [sym_super] = ACTIONS(844), - [sym_crate] = ACTIONS(844), - [sym_metavariable] = ACTIONS(846), - [sym_raw_string_literal] = ACTIONS(846), - [sym_float_literal] = ACTIONS(846), + [203] = { + [sym_identifier] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_EQ_GT] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_RBRACK] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_u8] = ACTIONS(848), + [anon_sym_i8] = ACTIONS(848), + [anon_sym_u16] = ACTIONS(848), + [anon_sym_i16] = ACTIONS(848), + [anon_sym_u32] = ACTIONS(848), + [anon_sym_i32] = ACTIONS(848), + [anon_sym_u64] = ACTIONS(848), + [anon_sym_i64] = ACTIONS(848), + [anon_sym_u128] = ACTIONS(848), + [anon_sym_i128] = ACTIONS(848), + [anon_sym_isize] = ACTIONS(848), + [anon_sym_usize] = ACTIONS(848), + [anon_sym_f32] = ACTIONS(848), + [anon_sym_f64] = ACTIONS(848), + [anon_sym_bool] = ACTIONS(848), + [anon_sym_str] = ACTIONS(848), + [anon_sym_char] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_as] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_const] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_loop] = ACTIONS(848), + [anon_sym_match] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_union] = ACTIONS(848), + [anon_sym_unsafe] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_COLON_COLON] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(848), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_CARET] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_move] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(848), + [sym_integer_literal] = ACTIONS(850), + [aux_sym_string_literal_token1] = ACTIONS(850), + [sym_char_literal] = ACTIONS(850), + [anon_sym_true] = ACTIONS(848), + [anon_sym_false] = ACTIONS(848), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_crate] = ACTIONS(848), + [sym_metavariable] = ACTIONS(850), + [sym_raw_string_literal] = ACTIONS(850), + [sym_float_literal] = ACTIONS(850), [sym_block_comment] = ACTIONS(3), }, - [198] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2314), + [204] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1391), + [sym_bracketed_type] = STATE(2478), + [sym_lifetime] = STATE(583), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2476), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2479), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -36510,94 +37430,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1445), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(808), - [anon_sym_i8] = ACTIONS(808), - [anon_sym_u16] = ACTIONS(808), - [anon_sym_i16] = ACTIONS(808), - [anon_sym_u32] = ACTIONS(808), - [anon_sym_i32] = ACTIONS(808), - [anon_sym_u64] = ACTIONS(808), - [anon_sym_i64] = ACTIONS(808), - [anon_sym_u128] = ACTIONS(808), - [anon_sym_i128] = ACTIONS(808), - [anon_sym_isize] = ACTIONS(808), - [anon_sym_usize] = ACTIONS(808), - [anon_sym_f32] = ACTIONS(808), - [anon_sym_f64] = ACTIONS(808), - [anon_sym_bool] = ACTIONS(808), - [anon_sym_str] = ACTIONS(808), - [anon_sym_char] = ACTIONS(808), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(810), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(812), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1467), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(816), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(826), - [sym_super] = ACTIONS(826), - [sym_crate] = ACTIONS(826), - [sym_metavariable] = ACTIONS(828), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(832), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [199] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(577), + [205] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2478), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2473), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2479), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -36605,93 +37525,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1457), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(848), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1463), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(852), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(832), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [200] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1382), + [206] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1383), [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(607), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), + [sym_generic_type] = STATE(1370), [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -36700,125 +37620,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1457), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(848), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(738), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [201] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(577), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1457), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1463), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -36836,53 +37661,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(848), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(856), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(858), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(818), + [anon_sym__] = ACTIONS(822), [anon_sym_AMP] = ACTIONS(860), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(862), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(864), + [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [202] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(2314), + [207] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1391), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(591), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -36890,30 +37715,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1445), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1467), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -36931,53 +37756,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(856), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(858), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(818), + [anon_sym__] = ACTIONS(822), [anon_sym_AMP] = ACTIONS(860), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(862), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(866), + [sym_self] = ACTIONS(864), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(607), + [208] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2475), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2476), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -36985,94 +37810,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1457), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(848), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(856), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(858), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1463), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(836), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(868), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [204] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2314), + [209] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2475), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2473), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2476), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -37080,93 +37905,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1445), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1463), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(836), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(738), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [205] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1400), + [210] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1383), [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2314), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), + [sym_generic_type] = STATE(1370), [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -37175,94 +38000,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1507), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1445), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(686), - [anon_sym_i8] = ACTIONS(686), - [anon_sym_u16] = ACTIONS(686), - [anon_sym_i16] = ACTIONS(686), - [anon_sym_u32] = ACTIONS(686), - [anon_sym_i32] = ACTIONS(686), - [anon_sym_u64] = ACTIONS(686), - [anon_sym_i64] = ACTIONS(686), - [anon_sym_u128] = ACTIONS(686), - [anon_sym_i128] = ACTIONS(686), - [anon_sym_isize] = ACTIONS(686), - [anon_sym_usize] = ACTIONS(686), - [anon_sym_f32] = ACTIONS(686), - [anon_sym_f64] = ACTIONS(686), - [anon_sym_bool] = ACTIONS(686), - [anon_sym_str] = ACTIONS(686), - [anon_sym_char] = ACTIONS(686), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1463), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(858), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(714), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(870), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(860), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [206] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2469), - [sym_lifetime] = STATE(2314), + [211] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1391), + [sym_bracketed_type] = STATE(2472), + [sym_lifetime] = STATE(583), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2470), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2473), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -37270,30 +38095,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1445), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(1579), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1467), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), [anon_sym_i8] = ACTIONS(752), [anon_sym_u16] = ACTIONS(752), @@ -37311,52 +38136,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(856), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(858), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(818), + [anon_sym__] = ACTIONS(822), [anon_sym_AMP] = ACTIONS(860), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(870), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [207] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1382), + [212] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1391), [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(607), + [sym_lifetime] = STATE(583), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), + [sym_generic_type] = STATE(1370), [sym_generic_type_with_turbofish] = STATE(2476), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), @@ -37365,815 +38190,670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1482), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1457), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(808), - [anon_sym_i8] = ACTIONS(808), - [anon_sym_u16] = ACTIONS(808), - [anon_sym_i16] = ACTIONS(808), - [anon_sym_u32] = ACTIONS(808), - [anon_sym_i32] = ACTIONS(808), - [anon_sym_u64] = ACTIONS(808), - [anon_sym_i64] = ACTIONS(808), - [anon_sym_u128] = ACTIONS(808), - [anon_sym_i128] = ACTIONS(808), - [anon_sym_isize] = ACTIONS(808), - [anon_sym_usize] = ACTIONS(808), - [anon_sym_f32] = ACTIONS(808), - [anon_sym_f64] = ACTIONS(808), - [anon_sym_bool] = ACTIONS(808), - [anon_sym_str] = ACTIONS(808), - [anon_sym_char] = ACTIONS(808), - [anon_sym_SQUOTE] = ACTIONS(848), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(692), - [anon_sym_default] = ACTIONS(810), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(812), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_ref] = ACTIONS(712), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1467), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(836), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(816), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(872), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(826), - [sym_super] = ACTIONS(826), - [sym_crate] = ACTIONS(826), - [sym_metavariable] = ACTIONS(828), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [208] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1471), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_default] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_loop] = ACTIONS(874), - [anon_sym_match] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_union] = ACTIONS(874), - [anon_sym_unsafe] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_DASH_GT] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_COLON_COLON] = ACTIONS(876), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(876), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_move] = ACTIONS(874), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(876), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(874), - [anon_sym_false] = ACTIONS(874), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_crate] = ACTIONS(874), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(876), - [sym_float_literal] = ACTIONS(876), - [sym_block_comment] = ACTIONS(3), - }, - [209] = { - [sym_else_clause] = STATE(214), - [sym_identifier] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_QMARK] = ACTIONS(390), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_isize] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_f32] = ACTIONS(392), - [anon_sym_f64] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_str] = ACTIONS(392), - [anon_sym_char] = ACTIONS(392), - [anon_sym_as] = ACTIONS(392), - [anon_sym_const] = ACTIONS(392), - [anon_sym_default] = ACTIONS(392), - [anon_sym_union] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(390), - [anon_sym_EQ] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(390), - [anon_sym_ref] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym__] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(390), - [sym_mutable_specifier] = ACTIONS(392), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_AMP_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_CARET] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(390), - [anon_sym_BANG_EQ] = ACTIONS(390), - [anon_sym_LT_EQ] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(392), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_PLUS_EQ] = ACTIONS(390), - [anon_sym_DASH_EQ] = ACTIONS(390), - [anon_sym_STAR_EQ] = ACTIONS(390), - [anon_sym_SLASH_EQ] = ACTIONS(390), - [anon_sym_PERCENT_EQ] = ACTIONS(390), - [anon_sym_AMP_EQ] = ACTIONS(390), - [anon_sym_PIPE_EQ] = ACTIONS(390), - [anon_sym_CARET_EQ] = ACTIONS(390), - [anon_sym_LT_LT_EQ] = ACTIONS(390), - [anon_sym_GT_GT_EQ] = ACTIONS(390), - [anon_sym_else] = ACTIONS(878), - [anon_sym_DOT] = ACTIONS(392), - [sym_integer_literal] = ACTIONS(390), - [aux_sym_string_literal_token1] = ACTIONS(390), - [sym_char_literal] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(392), - [sym_super] = ACTIONS(392), - [sym_crate] = ACTIONS(392), - [sym_metavariable] = ACTIONS(390), - [sym_raw_string_literal] = ACTIONS(390), - [sym_float_literal] = ACTIONS(390), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { - [sym_else_clause] = STATE(236), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_QMARK] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(398), - [anon_sym_i8] = ACTIONS(398), - [anon_sym_u16] = ACTIONS(398), - [anon_sym_i16] = ACTIONS(398), - [anon_sym_u32] = ACTIONS(398), - [anon_sym_i32] = ACTIONS(398), - [anon_sym_u64] = ACTIONS(398), - [anon_sym_i64] = ACTIONS(398), - [anon_sym_u128] = ACTIONS(398), - [anon_sym_i128] = ACTIONS(398), - [anon_sym_isize] = ACTIONS(398), - [anon_sym_usize] = ACTIONS(398), - [anon_sym_f32] = ACTIONS(398), - [anon_sym_f64] = ACTIONS(398), - [anon_sym_bool] = ACTIONS(398), - [anon_sym_str] = ACTIONS(398), - [anon_sym_char] = ACTIONS(398), - [anon_sym_as] = ACTIONS(398), - [anon_sym_const] = ACTIONS(398), - [anon_sym_default] = ACTIONS(398), - [anon_sym_union] = ACTIONS(398), - [anon_sym_POUND] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(398), - [anon_sym_COMMA] = ACTIONS(396), - [anon_sym_ref] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_COLON_COLON] = ACTIONS(396), - [anon_sym__] = ACTIONS(398), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(396), - [sym_mutable_specifier] = ACTIONS(398), - [anon_sym_DOT_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PERCENT] = ACTIONS(398), - [anon_sym_PLUS_EQ] = ACTIONS(396), - [anon_sym_DASH_EQ] = ACTIONS(396), - [anon_sym_STAR_EQ] = ACTIONS(396), - [anon_sym_SLASH_EQ] = ACTIONS(396), - [anon_sym_PERCENT_EQ] = ACTIONS(396), - [anon_sym_AMP_EQ] = ACTIONS(396), - [anon_sym_PIPE_EQ] = ACTIONS(396), - [anon_sym_CARET_EQ] = ACTIONS(396), - [anon_sym_LT_LT_EQ] = ACTIONS(396), - [anon_sym_GT_GT_EQ] = ACTIONS(396), - [anon_sym_else] = ACTIONS(878), - [anon_sym_DOT] = ACTIONS(398), - [sym_integer_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(396), - [sym_char_literal] = ACTIONS(396), - [anon_sym_true] = ACTIONS(398), - [anon_sym_false] = ACTIONS(398), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(398), - [sym_super] = ACTIONS(398), - [sym_crate] = ACTIONS(398), - [sym_metavariable] = ACTIONS(396), - [sym_raw_string_literal] = ACTIONS(396), - [sym_float_literal] = ACTIONS(396), - [sym_block_comment] = ACTIONS(3), - }, - [211] = { - [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_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_else] = 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), - }, - [212] = { - [sym_identifier] = ACTIONS(514), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_u8] = ACTIONS(514), - [anon_sym_i8] = ACTIONS(514), - [anon_sym_u16] = ACTIONS(514), - [anon_sym_i16] = ACTIONS(514), - [anon_sym_u32] = ACTIONS(514), - [anon_sym_i32] = ACTIONS(514), - [anon_sym_u64] = ACTIONS(514), - [anon_sym_i64] = ACTIONS(514), - [anon_sym_u128] = ACTIONS(514), - [anon_sym_i128] = ACTIONS(514), - [anon_sym_isize] = ACTIONS(514), - [anon_sym_usize] = ACTIONS(514), - [anon_sym_f32] = ACTIONS(514), - [anon_sym_f64] = ACTIONS(514), - [anon_sym_bool] = ACTIONS(514), - [anon_sym_str] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_as] = ACTIONS(514), - [anon_sym_const] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_ref] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_GT] = ACTIONS(514), - [anon_sym_COLON_COLON] = ACTIONS(512), - [anon_sym__] = ACTIONS(514), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(512), - [sym_mutable_specifier] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DOT_DOT_EQ] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_AMP_AMP] = ACTIONS(512), - [anon_sym_PIPE_PIPE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(514), - [anon_sym_CARET] = ACTIONS(514), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(514), - [anon_sym_GT_GT] = ACTIONS(514), - [anon_sym_SLASH] = ACTIONS(514), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_DASH_EQ] = ACTIONS(512), - [anon_sym_STAR_EQ] = ACTIONS(512), - [anon_sym_SLASH_EQ] = ACTIONS(512), - [anon_sym_PERCENT_EQ] = ACTIONS(512), - [anon_sym_AMP_EQ] = ACTIONS(512), - [anon_sym_PIPE_EQ] = ACTIONS(512), - [anon_sym_CARET_EQ] = ACTIONS(512), - [anon_sym_LT_LT_EQ] = ACTIONS(512), - [anon_sym_GT_GT_EQ] = ACTIONS(512), - [anon_sym_else] = ACTIONS(514), - [anon_sym_DOT] = ACTIONS(514), - [sym_integer_literal] = ACTIONS(512), - [aux_sym_string_literal_token1] = ACTIONS(512), - [sym_char_literal] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(514), - [sym_super] = ACTIONS(514), - [sym_crate] = ACTIONS(514), - [sym_metavariable] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(512), - [sym_float_literal] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym_identifier] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(404), - [anon_sym_u8] = ACTIONS(406), - [anon_sym_i8] = ACTIONS(406), - [anon_sym_u16] = ACTIONS(406), - [anon_sym_i16] = ACTIONS(406), - [anon_sym_u32] = ACTIONS(406), - [anon_sym_i32] = ACTIONS(406), - [anon_sym_u64] = ACTIONS(406), - [anon_sym_i64] = ACTIONS(406), - [anon_sym_u128] = ACTIONS(406), - [anon_sym_i128] = ACTIONS(406), - [anon_sym_isize] = ACTIONS(406), - [anon_sym_usize] = ACTIONS(406), - [anon_sym_f32] = ACTIONS(406), - [anon_sym_f64] = ACTIONS(406), - [anon_sym_bool] = ACTIONS(406), - [anon_sym_str] = ACTIONS(406), - [anon_sym_char] = ACTIONS(406), - [anon_sym_as] = ACTIONS(406), - [anon_sym_const] = ACTIONS(406), - [anon_sym_default] = ACTIONS(406), - [anon_sym_union] = ACTIONS(406), - [anon_sym_POUND] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(404), - [anon_sym__] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(404), - [sym_mutable_specifier] = ACTIONS(406), - [anon_sym_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_AMP_AMP] = ACTIONS(404), - [anon_sym_PIPE_PIPE] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_EQ_EQ] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(404), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_PLUS_EQ] = ACTIONS(404), - [anon_sym_DASH_EQ] = ACTIONS(404), - [anon_sym_STAR_EQ] = ACTIONS(404), - [anon_sym_SLASH_EQ] = ACTIONS(404), - [anon_sym_PERCENT_EQ] = ACTIONS(404), - [anon_sym_AMP_EQ] = ACTIONS(404), - [anon_sym_PIPE_EQ] = ACTIONS(404), - [anon_sym_CARET_EQ] = ACTIONS(404), - [anon_sym_LT_LT_EQ] = ACTIONS(404), - [anon_sym_GT_GT_EQ] = ACTIONS(404), - [anon_sym_else] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(406), - [sym_integer_literal] = ACTIONS(404), - [aux_sym_string_literal_token1] = ACTIONS(404), - [sym_char_literal] = ACTIONS(404), - [anon_sym_true] = ACTIONS(406), - [anon_sym_false] = ACTIONS(406), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(406), - [sym_super] = ACTIONS(406), - [sym_crate] = ACTIONS(406), - [sym_metavariable] = ACTIONS(404), - [sym_raw_string_literal] = ACTIONS(404), - [sym_float_literal] = ACTIONS(404), - [sym_block_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_POUND] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_COMMA] = ACTIONS(572), - [anon_sym_ref] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_COLON_COLON] = ACTIONS(572), - [anon_sym__] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(572), - [sym_mutable_specifier] = ACTIONS(574), - [anon_sym_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT_EQ] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_CARET] = ACTIONS(574), - [anon_sym_EQ_EQ] = ACTIONS(572), - [anon_sym_BANG_EQ] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(572), - [anon_sym_GT_EQ] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(574), - [anon_sym_PLUS_EQ] = ACTIONS(572), - [anon_sym_DASH_EQ] = ACTIONS(572), - [anon_sym_STAR_EQ] = ACTIONS(572), - [anon_sym_SLASH_EQ] = ACTIONS(572), - [anon_sym_PERCENT_EQ] = ACTIONS(572), - [anon_sym_AMP_EQ] = ACTIONS(572), - [anon_sym_PIPE_EQ] = ACTIONS(572), - [anon_sym_CARET_EQ] = ACTIONS(572), - [anon_sym_LT_LT_EQ] = ACTIONS(572), - [anon_sym_GT_GT_EQ] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(572), - [aux_sym_string_literal_token1] = ACTIONS(572), - [sym_char_literal] = ACTIONS(572), - [anon_sym_true] = ACTIONS(574), - [anon_sym_false] = ACTIONS(574), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(572), - [sym_raw_string_literal] = ACTIONS(572), - [sym_float_literal] = ACTIONS(572), - [sym_block_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_u8] = ACTIONS(522), - [anon_sym_i8] = ACTIONS(522), - [anon_sym_u16] = ACTIONS(522), - [anon_sym_i16] = ACTIONS(522), - [anon_sym_u32] = ACTIONS(522), - [anon_sym_i32] = ACTIONS(522), - [anon_sym_u64] = ACTIONS(522), - [anon_sym_i64] = ACTIONS(522), - [anon_sym_u128] = ACTIONS(522), - [anon_sym_i128] = ACTIONS(522), - [anon_sym_isize] = ACTIONS(522), - [anon_sym_usize] = ACTIONS(522), - [anon_sym_f32] = ACTIONS(522), - [anon_sym_f64] = ACTIONS(522), - [anon_sym_bool] = ACTIONS(522), - [anon_sym_str] = ACTIONS(522), - [anon_sym_char] = ACTIONS(522), - [anon_sym_as] = ACTIONS(522), - [anon_sym_const] = ACTIONS(522), - [anon_sym_default] = ACTIONS(522), - [anon_sym_union] = ACTIONS(522), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_ref] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_COLON_COLON] = ACTIONS(520), - [anon_sym__] = ACTIONS(522), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(520), - [sym_mutable_specifier] = ACTIONS(522), - [anon_sym_DOT_DOT] = ACTIONS(522), - [anon_sym_DOT_DOT_EQ] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(520), - [anon_sym_PIPE_PIPE] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(522), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_EQ_EQ] = ACTIONS(520), - [anon_sym_BANG_EQ] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_PLUS_EQ] = ACTIONS(520), - [anon_sym_DASH_EQ] = ACTIONS(520), - [anon_sym_STAR_EQ] = ACTIONS(520), - [anon_sym_SLASH_EQ] = ACTIONS(520), - [anon_sym_PERCENT_EQ] = ACTIONS(520), - [anon_sym_AMP_EQ] = ACTIONS(520), - [anon_sym_PIPE_EQ] = ACTIONS(520), - [anon_sym_CARET_EQ] = ACTIONS(520), - [anon_sym_LT_LT_EQ] = ACTIONS(520), - [anon_sym_GT_GT_EQ] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(522), - [sym_integer_literal] = ACTIONS(520), - [aux_sym_string_literal_token1] = ACTIONS(520), - [sym_char_literal] = ACTIONS(520), - [anon_sym_true] = ACTIONS(522), - [anon_sym_false] = ACTIONS(522), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(522), - [sym_super] = ACTIONS(522), - [sym_crate] = ACTIONS(522), - [sym_metavariable] = ACTIONS(520), - [sym_raw_string_literal] = ACTIONS(520), - [sym_float_literal] = ACTIONS(520), - [sym_block_comment] = ACTIONS(3), - }, - [216] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1913), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1914), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1391), + [sym_bracketed_type] = STATE(2475), + [sym_lifetime] = STATE(591), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2476), [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2265), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), [sym_empty_type] = STATE(1392), [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [sym_block] = STATE(2265), - [sym__literal] = STATE(2265), - [sym_string_literal] = STATE(2164), - [sym_boolean_literal] = STATE(2164), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(1492), + [sym_scoped_type_identifier] = STATE(1485), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1467), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(836), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(894), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_integer_literal] = ACTIONS(900), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(900), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(900), - [sym_float_literal] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [214] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1462), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(878), + [anon_sym_async] = ACTIONS(878), + [anon_sym_break] = ACTIONS(878), + [anon_sym_const] = ACTIONS(878), + [anon_sym_continue] = ACTIONS(878), + [anon_sym_default] = ACTIONS(878), + [anon_sym_for] = ACTIONS(878), + [anon_sym_if] = ACTIONS(878), + [anon_sym_loop] = ACTIONS(878), + [anon_sym_match] = ACTIONS(878), + [anon_sym_return] = ACTIONS(878), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(878), + [anon_sym_while] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_DASH_GT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(880), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(880), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_yield] = ACTIONS(878), + [anon_sym_move] = ACTIONS(878), + [sym_integer_literal] = ACTIONS(880), + [aux_sym_string_literal_token1] = ACTIONS(880), + [sym_char_literal] = ACTIONS(880), + [anon_sym_true] = ACTIONS(878), + [anon_sym_false] = ACTIONS(878), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(878), + [sym_super] = ACTIONS(878), + [sym_crate] = ACTIONS(878), + [sym_metavariable] = ACTIONS(880), + [sym_raw_string_literal] = ACTIONS(880), + [sym_float_literal] = ACTIONS(880), + [sym_block_comment] = ACTIONS(3), + }, + [215] = { + [sym_else_clause] = STATE(232), + [sym_identifier] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u8] = ACTIONS(498), + [anon_sym_i8] = ACTIONS(498), + [anon_sym_u16] = ACTIONS(498), + [anon_sym_i16] = ACTIONS(498), + [anon_sym_u32] = ACTIONS(498), + [anon_sym_i32] = ACTIONS(498), + [anon_sym_u64] = ACTIONS(498), + [anon_sym_i64] = ACTIONS(498), + [anon_sym_u128] = ACTIONS(498), + [anon_sym_i128] = ACTIONS(498), + [anon_sym_isize] = ACTIONS(498), + [anon_sym_usize] = ACTIONS(498), + [anon_sym_f32] = ACTIONS(498), + [anon_sym_f64] = ACTIONS(498), + [anon_sym_bool] = ACTIONS(498), + [anon_sym_str] = ACTIONS(498), + [anon_sym_char] = ACTIONS(498), + [anon_sym_as] = ACTIONS(498), + [anon_sym_const] = ACTIONS(498), + [anon_sym_default] = ACTIONS(498), + [anon_sym_union] = ACTIONS(498), + [anon_sym_POUND] = ACTIONS(496), + [anon_sym_EQ] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(496), + [anon_sym_ref] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(498), + [anon_sym_COLON_COLON] = ACTIONS(496), + [anon_sym__] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(496), + [sym_mutable_specifier] = ACTIONS(498), + [anon_sym_DOT_DOT] = ACTIONS(498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_AMP_AMP] = ACTIONS(496), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(496), + [anon_sym_BANG_EQ] = ACTIONS(496), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_PLUS_EQ] = ACTIONS(496), + [anon_sym_DASH_EQ] = ACTIONS(496), + [anon_sym_STAR_EQ] = ACTIONS(496), + [anon_sym_SLASH_EQ] = ACTIONS(496), + [anon_sym_PERCENT_EQ] = ACTIONS(496), + [anon_sym_AMP_EQ] = ACTIONS(496), + [anon_sym_PIPE_EQ] = ACTIONS(496), + [anon_sym_CARET_EQ] = ACTIONS(496), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_GT_GT_EQ] = ACTIONS(496), + [anon_sym_else] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(498), + [sym_integer_literal] = ACTIONS(496), + [aux_sym_string_literal_token1] = ACTIONS(496), + [sym_char_literal] = ACTIONS(496), + [anon_sym_true] = ACTIONS(498), + [anon_sym_false] = ACTIONS(498), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(498), + [sym_super] = ACTIONS(498), + [sym_crate] = ACTIONS(498), + [sym_metavariable] = ACTIONS(496), + [sym_raw_string_literal] = ACTIONS(496), + [sym_float_literal] = ACTIONS(496), + [sym_block_comment] = ACTIONS(3), + }, + [216] = { + [sym_else_clause] = STATE(242), + [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_else] = ACTIONS(882), + [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), }, [217] = { + [sym_identifier] = ACTIONS(556), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(556), + [anon_sym_i8] = ACTIONS(556), + [anon_sym_u16] = ACTIONS(556), + [anon_sym_i16] = ACTIONS(556), + [anon_sym_u32] = ACTIONS(556), + [anon_sym_i32] = ACTIONS(556), + [anon_sym_u64] = ACTIONS(556), + [anon_sym_i64] = ACTIONS(556), + [anon_sym_u128] = ACTIONS(556), + [anon_sym_i128] = ACTIONS(556), + [anon_sym_isize] = ACTIONS(556), + [anon_sym_usize] = ACTIONS(556), + [anon_sym_f32] = ACTIONS(556), + [anon_sym_f64] = ACTIONS(556), + [anon_sym_bool] = ACTIONS(556), + [anon_sym_str] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_as] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_union] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_ref] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(556), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym__] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [sym_mutable_specifier] = ACTIONS(556), + [anon_sym_DOT_DOT] = ACTIONS(556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(556), + [anon_sym_PERCENT] = ACTIONS(556), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_else] = ACTIONS(556), + [anon_sym_DOT] = ACTIONS(556), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(554), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(556), + [anon_sym_false] = ACTIONS(556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_crate] = ACTIONS(556), + [sym_metavariable] = ACTIONS(554), + [sym_raw_string_literal] = ACTIONS(554), + [sym_float_literal] = ACTIONS(554), + [sym_block_comment] = ACTIONS(3), + }, + [218] = { + [sym_identifier] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_u8] = ACTIONS(532), + [anon_sym_i8] = ACTIONS(532), + [anon_sym_u16] = ACTIONS(532), + [anon_sym_i16] = ACTIONS(532), + [anon_sym_u32] = ACTIONS(532), + [anon_sym_i32] = ACTIONS(532), + [anon_sym_u64] = ACTIONS(532), + [anon_sym_i64] = ACTIONS(532), + [anon_sym_u128] = ACTIONS(532), + [anon_sym_i128] = ACTIONS(532), + [anon_sym_isize] = ACTIONS(532), + [anon_sym_usize] = ACTIONS(532), + [anon_sym_f32] = ACTIONS(532), + [anon_sym_f64] = ACTIONS(532), + [anon_sym_bool] = ACTIONS(532), + [anon_sym_str] = ACTIONS(532), + [anon_sym_char] = ACTIONS(532), + [anon_sym_as] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_default] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [anon_sym_POUND] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_ref] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym__] = ACTIONS(532), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(530), + [sym_mutable_specifier] = ACTIONS(532), + [anon_sym_DOT_DOT] = ACTIONS(532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_PERCENT] = ACTIONS(532), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(530), + [anon_sym_else] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(532), + [sym_integer_literal] = ACTIONS(530), + [aux_sym_string_literal_token1] = ACTIONS(530), + [sym_char_literal] = ACTIONS(530), + [anon_sym_true] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(532), + [sym_super] = ACTIONS(532), + [sym_crate] = ACTIONS(532), + [sym_metavariable] = ACTIONS(530), + [sym_raw_string_literal] = ACTIONS(530), + [sym_float_literal] = ACTIONS(530), + [sym_block_comment] = ACTIONS(3), + }, + [219] = { + [sym_identifier] = ACTIONS(542), + [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_PLUS] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_QMARK] = ACTIONS(540), + [anon_sym_u8] = ACTIONS(542), + [anon_sym_i8] = ACTIONS(542), + [anon_sym_u16] = ACTIONS(542), + [anon_sym_i16] = ACTIONS(542), + [anon_sym_u32] = ACTIONS(542), + [anon_sym_i32] = ACTIONS(542), + [anon_sym_u64] = ACTIONS(542), + [anon_sym_i64] = ACTIONS(542), + [anon_sym_u128] = ACTIONS(542), + [anon_sym_i128] = ACTIONS(542), + [anon_sym_isize] = ACTIONS(542), + [anon_sym_usize] = ACTIONS(542), + [anon_sym_f32] = ACTIONS(542), + [anon_sym_f64] = ACTIONS(542), + [anon_sym_bool] = ACTIONS(542), + [anon_sym_str] = ACTIONS(542), + [anon_sym_char] = ACTIONS(542), + [anon_sym_as] = ACTIONS(542), + [anon_sym_const] = ACTIONS(542), + [anon_sym_default] = ACTIONS(542), + [anon_sym_union] = ACTIONS(542), + [anon_sym_POUND] = ACTIONS(540), + [anon_sym_EQ] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(540), + [anon_sym_ref] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(542), + [anon_sym_GT] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(540), + [anon_sym__] = ACTIONS(542), + [anon_sym_AMP] = ACTIONS(542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(540), + [sym_mutable_specifier] = ACTIONS(542), + [anon_sym_DOT_DOT] = ACTIONS(542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(540), + [anon_sym_PIPE_PIPE] = ACTIONS(540), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_CARET] = ACTIONS(542), + [anon_sym_EQ_EQ] = ACTIONS(540), + [anon_sym_BANG_EQ] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_GT_GT] = ACTIONS(542), + [anon_sym_SLASH] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(542), + [anon_sym_PLUS_EQ] = ACTIONS(540), + [anon_sym_DASH_EQ] = ACTIONS(540), + [anon_sym_STAR_EQ] = ACTIONS(540), + [anon_sym_SLASH_EQ] = ACTIONS(540), + [anon_sym_PERCENT_EQ] = ACTIONS(540), + [anon_sym_AMP_EQ] = ACTIONS(540), + [anon_sym_PIPE_EQ] = ACTIONS(540), + [anon_sym_CARET_EQ] = ACTIONS(540), + [anon_sym_LT_LT_EQ] = ACTIONS(540), + [anon_sym_GT_GT_EQ] = ACTIONS(540), + [anon_sym_else] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(542), + [sym_integer_literal] = ACTIONS(540), + [aux_sym_string_literal_token1] = ACTIONS(540), + [sym_char_literal] = ACTIONS(540), + [anon_sym_true] = ACTIONS(542), + [anon_sym_false] = ACTIONS(542), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(542), + [sym_super] = ACTIONS(542), + [sym_crate] = ACTIONS(542), + [sym_metavariable] = ACTIONS(540), + [sym_raw_string_literal] = ACTIONS(540), + [sym_float_literal] = ACTIONS(540), + [sym_block_comment] = ACTIONS(3), + }, + [220] = { [sym_identifier] = ACTIONS(600), [anon_sym_LPAREN] = ACTIONS(598), [anon_sym_RBRACE] = ACTIONS(598), @@ -38253,327 +38933,727 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(598), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_union] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_ref] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [sym_mutable_specifier] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), + [221] = { + [sym_identifier] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_ref] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym__] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [sym_mutable_specifier] = ACTIONS(584), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), [sym_block_comment] = ACTIONS(3), }, - [219] = { - [sym_identifier] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(618), - [anon_sym_RBRACE] = ACTIONS(618), - [anon_sym_LBRACK] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_QMARK] = ACTIONS(618), - [anon_sym_u8] = ACTIONS(620), - [anon_sym_i8] = ACTIONS(620), - [anon_sym_u16] = ACTIONS(620), - [anon_sym_i16] = ACTIONS(620), - [anon_sym_u32] = ACTIONS(620), - [anon_sym_i32] = ACTIONS(620), - [anon_sym_u64] = ACTIONS(620), - [anon_sym_i64] = ACTIONS(620), - [anon_sym_u128] = ACTIONS(620), - [anon_sym_i128] = ACTIONS(620), - [anon_sym_isize] = ACTIONS(620), - [anon_sym_usize] = ACTIONS(620), - [anon_sym_f32] = ACTIONS(620), - [anon_sym_f64] = ACTIONS(620), - [anon_sym_bool] = ACTIONS(620), - [anon_sym_str] = ACTIONS(620), - [anon_sym_char] = ACTIONS(620), - [anon_sym_as] = ACTIONS(620), - [anon_sym_const] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), - [anon_sym_union] = ACTIONS(620), - [anon_sym_POUND] = ACTIONS(618), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_ref] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(620), - [anon_sym_GT] = ACTIONS(620), - [anon_sym_COLON_COLON] = ACTIONS(618), - [anon_sym__] = ACTIONS(620), - [anon_sym_AMP] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(618), - [sym_mutable_specifier] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(620), - [anon_sym_DOT_DOT_EQ] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_AMP_AMP] = ACTIONS(618), - [anon_sym_PIPE_PIPE] = ACTIONS(618), - [anon_sym_PIPE] = ACTIONS(620), - [anon_sym_CARET] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(618), - [anon_sym_BANG_EQ] = ACTIONS(618), - [anon_sym_LT_EQ] = ACTIONS(618), - [anon_sym_GT_EQ] = ACTIONS(618), - [anon_sym_LT_LT] = ACTIONS(620), - [anon_sym_GT_GT] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(620), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(618), - [anon_sym_DASH_EQ] = ACTIONS(618), - [anon_sym_STAR_EQ] = ACTIONS(618), - [anon_sym_SLASH_EQ] = ACTIONS(618), - [anon_sym_PERCENT_EQ] = ACTIONS(618), - [anon_sym_AMP_EQ] = ACTIONS(618), - [anon_sym_PIPE_EQ] = ACTIONS(618), - [anon_sym_CARET_EQ] = ACTIONS(618), - [anon_sym_LT_LT_EQ] = ACTIONS(618), - [anon_sym_GT_GT_EQ] = ACTIONS(618), - [anon_sym_DOT] = ACTIONS(620), - [sym_integer_literal] = ACTIONS(618), - [aux_sym_string_literal_token1] = ACTIONS(618), - [sym_char_literal] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(620), - [sym_super] = ACTIONS(620), - [sym_crate] = ACTIONS(620), - [sym_metavariable] = ACTIONS(618), - [sym_raw_string_literal] = ACTIONS(618), - [sym_float_literal] = ACTIONS(618), + [222] = { + [sym_identifier] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_ref] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym__] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), [sym_block_comment] = ACTIONS(3), }, - [220] = { - [sym_identifier] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_ref] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym__] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), + [223] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2011), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2005), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_type_binding] = STATE(2276), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [sym_block] = STATE(2276), + [sym__literal] = STATE(2276), + [sym_string_literal] = STATE(2286), + [sym_boolean_literal] = STATE(2286), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(634), - [anon_sym_u8] = ACTIONS(636), - [anon_sym_i8] = ACTIONS(636), - [anon_sym_u16] = ACTIONS(636), - [anon_sym_i16] = ACTIONS(636), - [anon_sym_u32] = ACTIONS(636), - [anon_sym_i32] = ACTIONS(636), - [anon_sym_u64] = ACTIONS(636), - [anon_sym_i64] = ACTIONS(636), - [anon_sym_u128] = ACTIONS(636), - [anon_sym_i128] = ACTIONS(636), - [anon_sym_isize] = ACTIONS(636), - [anon_sym_usize] = ACTIONS(636), - [anon_sym_f32] = ACTIONS(636), - [anon_sym_f64] = ACTIONS(636), - [anon_sym_bool] = ACTIONS(636), - [anon_sym_str] = ACTIONS(636), - [anon_sym_char] = ACTIONS(636), - [anon_sym_as] = ACTIONS(636), - [anon_sym_const] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_union] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_ref] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(634), - [anon_sym__] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(634), - [sym_mutable_specifier] = ACTIONS(636), - [anon_sym_DOT_DOT] = ACTIONS(636), - [anon_sym_DOT_DOT_EQ] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(634), - [anon_sym_PIPE_PIPE] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(634), - [anon_sym_BANG_EQ] = ACTIONS(634), - [anon_sym_LT_EQ] = ACTIONS(634), - [anon_sym_GT_EQ] = ACTIONS(634), - [anon_sym_LT_LT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_AMP_EQ] = ACTIONS(634), - [anon_sym_PIPE_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_LT_LT_EQ] = ACTIONS(634), - [anon_sym_GT_GT_EQ] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [sym_integer_literal] = ACTIONS(634), - [aux_sym_string_literal_token1] = ACTIONS(634), - [sym_char_literal] = ACTIONS(634), - [anon_sym_true] = ACTIONS(636), - [anon_sym_false] = ACTIONS(636), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(636), - [sym_super] = ACTIONS(636), - [sym_crate] = ACTIONS(636), - [sym_metavariable] = ACTIONS(634), - [sym_raw_string_literal] = ACTIONS(634), - [sym_float_literal] = ACTIONS(634), + [224] = { + [sym_identifier] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(910), + [anon_sym_i8] = ACTIONS(910), + [anon_sym_u16] = ACTIONS(910), + [anon_sym_i16] = ACTIONS(910), + [anon_sym_u32] = ACTIONS(910), + [anon_sym_i32] = ACTIONS(910), + [anon_sym_u64] = ACTIONS(910), + [anon_sym_i64] = ACTIONS(910), + [anon_sym_u128] = ACTIONS(910), + [anon_sym_i128] = ACTIONS(910), + [anon_sym_isize] = ACTIONS(910), + [anon_sym_usize] = ACTIONS(910), + [anon_sym_f32] = ACTIONS(910), + [anon_sym_f64] = ACTIONS(910), + [anon_sym_bool] = ACTIONS(910), + [anon_sym_str] = ACTIONS(910), + [anon_sym_char] = ACTIONS(910), + [anon_sym_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym__] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(910), + [anon_sym_DOT_DOT] = ACTIONS(910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(912), + [aux_sym_string_literal_token1] = ACTIONS(912), + [sym_char_literal] = ACTIONS(912), + [anon_sym_true] = ACTIONS(910), + [anon_sym_false] = ACTIONS(910), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(910), + [sym_super] = ACTIONS(910), + [sym_crate] = ACTIONS(910), + [sym_metavariable] = ACTIONS(912), + [sym_raw_string_literal] = ACTIONS(912), + [sym_float_literal] = ACTIONS(912), [sym_block_comment] = ACTIONS(3), }, - [222] = { + [225] = { + [sym_identifier] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_ref] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [sym_mutable_specifier] = ACTIONS(674), + [anon_sym_DOT_DOT] = ACTIONS(674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_CARET] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(672), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_char_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(672), + [sym_raw_string_literal] = ACTIONS(672), + [sym_float_literal] = ACTIONS(672), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(560), + [anon_sym_i8] = ACTIONS(560), + [anon_sym_u16] = ACTIONS(560), + [anon_sym_i16] = ACTIONS(560), + [anon_sym_u32] = ACTIONS(560), + [anon_sym_i32] = ACTIONS(560), + [anon_sym_u64] = ACTIONS(560), + [anon_sym_i64] = ACTIONS(560), + [anon_sym_u128] = ACTIONS(560), + [anon_sym_i128] = ACTIONS(560), + [anon_sym_isize] = ACTIONS(560), + [anon_sym_usize] = ACTIONS(560), + [anon_sym_f32] = ACTIONS(560), + [anon_sym_f64] = ACTIONS(560), + [anon_sym_bool] = ACTIONS(560), + [anon_sym_str] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_as] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [anon_sym_POUND] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_ref] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_COLON_COLON] = ACTIONS(558), + [anon_sym__] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(558), + [sym_mutable_specifier] = ACTIONS(560), + [anon_sym_DOT_DOT] = ACTIONS(560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_AMP_AMP] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(558), + [anon_sym_DASH_EQ] = ACTIONS(558), + [anon_sym_STAR_EQ] = ACTIONS(558), + [anon_sym_SLASH_EQ] = ACTIONS(558), + [anon_sym_PERCENT_EQ] = ACTIONS(558), + [anon_sym_AMP_EQ] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(558), + [anon_sym_LT_LT_EQ] = ACTIONS(558), + [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(560), + [sym_integer_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(558), + [sym_char_literal] = ACTIONS(558), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_crate] = ACTIONS(560), + [sym_metavariable] = ACTIONS(558), + [sym_raw_string_literal] = ACTIONS(558), + [sym_float_literal] = ACTIONS(558), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_EQ] = ACTIONS(634), + [anon_sym_COMMA] = ACTIONS(632), + [anon_sym_ref] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(634), + [anon_sym_COLON_COLON] = ACTIONS(632), + [anon_sym__] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(632), + [sym_mutable_specifier] = ACTIONS(634), + [anon_sym_DOT_DOT] = ACTIONS(634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_EQ_EQ] = ACTIONS(632), + [anon_sym_BANG_EQ] = ACTIONS(632), + [anon_sym_LT_EQ] = ACTIONS(632), + [anon_sym_GT_EQ] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(634), + [anon_sym_PLUS_EQ] = ACTIONS(632), + [anon_sym_DASH_EQ] = ACTIONS(632), + [anon_sym_STAR_EQ] = ACTIONS(632), + [anon_sym_SLASH_EQ] = ACTIONS(632), + [anon_sym_PERCENT_EQ] = ACTIONS(632), + [anon_sym_AMP_EQ] = ACTIONS(632), + [anon_sym_PIPE_EQ] = ACTIONS(632), + [anon_sym_CARET_EQ] = ACTIONS(632), + [anon_sym_LT_LT_EQ] = ACTIONS(632), + [anon_sym_GT_GT_EQ] = ACTIONS(632), + [anon_sym_DOT] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(632), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2011), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2005), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_type_binding] = STATE(2276), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [sym_block] = STATE(2276), + [sym__literal] = STATE(2276), + [sym_string_literal] = STATE(2286), + [sym_boolean_literal] = STATE(2286), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [229] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2011), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2005), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_type_binding] = STATE(2276), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [sym_block] = STATE(2276), + [sym__literal] = STATE(2276), + [sym_string_literal] = STATE(2286), + [sym_boolean_literal] = STATE(2286), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(916), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [230] = { [sym_identifier] = ACTIONS(580), [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_RBRACE] = ACTIONS(578), @@ -38653,2069 +39733,1832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(578), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(546), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_u8] = ACTIONS(546), - [anon_sym_i8] = ACTIONS(546), - [anon_sym_u16] = ACTIONS(546), - [anon_sym_i16] = ACTIONS(546), - [anon_sym_u32] = ACTIONS(546), - [anon_sym_i32] = ACTIONS(546), - [anon_sym_u64] = ACTIONS(546), - [anon_sym_i64] = ACTIONS(546), - [anon_sym_u128] = ACTIONS(546), - [anon_sym_i128] = ACTIONS(546), - [anon_sym_isize] = ACTIONS(546), - [anon_sym_usize] = ACTIONS(546), - [anon_sym_f32] = ACTIONS(546), - [anon_sym_f64] = ACTIONS(546), - [anon_sym_bool] = ACTIONS(546), - [anon_sym_str] = ACTIONS(546), - [anon_sym_char] = ACTIONS(546), - [anon_sym_as] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_union] = ACTIONS(546), - [anon_sym_POUND] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_ref] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_COLON_COLON] = ACTIONS(544), - [anon_sym__] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(544), - [sym_mutable_specifier] = ACTIONS(546), - [anon_sym_DOT_DOT] = ACTIONS(546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(546), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(546), - [anon_sym_PERCENT] = ACTIONS(546), - [anon_sym_PLUS_EQ] = ACTIONS(544), - [anon_sym_DASH_EQ] = ACTIONS(544), - [anon_sym_STAR_EQ] = ACTIONS(544), - [anon_sym_SLASH_EQ] = ACTIONS(544), - [anon_sym_PERCENT_EQ] = ACTIONS(544), - [anon_sym_AMP_EQ] = ACTIONS(544), - [anon_sym_PIPE_EQ] = ACTIONS(544), - [anon_sym_CARET_EQ] = ACTIONS(544), - [anon_sym_LT_LT_EQ] = ACTIONS(544), - [anon_sym_GT_GT_EQ] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(546), - [sym_integer_literal] = ACTIONS(544), - [aux_sym_string_literal_token1] = ACTIONS(544), - [sym_char_literal] = ACTIONS(544), - [anon_sym_true] = ACTIONS(546), - [anon_sym_false] = ACTIONS(546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(546), - [sym_super] = ACTIONS(546), - [sym_crate] = ACTIONS(546), - [sym_metavariable] = ACTIONS(544), - [sym_raw_string_literal] = ACTIONS(544), - [sym_float_literal] = ACTIONS(544), - [sym_block_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(906), - [anon_sym_i8] = ACTIONS(906), - [anon_sym_u16] = ACTIONS(906), - [anon_sym_i16] = ACTIONS(906), - [anon_sym_u32] = ACTIONS(906), - [anon_sym_i32] = ACTIONS(906), - [anon_sym_u64] = ACTIONS(906), - [anon_sym_i64] = ACTIONS(906), - [anon_sym_u128] = ACTIONS(906), - [anon_sym_i128] = ACTIONS(906), - [anon_sym_isize] = ACTIONS(906), - [anon_sym_usize] = ACTIONS(906), - [anon_sym_f32] = ACTIONS(906), - [anon_sym_f64] = ACTIONS(906), - [anon_sym_bool] = ACTIONS(906), - [anon_sym_str] = ACTIONS(906), - [anon_sym_char] = ACTIONS(906), - [anon_sym_as] = ACTIONS(556), - [anon_sym_const] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(908), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_ref] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(908), - [anon_sym__] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [sym_mutable_specifier] = ACTIONS(906), - [anon_sym_DOT_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(908), - [aux_sym_string_literal_token1] = ACTIONS(908), - [sym_char_literal] = ACTIONS(908), - [anon_sym_true] = ACTIONS(906), - [anon_sym_false] = ACTIONS(906), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(908), - [sym_float_literal] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [225] = { - [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), + [231] = { + [sym_identifier] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_ref] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym__] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [sym_mutable_specifier] = ACTIONS(638), + [anon_sym_DOT_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_LT_EQ] = ACTIONS(636), + [anon_sym_GT_EQ] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(638), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_PLUS_EQ] = ACTIONS(636), + [anon_sym_DASH_EQ] = ACTIONS(636), + [anon_sym_STAR_EQ] = ACTIONS(636), + [anon_sym_SLASH_EQ] = ACTIONS(636), + [anon_sym_PERCENT_EQ] = ACTIONS(636), + [anon_sym_AMP_EQ] = ACTIONS(636), + [anon_sym_PIPE_EQ] = ACTIONS(636), + [anon_sym_CARET_EQ] = ACTIONS(636), + [anon_sym_LT_LT_EQ] = ACTIONS(636), + [anon_sym_GT_GT_EQ] = ACTIONS(636), + [anon_sym_DOT] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(636), + [aux_sym_string_literal_token1] = ACTIONS(636), + [sym_char_literal] = ACTIONS(636), + [anon_sym_true] = ACTIONS(638), + [anon_sym_false] = ACTIONS(638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(636), + [sym_raw_string_literal] = ACTIONS(636), + [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_QMARK] = ACTIONS(516), - [anon_sym_u8] = ACTIONS(518), - [anon_sym_i8] = ACTIONS(518), - [anon_sym_u16] = ACTIONS(518), - [anon_sym_i16] = ACTIONS(518), - [anon_sym_u32] = ACTIONS(518), - [anon_sym_i32] = ACTIONS(518), - [anon_sym_u64] = ACTIONS(518), - [anon_sym_i64] = ACTIONS(518), - [anon_sym_u128] = ACTIONS(518), - [anon_sym_i128] = ACTIONS(518), - [anon_sym_isize] = ACTIONS(518), - [anon_sym_usize] = ACTIONS(518), - [anon_sym_f32] = ACTIONS(518), - [anon_sym_f64] = ACTIONS(518), - [anon_sym_bool] = ACTIONS(518), - [anon_sym_str] = ACTIONS(518), - [anon_sym_char] = ACTIONS(518), - [anon_sym_as] = ACTIONS(518), - [anon_sym_const] = ACTIONS(518), - [anon_sym_default] = ACTIONS(518), - [anon_sym_union] = ACTIONS(518), - [anon_sym_POUND] = ACTIONS(516), - [anon_sym_EQ] = ACTIONS(518), - [anon_sym_COMMA] = ACTIONS(516), - [anon_sym_ref] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_COLON_COLON] = ACTIONS(516), - [anon_sym__] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(516), - [sym_mutable_specifier] = ACTIONS(518), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(516), - [anon_sym_PIPE_PIPE] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(516), - [anon_sym_BANG_EQ] = ACTIONS(516), - [anon_sym_LT_EQ] = ACTIONS(516), - [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_PLUS_EQ] = ACTIONS(516), - [anon_sym_DASH_EQ] = ACTIONS(516), - [anon_sym_STAR_EQ] = ACTIONS(516), - [anon_sym_SLASH_EQ] = ACTIONS(516), - [anon_sym_PERCENT_EQ] = ACTIONS(516), - [anon_sym_AMP_EQ] = ACTIONS(516), - [anon_sym_PIPE_EQ] = ACTIONS(516), - [anon_sym_CARET_EQ] = ACTIONS(516), - [anon_sym_LT_LT_EQ] = ACTIONS(516), - [anon_sym_GT_GT_EQ] = ACTIONS(516), - [anon_sym_DOT] = ACTIONS(518), - [sym_integer_literal] = ACTIONS(516), - [aux_sym_string_literal_token1] = ACTIONS(516), - [sym_char_literal] = ACTIONS(516), - [anon_sym_true] = ACTIONS(518), - [anon_sym_false] = ACTIONS(518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(518), - [sym_super] = ACTIONS(518), - [sym_crate] = ACTIONS(518), - [sym_metavariable] = ACTIONS(516), - [sym_raw_string_literal] = ACTIONS(516), - [sym_float_literal] = ACTIONS(516), + [232] = { + [sym_identifier] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(642), + [anon_sym_i8] = ACTIONS(642), + [anon_sym_u16] = ACTIONS(642), + [anon_sym_i16] = ACTIONS(642), + [anon_sym_u32] = ACTIONS(642), + [anon_sym_i32] = ACTIONS(642), + [anon_sym_u64] = ACTIONS(642), + [anon_sym_i64] = ACTIONS(642), + [anon_sym_u128] = ACTIONS(642), + [anon_sym_i128] = ACTIONS(642), + [anon_sym_isize] = ACTIONS(642), + [anon_sym_usize] = ACTIONS(642), + [anon_sym_f32] = ACTIONS(642), + [anon_sym_f64] = ACTIONS(642), + [anon_sym_bool] = ACTIONS(642), + [anon_sym_str] = ACTIONS(642), + [anon_sym_char] = ACTIONS(642), + [anon_sym_as] = ACTIONS(642), + [anon_sym_const] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_union] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_ref] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym__] = ACTIONS(642), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [sym_mutable_specifier] = ACTIONS(642), + [anon_sym_DOT_DOT] = ACTIONS(642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_DOT] = ACTIONS(642), + [sym_integer_literal] = ACTIONS(640), + [aux_sym_string_literal_token1] = ACTIONS(640), + [sym_char_literal] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(642), + [sym_super] = ACTIONS(642), + [sym_crate] = ACTIONS(642), + [sym_metavariable] = ACTIONS(640), + [sym_raw_string_literal] = ACTIONS(640), + [sym_float_literal] = ACTIONS(640), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1913), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1914), + [233] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2011), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2005), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2265), + [sym_type_binding] = STATE(2276), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), [sym_empty_type] = STATE(1392), [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [sym_block] = STATE(2265), - [sym__literal] = STATE(2265), - [sym_string_literal] = STATE(2164), - [sym_boolean_literal] = STATE(2164), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [sym_block] = STATE(2276), + [sym__literal] = STATE(2276), + [sym_string_literal] = STATE(2286), + [sym_boolean_literal] = STATE(2286), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(910), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_integer_literal] = ACTIONS(900), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(900), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(900), - [sym_float_literal] = ACTIONS(900), - [sym_block_comment] = ACTIONS(3), - }, - [228] = { - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_u8] = ACTIONS(656), - [anon_sym_i8] = ACTIONS(656), - [anon_sym_u16] = ACTIONS(656), - [anon_sym_i16] = ACTIONS(656), - [anon_sym_u32] = ACTIONS(656), - [anon_sym_i32] = ACTIONS(656), - [anon_sym_u64] = ACTIONS(656), - [anon_sym_i64] = ACTIONS(656), - [anon_sym_u128] = ACTIONS(656), - [anon_sym_i128] = ACTIONS(656), - [anon_sym_isize] = ACTIONS(656), - [anon_sym_usize] = ACTIONS(656), - [anon_sym_f32] = ACTIONS(656), - [anon_sym_f64] = ACTIONS(656), - [anon_sym_bool] = ACTIONS(656), - [anon_sym_str] = ACTIONS(656), - [anon_sym_char] = ACTIONS(656), - [anon_sym_as] = ACTIONS(656), - [anon_sym_const] = ACTIONS(656), - [anon_sym_default] = ACTIONS(656), - [anon_sym_union] = ACTIONS(656), - [anon_sym_POUND] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_ref] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(654), - [anon_sym__] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(654), - [sym_mutable_specifier] = ACTIONS(656), - [anon_sym_DOT_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE_PIPE] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(656), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_SLASH] = ACTIONS(656), - [anon_sym_PERCENT] = ACTIONS(656), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_STAR_EQ] = ACTIONS(654), - [anon_sym_SLASH_EQ] = ACTIONS(654), - [anon_sym_PERCENT_EQ] = ACTIONS(654), - [anon_sym_AMP_EQ] = ACTIONS(654), - [anon_sym_PIPE_EQ] = ACTIONS(654), - [anon_sym_CARET_EQ] = ACTIONS(654), - [anon_sym_LT_LT_EQ] = ACTIONS(654), - [anon_sym_GT_GT_EQ] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(656), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(654), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(656), - [anon_sym_false] = ACTIONS(656), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(656), - [sym_super] = ACTIONS(656), - [sym_crate] = ACTIONS(656), - [sym_metavariable] = ACTIONS(654), - [sym_raw_string_literal] = ACTIONS(654), - [sym_float_literal] = ACTIONS(654), - [sym_block_comment] = ACTIONS(3), - }, - [229] = { - [sym_identifier] = ACTIONS(538), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(536), - [anon_sym_u8] = ACTIONS(538), - [anon_sym_i8] = ACTIONS(538), - [anon_sym_u16] = ACTIONS(538), - [anon_sym_i16] = ACTIONS(538), - [anon_sym_u32] = ACTIONS(538), - [anon_sym_i32] = ACTIONS(538), - [anon_sym_u64] = ACTIONS(538), - [anon_sym_i64] = ACTIONS(538), - [anon_sym_u128] = ACTIONS(538), - [anon_sym_i128] = ACTIONS(538), - [anon_sym_isize] = ACTIONS(538), - [anon_sym_usize] = ACTIONS(538), - [anon_sym_f32] = ACTIONS(538), - [anon_sym_f64] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(538), - [anon_sym_str] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_as] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_union] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_EQ] = ACTIONS(538), - [anon_sym_COMMA] = ACTIONS(536), - [anon_sym_ref] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_COLON_COLON] = ACTIONS(536), - [anon_sym__] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(536), - [sym_mutable_specifier] = ACTIONS(538), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(536), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(538), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_DOT] = ACTIONS(538), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(536), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_crate] = ACTIONS(538), - [sym_metavariable] = ACTIONS(536), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(642), - [anon_sym_u8] = ACTIONS(644), - [anon_sym_i8] = ACTIONS(644), - [anon_sym_u16] = ACTIONS(644), - [anon_sym_i16] = ACTIONS(644), - [anon_sym_u32] = ACTIONS(644), - [anon_sym_i32] = ACTIONS(644), - [anon_sym_u64] = ACTIONS(644), - [anon_sym_i64] = ACTIONS(644), - [anon_sym_u128] = ACTIONS(644), - [anon_sym_i128] = ACTIONS(644), - [anon_sym_isize] = ACTIONS(644), - [anon_sym_usize] = ACTIONS(644), - [anon_sym_f32] = ACTIONS(644), - [anon_sym_f64] = ACTIONS(644), - [anon_sym_bool] = ACTIONS(644), - [anon_sym_str] = ACTIONS(644), - [anon_sym_char] = ACTIONS(644), - [anon_sym_as] = ACTIONS(644), - [anon_sym_const] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_union] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_ref] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_COLON_COLON] = ACTIONS(642), - [anon_sym__] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(642), - [sym_mutable_specifier] = ACTIONS(644), - [anon_sym_DOT_DOT] = ACTIONS(644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(642), - [anon_sym_PIPE_PIPE] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(642), - [anon_sym_BANG_EQ] = ACTIONS(642), - [anon_sym_LT_EQ] = ACTIONS(642), - [anon_sym_GT_EQ] = ACTIONS(642), - [anon_sym_LT_LT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_STAR_EQ] = ACTIONS(642), - [anon_sym_SLASH_EQ] = ACTIONS(642), - [anon_sym_PERCENT_EQ] = ACTIONS(642), - [anon_sym_AMP_EQ] = ACTIONS(642), - [anon_sym_PIPE_EQ] = ACTIONS(642), - [anon_sym_CARET_EQ] = ACTIONS(642), - [anon_sym_LT_LT_EQ] = ACTIONS(642), - [anon_sym_GT_GT_EQ] = ACTIONS(642), - [anon_sym_DOT] = ACTIONS(644), - [sym_integer_literal] = ACTIONS(642), - [aux_sym_string_literal_token1] = ACTIONS(642), - [sym_char_literal] = ACTIONS(642), - [anon_sym_true] = ACTIONS(644), - [anon_sym_false] = ACTIONS(644), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(644), - [sym_super] = ACTIONS(644), - [sym_crate] = ACTIONS(644), - [sym_metavariable] = ACTIONS(642), - [sym_raw_string_literal] = ACTIONS(642), - [sym_float_literal] = ACTIONS(642), + [234] = { + [sym_identifier] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_ref] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_COLON_COLON] = ACTIONS(668), + [anon_sym__] = ACTIONS(670), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(668), + [sym_mutable_specifier] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(670), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(668), + [aux_sym_string_literal_token1] = ACTIONS(668), + [sym_char_literal] = ACTIONS(668), + [anon_sym_true] = ACTIONS(670), + [anon_sym_false] = ACTIONS(670), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(668), + [sym_raw_string_literal] = ACTIONS(668), + [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(616), - [anon_sym_LPAREN] = ACTIONS(614), - [anon_sym_RBRACE] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(616), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_u8] = ACTIONS(616), - [anon_sym_i8] = ACTIONS(616), - [anon_sym_u16] = ACTIONS(616), - [anon_sym_i16] = ACTIONS(616), - [anon_sym_u32] = ACTIONS(616), - [anon_sym_i32] = ACTIONS(616), - [anon_sym_u64] = ACTIONS(616), - [anon_sym_i64] = ACTIONS(616), - [anon_sym_u128] = ACTIONS(616), - [anon_sym_i128] = ACTIONS(616), - [anon_sym_isize] = ACTIONS(616), - [anon_sym_usize] = ACTIONS(616), - [anon_sym_f32] = ACTIONS(616), - [anon_sym_f64] = ACTIONS(616), - [anon_sym_bool] = ACTIONS(616), - [anon_sym_str] = ACTIONS(616), - [anon_sym_char] = ACTIONS(616), - [anon_sym_as] = ACTIONS(616), - [anon_sym_const] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), - [anon_sym_union] = ACTIONS(616), - [anon_sym_POUND] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(614), - [anon_sym_ref] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(616), - [anon_sym_GT] = ACTIONS(616), - [anon_sym_COLON_COLON] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [sym_mutable_specifier] = ACTIONS(616), - [anon_sym_DOT_DOT] = ACTIONS(616), - [anon_sym_DOT_DOT_EQ] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_AMP_AMP] = ACTIONS(614), - [anon_sym_PIPE_PIPE] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_EQ_EQ] = ACTIONS(614), - [anon_sym_BANG_EQ] = ACTIONS(614), - [anon_sym_LT_EQ] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(616), - [anon_sym_GT_GT] = ACTIONS(616), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(616), - [anon_sym_PLUS_EQ] = ACTIONS(614), - [anon_sym_DASH_EQ] = ACTIONS(614), - [anon_sym_STAR_EQ] = ACTIONS(614), - [anon_sym_SLASH_EQ] = ACTIONS(614), - [anon_sym_PERCENT_EQ] = ACTIONS(614), - [anon_sym_AMP_EQ] = ACTIONS(614), - [anon_sym_PIPE_EQ] = ACTIONS(614), - [anon_sym_CARET_EQ] = ACTIONS(614), - [anon_sym_LT_LT_EQ] = ACTIONS(614), - [anon_sym_GT_GT_EQ] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(616), - [sym_integer_literal] = ACTIONS(614), - [aux_sym_string_literal_token1] = ACTIONS(614), - [sym_char_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(616), - [anon_sym_false] = ACTIONS(616), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(616), - [sym_super] = ACTIONS(616), - [sym_crate] = ACTIONS(616), - [sym_metavariable] = ACTIONS(614), - [sym_raw_string_literal] = ACTIONS(614), - [sym_float_literal] = ACTIONS(614), + [235] = { + [sym_identifier] = ACTIONS(678), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_ref] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym__] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [sym_mutable_specifier] = ACTIONS(678), + [anon_sym_DOT_DOT] = ACTIONS(678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(676), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(676), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym_metavariable] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(676), + [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [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_as] = ACTIONS(556), - [anon_sym_const] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_union] = ACTIONS(912), - [anon_sym_POUND] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_ref] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(914), - [anon_sym__] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [sym_mutable_specifier] = ACTIONS(912), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(914), - [aux_sym_string_literal_token1] = ACTIONS(914), - [sym_char_literal] = ACTIONS(914), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), + [236] = { + [sym_identifier] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(628), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(628), + [anon_sym_ref] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_COLON_COLON] = ACTIONS(628), + [anon_sym__] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [sym_mutable_specifier] = ACTIONS(630), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_DASH_EQ] = ACTIONS(628), + [anon_sym_STAR_EQ] = ACTIONS(628), + [anon_sym_SLASH_EQ] = ACTIONS(628), + [anon_sym_PERCENT_EQ] = ACTIONS(628), + [anon_sym_AMP_EQ] = ACTIONS(628), + [anon_sym_PIPE_EQ] = ACTIONS(628), + [anon_sym_CARET_EQ] = ACTIONS(628), + [anon_sym_LT_LT_EQ] = ACTIONS(628), + [anon_sym_GT_GT_EQ] = ACTIONS(628), + [anon_sym_DOT] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(912), - [sym_super] = ACTIONS(912), - [sym_crate] = ACTIONS(912), - [sym_metavariable] = ACTIONS(914), - [sym_raw_string_literal] = ACTIONS(914), - [sym_float_literal] = ACTIONS(914), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [233] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1913), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1914), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2265), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [sym_block] = STATE(2265), - [sym__literal] = STATE(2265), - [sym_string_literal] = STATE(2164), - [sym_boolean_literal] = STATE(2164), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_integer_literal] = ACTIONS(900), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(900), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(900), - [sym_float_literal] = ACTIONS(900), + [237] = { + [sym_identifier] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(920), + [anon_sym_i8] = ACTIONS(920), + [anon_sym_u16] = ACTIONS(920), + [anon_sym_i16] = ACTIONS(920), + [anon_sym_u32] = ACTIONS(920), + [anon_sym_i32] = ACTIONS(920), + [anon_sym_u64] = ACTIONS(920), + [anon_sym_i64] = ACTIONS(920), + [anon_sym_u128] = ACTIONS(920), + [anon_sym_i128] = ACTIONS(920), + [anon_sym_isize] = ACTIONS(920), + [anon_sym_usize] = ACTIONS(920), + [anon_sym_f32] = ACTIONS(920), + [anon_sym_f64] = ACTIONS(920), + [anon_sym_bool] = ACTIONS(920), + [anon_sym_str] = ACTIONS(920), + [anon_sym_char] = ACTIONS(920), + [anon_sym_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(922), + [anon_sym__] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(922), + [aux_sym_string_literal_token1] = ACTIONS(922), + [sym_char_literal] = ACTIONS(922), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(920), + [sym_super] = ACTIONS(920), + [sym_crate] = ACTIONS(920), + [sym_metavariable] = ACTIONS(922), + [sym_raw_string_literal] = ACTIONS(922), + [sym_float_literal] = ACTIONS(922), [sym_block_comment] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_ref] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym__] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [sym_mutable_specifier] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), + [238] = { + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_ref] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym__] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [sym_mutable_specifier] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, - [235] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1913), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1914), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2265), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [sym_block] = STATE(2265), - [sym__literal] = STATE(2265), - [sym_string_literal] = STATE(2164), - [sym_boolean_literal] = STATE(2164), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(918), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_integer_literal] = ACTIONS(900), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(900), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(900), - [sym_float_literal] = ACTIONS(900), + [239] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(652), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(652), + [anon_sym_ref] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym__] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(652), + [sym_mutable_specifier] = ACTIONS(654), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_STAR_EQ] = ACTIONS(652), + [anon_sym_SLASH_EQ] = ACTIONS(652), + [anon_sym_PERCENT_EQ] = ACTIONS(652), + [anon_sym_AMP_EQ] = ACTIONS(652), + [anon_sym_PIPE_EQ] = ACTIONS(652), + [anon_sym_CARET_EQ] = ACTIONS(652), + [anon_sym_LT_LT_EQ] = ACTIONS(652), + [anon_sym_GT_GT_EQ] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_metavariable] = ACTIONS(652), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), - [anon_sym_u8] = ACTIONS(560), - [anon_sym_i8] = ACTIONS(560), - [anon_sym_u16] = ACTIONS(560), - [anon_sym_i16] = ACTIONS(560), - [anon_sym_u32] = ACTIONS(560), - [anon_sym_i32] = ACTIONS(560), - [anon_sym_u64] = ACTIONS(560), - [anon_sym_i64] = ACTIONS(560), - [anon_sym_u128] = ACTIONS(560), - [anon_sym_i128] = ACTIONS(560), - [anon_sym_isize] = ACTIONS(560), - [anon_sym_usize] = ACTIONS(560), - [anon_sym_f32] = ACTIONS(560), - [anon_sym_f64] = ACTIONS(560), - [anon_sym_bool] = ACTIONS(560), - [anon_sym_str] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_as] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_default] = ACTIONS(560), - [anon_sym_union] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(560), - [anon_sym_COMMA] = ACTIONS(558), - [anon_sym_ref] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym__] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), - [sym_mutable_specifier] = ACTIONS(560), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), - [anon_sym_DOT] = ACTIONS(560), - [sym_integer_literal] = ACTIONS(558), - [aux_sym_string_literal_token1] = ACTIONS(558), - [sym_char_literal] = ACTIONS(558), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_crate] = ACTIONS(560), - [sym_metavariable] = ACTIONS(558), - [sym_raw_string_literal] = ACTIONS(558), - [sym_float_literal] = ACTIONS(558), + [240] = { + [sym_identifier] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(596), + [anon_sym_i8] = ACTIONS(596), + [anon_sym_u16] = ACTIONS(596), + [anon_sym_i16] = ACTIONS(596), + [anon_sym_u32] = ACTIONS(596), + [anon_sym_i32] = ACTIONS(596), + [anon_sym_u64] = ACTIONS(596), + [anon_sym_i64] = ACTIONS(596), + [anon_sym_u128] = ACTIONS(596), + [anon_sym_i128] = ACTIONS(596), + [anon_sym_isize] = ACTIONS(596), + [anon_sym_usize] = ACTIONS(596), + [anon_sym_f32] = ACTIONS(596), + [anon_sym_f64] = ACTIONS(596), + [anon_sym_bool] = ACTIONS(596), + [anon_sym_str] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_union] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(594), + [anon_sym_ref] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym__] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [sym_mutable_specifier] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_AMP_EQ] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(594), + [anon_sym_CARET_EQ] = ACTIONS(594), + [anon_sym_LT_LT_EQ] = ACTIONS(594), + [anon_sym_GT_GT_EQ] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [sym_integer_literal] = ACTIONS(594), + [aux_sym_string_literal_token1] = ACTIONS(594), + [sym_char_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(596), + [anon_sym_false] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_crate] = ACTIONS(596), + [sym_metavariable] = ACTIONS(594), + [sym_raw_string_literal] = ACTIONS(594), + [sym_float_literal] = ACTIONS(594), [sym_block_comment] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_as] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(562), - [anon_sym_ref] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym__] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [sym_mutable_specifier] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), + [241] = { + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_u8] = ACTIONS(658), + [anon_sym_i8] = ACTIONS(658), + [anon_sym_u16] = ACTIONS(658), + [anon_sym_i16] = ACTIONS(658), + [anon_sym_u32] = ACTIONS(658), + [anon_sym_i32] = ACTIONS(658), + [anon_sym_u64] = ACTIONS(658), + [anon_sym_i64] = ACTIONS(658), + [anon_sym_u128] = ACTIONS(658), + [anon_sym_i128] = ACTIONS(658), + [anon_sym_isize] = ACTIONS(658), + [anon_sym_usize] = ACTIONS(658), + [anon_sym_f32] = ACTIONS(658), + [anon_sym_f64] = ACTIONS(658), + [anon_sym_bool] = ACTIONS(658), + [anon_sym_str] = ACTIONS(658), + [anon_sym_char] = ACTIONS(658), + [anon_sym_as] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_union] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_ref] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym__] = ACTIONS(658), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(656), + [sym_mutable_specifier] = ACTIONS(658), + [anon_sym_DOT_DOT] = ACTIONS(658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(658), + [sym_integer_literal] = ACTIONS(656), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(656), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(658), + [sym_super] = ACTIONS(658), + [sym_crate] = ACTIONS(658), + [sym_metavariable] = ACTIONS(656), + [sym_raw_string_literal] = ACTIONS(656), + [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), }, - [238] = { - [sym_identifier] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_STAR] = ACTIONS(534), - [anon_sym_QMARK] = ACTIONS(532), - [anon_sym_u8] = ACTIONS(534), - [anon_sym_i8] = ACTIONS(534), - [anon_sym_u16] = ACTIONS(534), - [anon_sym_i16] = ACTIONS(534), - [anon_sym_u32] = ACTIONS(534), - [anon_sym_i32] = ACTIONS(534), - [anon_sym_u64] = ACTIONS(534), - [anon_sym_i64] = ACTIONS(534), - [anon_sym_u128] = ACTIONS(534), - [anon_sym_i128] = ACTIONS(534), - [anon_sym_isize] = ACTIONS(534), - [anon_sym_usize] = ACTIONS(534), - [anon_sym_f32] = ACTIONS(534), - [anon_sym_f64] = ACTIONS(534), - [anon_sym_bool] = ACTIONS(534), - [anon_sym_str] = ACTIONS(534), - [anon_sym_char] = ACTIONS(534), - [anon_sym_as] = ACTIONS(534), - [anon_sym_const] = ACTIONS(534), - [anon_sym_default] = ACTIONS(534), - [anon_sym_union] = ACTIONS(534), - [anon_sym_POUND] = ACTIONS(532), - [anon_sym_EQ] = ACTIONS(534), - [anon_sym_COMMA] = ACTIONS(532), - [anon_sym_ref] = ACTIONS(534), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(534), - [anon_sym_COLON_COLON] = ACTIONS(532), - [anon_sym__] = ACTIONS(534), - [anon_sym_AMP] = ACTIONS(534), - [anon_sym_DOT_DOT_DOT] = ACTIONS(532), - [sym_mutable_specifier] = ACTIONS(534), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT_EQ] = ACTIONS(532), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE_PIPE] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(534), - [anon_sym_EQ_EQ] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(532), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_GT_GT] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(534), - [anon_sym_PLUS_EQ] = ACTIONS(532), - [anon_sym_DASH_EQ] = ACTIONS(532), - [anon_sym_STAR_EQ] = ACTIONS(532), - [anon_sym_SLASH_EQ] = ACTIONS(532), - [anon_sym_PERCENT_EQ] = ACTIONS(532), - [anon_sym_AMP_EQ] = ACTIONS(532), - [anon_sym_PIPE_EQ] = ACTIONS(532), - [anon_sym_CARET_EQ] = ACTIONS(532), - [anon_sym_LT_LT_EQ] = ACTIONS(532), - [anon_sym_GT_GT_EQ] = ACTIONS(532), - [anon_sym_DOT] = ACTIONS(534), - [sym_integer_literal] = ACTIONS(532), - [aux_sym_string_literal_token1] = ACTIONS(532), - [sym_char_literal] = ACTIONS(532), - [anon_sym_true] = ACTIONS(534), - [anon_sym_false] = ACTIONS(534), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(534), - [sym_super] = ACTIONS(534), - [sym_crate] = ACTIONS(534), - [sym_metavariable] = ACTIONS(532), - [sym_raw_string_literal] = ACTIONS(532), - [sym_float_literal] = ACTIONS(532), + [242] = { + [sym_identifier] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(608), + [anon_sym_i8] = ACTIONS(608), + [anon_sym_u16] = ACTIONS(608), + [anon_sym_i16] = ACTIONS(608), + [anon_sym_u32] = ACTIONS(608), + [anon_sym_i32] = ACTIONS(608), + [anon_sym_u64] = ACTIONS(608), + [anon_sym_i64] = ACTIONS(608), + [anon_sym_u128] = ACTIONS(608), + [anon_sym_i128] = ACTIONS(608), + [anon_sym_isize] = ACTIONS(608), + [anon_sym_usize] = ACTIONS(608), + [anon_sym_f32] = ACTIONS(608), + [anon_sym_f64] = ACTIONS(608), + [anon_sym_bool] = ACTIONS(608), + [anon_sym_str] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_as] = ACTIONS(608), + [anon_sym_const] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_union] = ACTIONS(608), + [anon_sym_POUND] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(606), + [anon_sym_ref] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_COLON_COLON] = ACTIONS(606), + [anon_sym__] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(606), + [sym_mutable_specifier] = ACTIONS(608), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_CARET] = ACTIONS(608), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_BANG_EQ] = ACTIONS(606), + [anon_sym_LT_EQ] = ACTIONS(606), + [anon_sym_GT_EQ] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_SLASH] = ACTIONS(608), + [anon_sym_PERCENT] = ACTIONS(608), + [anon_sym_PLUS_EQ] = ACTIONS(606), + [anon_sym_DASH_EQ] = ACTIONS(606), + [anon_sym_STAR_EQ] = ACTIONS(606), + [anon_sym_SLASH_EQ] = ACTIONS(606), + [anon_sym_PERCENT_EQ] = ACTIONS(606), + [anon_sym_AMP_EQ] = ACTIONS(606), + [anon_sym_PIPE_EQ] = ACTIONS(606), + [anon_sym_CARET_EQ] = ACTIONS(606), + [anon_sym_LT_LT_EQ] = ACTIONS(606), + [anon_sym_GT_GT_EQ] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(608), + [sym_integer_literal] = ACTIONS(606), + [aux_sym_string_literal_token1] = ACTIONS(606), + [sym_char_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(608), + [anon_sym_false] = ACTIONS(608), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(608), + [sym_super] = ACTIONS(608), + [sym_crate] = ACTIONS(608), + [sym_metavariable] = ACTIONS(606), + [sym_raw_string_literal] = ACTIONS(606), + [sym_float_literal] = ACTIONS(606), [sym_block_comment] = ACTIONS(3), }, - [239] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1793), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1784), + [243] = { + [sym_identifier] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_ref] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym__] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [sym_mutable_specifier] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [sym_identifier] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_as] = ACTIONS(666), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_union] = ACTIONS(666), + [anon_sym_POUND] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(664), + [anon_sym_ref] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(666), + [anon_sym_COLON_COLON] = ACTIONS(664), + [anon_sym__] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_mutable_specifier] = ACTIONS(666), + [anon_sym_DOT_DOT] = ACTIONS(666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(664), + [anon_sym_PIPE_PIPE] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(664), + [anon_sym_DASH_EQ] = ACTIONS(664), + [anon_sym_STAR_EQ] = ACTIONS(664), + [anon_sym_SLASH_EQ] = ACTIONS(664), + [anon_sym_PERCENT_EQ] = ACTIONS(664), + [anon_sym_AMP_EQ] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(664), + [anon_sym_LT_LT_EQ] = ACTIONS(664), + [anon_sym_GT_GT_EQ] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(666), + [sym_integer_literal] = ACTIONS(664), + [aux_sym_string_literal_token1] = ACTIONS(664), + [sym_char_literal] = ACTIONS(664), + [anon_sym_true] = ACTIONS(666), + [anon_sym_false] = ACTIONS(666), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(666), + [sym_super] = ACTIONS(666), + [sym_crate] = ACTIONS(666), + [sym_metavariable] = ACTIONS(664), + [sym_raw_string_literal] = ACTIONS(664), + [sym_float_literal] = ACTIONS(664), + [sym_block_comment] = ACTIONS(3), + }, + [245] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2011), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2005), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2012), + [sym_type_binding] = STATE(2276), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), [sym_empty_type] = STATE(1392), [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [sym_block] = STATE(2012), - [sym__literal] = STATE(2012), - [sym_string_literal] = STATE(2164), - [sym_boolean_literal] = STATE(2164), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [sym_block] = STATE(2276), + [sym__literal] = STATE(2276), + [sym_string_literal] = STATE(2286), + [sym_boolean_literal] = STATE(2286), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_integer_literal] = ACTIONS(900), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(900), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(900), - [sym_float_literal] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [240] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1775), + [246] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1799), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(1798), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2062), + [sym_type_binding] = STATE(2047), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), [sym_empty_type] = STATE(1392), [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [sym_block] = STATE(2062), - [sym__literal] = STATE(2062), - [sym_string_literal] = STATE(2164), - [sym_boolean_literal] = STATE(2164), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [sym_block] = STATE(2047), + [sym__literal] = STATE(2047), + [sym_string_literal] = STATE(2286), + [sym_boolean_literal] = STATE(2286), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_integer_literal] = ACTIONS(900), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(900), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(900), - [sym_float_literal] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [241] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1913), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1914), + [247] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1820), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(1819), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2265), + [sym_type_binding] = STATE(2065), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), [sym_empty_type] = STATE(1392), [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [sym_block] = STATE(2265), - [sym__literal] = STATE(2265), - [sym_string_literal] = STATE(2164), - [sym_boolean_literal] = STATE(2164), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [sym_block] = STATE(2065), + [sym__literal] = STATE(2065), + [sym_string_literal] = STATE(2286), + [sym_boolean_literal] = STATE(2286), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_integer_literal] = ACTIONS(900), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(900), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(900), - [sym_float_literal] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [242] = { - [sym_empty_statement] = STATE(246), - [sym_macro_definition] = STATE(246), - [sym_attribute_item] = STATE(246), - [sym_inner_attribute_item] = STATE(246), - [sym_mod_item] = STATE(246), - [sym_foreign_mod_item] = STATE(246), - [sym_struct_item] = STATE(246), - [sym_union_item] = STATE(246), - [sym_enum_item] = STATE(246), - [sym_extern_crate_declaration] = STATE(246), - [sym_const_item] = STATE(246), - [sym_static_item] = STATE(246), - [sym_type_item] = STATE(246), - [sym_function_item] = STATE(246), - [sym_function_signature_item] = STATE(246), - [sym_function_modifiers] = STATE(2522), - [sym_impl_item] = STATE(246), - [sym_trait_item] = STATE(246), - [sym_associated_type] = STATE(246), - [sym_let_declaration] = STATE(246), - [sym_use_declaration] = STATE(246), - [sym_extern_modifier] = STATE(1525), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2353), - [sym_generic_type_with_turbofish] = STATE(2532), - [sym_macro_invocation] = STATE(246), - [sym_scoped_identifier] = STATE(2300), - [aux_sym_declaration_list_repeat1] = STATE(246), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_macro_rules_BANG] = ACTIONS(924), - [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(690), - [anon_sym_const] = ACTIONS(930), - [anon_sym_default] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_fn] = ACTIONS(936), - [anon_sym_impl] = ACTIONS(938), - [anon_sym_let] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(942), + [248] = { + [sym_empty_statement] = STATE(249), + [sym_macro_definition] = STATE(249), + [sym_attribute_item] = STATE(249), + [sym_inner_attribute_item] = STATE(249), + [sym_mod_item] = STATE(249), + [sym_foreign_mod_item] = STATE(249), + [sym_struct_item] = STATE(249), + [sym_union_item] = STATE(249), + [sym_enum_item] = STATE(249), + [sym_extern_crate_declaration] = STATE(249), + [sym_const_item] = STATE(249), + [sym_static_item] = STATE(249), + [sym_type_item] = STATE(249), + [sym_function_item] = STATE(249), + [sym_function_signature_item] = STATE(249), + [sym_function_modifiers] = STATE(2525), + [sym_impl_item] = STATE(249), + [sym_trait_item] = STATE(249), + [sym_associated_type] = STATE(249), + [sym_let_declaration] = STATE(249), + [sym_use_declaration] = STATE(249), + [sym_extern_modifier] = STATE(1504), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2339), + [sym_generic_type_with_turbofish] = STATE(2341), + [sym_macro_invocation] = STATE(249), + [sym_scoped_identifier] = STATE(2242), + [aux_sym_declaration_list_repeat1] = STATE(249), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_macro_rules_BANG] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_u8] = ACTIONS(932), + [anon_sym_i8] = ACTIONS(932), + [anon_sym_u16] = ACTIONS(932), + [anon_sym_i16] = ACTIONS(932), + [anon_sym_u32] = ACTIONS(932), + [anon_sym_i32] = ACTIONS(932), + [anon_sym_u64] = ACTIONS(932), + [anon_sym_i64] = ACTIONS(932), + [anon_sym_u128] = ACTIONS(932), + [anon_sym_i128] = ACTIONS(932), + [anon_sym_isize] = ACTIONS(932), + [anon_sym_usize] = ACTIONS(932), + [anon_sym_f32] = ACTIONS(932), + [anon_sym_f64] = ACTIONS(932), + [anon_sym_bool] = ACTIONS(932), + [anon_sym_str] = ACTIONS(932), + [anon_sym_char] = ACTIONS(932), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(934), + [anon_sym_default] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_fn] = ACTIONS(940), + [anon_sym_impl] = ACTIONS(942), + [anon_sym_let] = ACTIONS(944), + [anon_sym_mod] = ACTIONS(946), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_trait] = ACTIONS(948), - [anon_sym_type] = ACTIONS(950), - [anon_sym_union] = ACTIONS(952), - [anon_sym_unsafe] = ACTIONS(954), - [anon_sym_use] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(960), + [anon_sym_static] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_trait] = ACTIONS(952), + [anon_sym_type] = ACTIONS(954), + [anon_sym_union] = ACTIONS(956), + [anon_sym_unsafe] = ACTIONS(958), + [anon_sym_use] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(964), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(962), + [anon_sym_COLON_COLON] = ACTIONS(966), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(964), - [sym_super] = ACTIONS(964), - [sym_crate] = ACTIONS(966), - [sym_metavariable] = ACTIONS(968), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, - [243] = { - [sym_empty_statement] = STATE(242), - [sym_macro_definition] = STATE(242), - [sym_attribute_item] = STATE(242), - [sym_inner_attribute_item] = STATE(242), - [sym_mod_item] = STATE(242), - [sym_foreign_mod_item] = STATE(242), - [sym_struct_item] = STATE(242), - [sym_union_item] = STATE(242), - [sym_enum_item] = STATE(242), - [sym_extern_crate_declaration] = STATE(242), - [sym_const_item] = STATE(242), - [sym_static_item] = STATE(242), - [sym_type_item] = STATE(242), - [sym_function_item] = STATE(242), - [sym_function_signature_item] = STATE(242), - [sym_function_modifiers] = STATE(2522), - [sym_impl_item] = STATE(242), - [sym_trait_item] = STATE(242), - [sym_associated_type] = STATE(242), - [sym_let_declaration] = STATE(242), - [sym_use_declaration] = STATE(242), - [sym_extern_modifier] = STATE(1525), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2353), - [sym_generic_type_with_turbofish] = STATE(2532), - [sym_macro_invocation] = STATE(242), - [sym_scoped_identifier] = STATE(2300), - [aux_sym_declaration_list_repeat1] = STATE(242), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_macro_rules_BANG] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(970), - [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(690), - [anon_sym_const] = ACTIONS(930), - [anon_sym_default] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_fn] = ACTIONS(936), - [anon_sym_impl] = ACTIONS(938), - [anon_sym_let] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(942), + [249] = { + [sym_empty_statement] = STATE(253), + [sym_macro_definition] = STATE(253), + [sym_attribute_item] = STATE(253), + [sym_inner_attribute_item] = STATE(253), + [sym_mod_item] = STATE(253), + [sym_foreign_mod_item] = STATE(253), + [sym_struct_item] = STATE(253), + [sym_union_item] = STATE(253), + [sym_enum_item] = STATE(253), + [sym_extern_crate_declaration] = STATE(253), + [sym_const_item] = STATE(253), + [sym_static_item] = STATE(253), + [sym_type_item] = STATE(253), + [sym_function_item] = STATE(253), + [sym_function_signature_item] = STATE(253), + [sym_function_modifiers] = STATE(2525), + [sym_impl_item] = STATE(253), + [sym_trait_item] = STATE(253), + [sym_associated_type] = STATE(253), + [sym_let_declaration] = STATE(253), + [sym_use_declaration] = STATE(253), + [sym_extern_modifier] = STATE(1504), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2339), + [sym_generic_type_with_turbofish] = STATE(2341), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2242), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_macro_rules_BANG] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_u8] = ACTIONS(932), + [anon_sym_i8] = ACTIONS(932), + [anon_sym_u16] = ACTIONS(932), + [anon_sym_i16] = ACTIONS(932), + [anon_sym_u32] = ACTIONS(932), + [anon_sym_i32] = ACTIONS(932), + [anon_sym_u64] = ACTIONS(932), + [anon_sym_i64] = ACTIONS(932), + [anon_sym_u128] = ACTIONS(932), + [anon_sym_i128] = ACTIONS(932), + [anon_sym_isize] = ACTIONS(932), + [anon_sym_usize] = ACTIONS(932), + [anon_sym_f32] = ACTIONS(932), + [anon_sym_f64] = ACTIONS(932), + [anon_sym_bool] = ACTIONS(932), + [anon_sym_str] = ACTIONS(932), + [anon_sym_char] = ACTIONS(932), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(934), + [anon_sym_default] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_fn] = ACTIONS(940), + [anon_sym_impl] = ACTIONS(942), + [anon_sym_let] = ACTIONS(944), + [anon_sym_mod] = ACTIONS(946), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_trait] = ACTIONS(948), - [anon_sym_type] = ACTIONS(950), - [anon_sym_union] = ACTIONS(952), - [anon_sym_unsafe] = ACTIONS(954), - [anon_sym_use] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(960), + [anon_sym_static] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_trait] = ACTIONS(952), + [anon_sym_type] = ACTIONS(954), + [anon_sym_union] = ACTIONS(956), + [anon_sym_unsafe] = ACTIONS(958), + [anon_sym_use] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(964), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(962), + [anon_sym_COLON_COLON] = ACTIONS(966), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(964), - [sym_super] = ACTIONS(964), - [sym_crate] = ACTIONS(966), - [sym_metavariable] = ACTIONS(968), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, - [244] = { - [sym__token_pattern] = STATE(244), - [sym_token_tree_pattern] = STATE(244), - [sym_token_binding_pattern] = STATE(244), - [sym_token_repetition_pattern] = STATE(244), - [sym__literal] = STATE(244), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_RBRACK] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_u8] = ACTIONS(972), - [anon_sym_i8] = ACTIONS(972), - [anon_sym_u16] = ACTIONS(972), - [anon_sym_i16] = ACTIONS(972), - [anon_sym_u32] = ACTIONS(972), - [anon_sym_i32] = ACTIONS(972), - [anon_sym_u64] = ACTIONS(972), - [anon_sym_i64] = ACTIONS(972), - [anon_sym_u128] = ACTIONS(972), - [anon_sym_i128] = ACTIONS(972), - [anon_sym_isize] = ACTIONS(972), - [anon_sym_usize] = ACTIONS(972), - [anon_sym_f32] = ACTIONS(972), - [anon_sym_f64] = ACTIONS(972), - [anon_sym_bool] = ACTIONS(972), - [anon_sym_str] = ACTIONS(972), - [anon_sym_char] = ACTIONS(972), - [aux_sym__non_special_token_token1] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_async] = ACTIONS(972), - [anon_sym_await] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_fn] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_impl] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(972), - [anon_sym_pub] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_static] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_trait] = ACTIONS(972), - [anon_sym_type] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_unsafe] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_where] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [sym_mutable_specifier] = ACTIONS(972), - [sym_integer_literal] = ACTIONS(989), - [aux_sym_string_literal_token1] = ACTIONS(992), - [sym_char_literal] = ACTIONS(989), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(972), - [sym_super] = ACTIONS(972), - [sym_crate] = ACTIONS(972), - [sym_metavariable] = ACTIONS(1000), - [sym_raw_string_literal] = ACTIONS(989), - [sym_float_literal] = ACTIONS(989), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { - [sym_empty_statement] = STATE(247), - [sym_macro_definition] = STATE(247), - [sym_attribute_item] = STATE(247), - [sym_inner_attribute_item] = STATE(247), - [sym_mod_item] = STATE(247), - [sym_foreign_mod_item] = STATE(247), - [sym_struct_item] = STATE(247), - [sym_union_item] = STATE(247), - [sym_enum_item] = STATE(247), - [sym_extern_crate_declaration] = STATE(247), - [sym_const_item] = STATE(247), - [sym_static_item] = STATE(247), - [sym_type_item] = STATE(247), - [sym_function_item] = STATE(247), - [sym_function_signature_item] = STATE(247), - [sym_function_modifiers] = STATE(2522), - [sym_impl_item] = STATE(247), - [sym_trait_item] = STATE(247), - [sym_associated_type] = STATE(247), - [sym_let_declaration] = STATE(247), - [sym_use_declaration] = STATE(247), - [sym_extern_modifier] = STATE(1525), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2353), - [sym_generic_type_with_turbofish] = STATE(2532), - [sym_macro_invocation] = STATE(247), - [sym_scoped_identifier] = STATE(2300), - [aux_sym_declaration_list_repeat1] = STATE(247), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_macro_rules_BANG] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(1003), - [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(690), - [anon_sym_const] = ACTIONS(930), - [anon_sym_default] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_fn] = ACTIONS(936), - [anon_sym_impl] = ACTIONS(938), - [anon_sym_let] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(942), + [250] = { + [sym_empty_statement] = STATE(253), + [sym_macro_definition] = STATE(253), + [sym_attribute_item] = STATE(253), + [sym_inner_attribute_item] = STATE(253), + [sym_mod_item] = STATE(253), + [sym_foreign_mod_item] = STATE(253), + [sym_struct_item] = STATE(253), + [sym_union_item] = STATE(253), + [sym_enum_item] = STATE(253), + [sym_extern_crate_declaration] = STATE(253), + [sym_const_item] = STATE(253), + [sym_static_item] = STATE(253), + [sym_type_item] = STATE(253), + [sym_function_item] = STATE(253), + [sym_function_signature_item] = STATE(253), + [sym_function_modifiers] = STATE(2525), + [sym_impl_item] = STATE(253), + [sym_trait_item] = STATE(253), + [sym_associated_type] = STATE(253), + [sym_let_declaration] = STATE(253), + [sym_use_declaration] = STATE(253), + [sym_extern_modifier] = STATE(1504), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2339), + [sym_generic_type_with_turbofish] = STATE(2341), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2242), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_macro_rules_BANG] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_u8] = ACTIONS(932), + [anon_sym_i8] = ACTIONS(932), + [anon_sym_u16] = ACTIONS(932), + [anon_sym_i16] = ACTIONS(932), + [anon_sym_u32] = ACTIONS(932), + [anon_sym_i32] = ACTIONS(932), + [anon_sym_u64] = ACTIONS(932), + [anon_sym_i64] = ACTIONS(932), + [anon_sym_u128] = ACTIONS(932), + [anon_sym_i128] = ACTIONS(932), + [anon_sym_isize] = ACTIONS(932), + [anon_sym_usize] = ACTIONS(932), + [anon_sym_f32] = ACTIONS(932), + [anon_sym_f64] = ACTIONS(932), + [anon_sym_bool] = ACTIONS(932), + [anon_sym_str] = ACTIONS(932), + [anon_sym_char] = ACTIONS(932), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(934), + [anon_sym_default] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_fn] = ACTIONS(940), + [anon_sym_impl] = ACTIONS(942), + [anon_sym_let] = ACTIONS(944), + [anon_sym_mod] = ACTIONS(946), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_trait] = ACTIONS(948), - [anon_sym_type] = ACTIONS(950), - [anon_sym_union] = ACTIONS(952), - [anon_sym_unsafe] = ACTIONS(954), - [anon_sym_use] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(960), + [anon_sym_static] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_trait] = ACTIONS(952), + [anon_sym_type] = ACTIONS(954), + [anon_sym_union] = ACTIONS(956), + [anon_sym_unsafe] = ACTIONS(958), + [anon_sym_use] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(964), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(962), + [anon_sym_COLON_COLON] = ACTIONS(966), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(964), - [sym_super] = ACTIONS(964), - [sym_crate] = ACTIONS(966), - [sym_metavariable] = ACTIONS(968), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, - [246] = { - [sym_empty_statement] = STATE(246), - [sym_macro_definition] = STATE(246), - [sym_attribute_item] = STATE(246), - [sym_inner_attribute_item] = STATE(246), - [sym_mod_item] = STATE(246), - [sym_foreign_mod_item] = STATE(246), - [sym_struct_item] = STATE(246), - [sym_union_item] = STATE(246), - [sym_enum_item] = STATE(246), - [sym_extern_crate_declaration] = STATE(246), - [sym_const_item] = STATE(246), - [sym_static_item] = STATE(246), - [sym_type_item] = STATE(246), - [sym_function_item] = STATE(246), - [sym_function_signature_item] = STATE(246), - [sym_function_modifiers] = STATE(2522), - [sym_impl_item] = STATE(246), - [sym_trait_item] = STATE(246), - [sym_associated_type] = STATE(246), - [sym_let_declaration] = STATE(246), - [sym_use_declaration] = STATE(246), - [sym_extern_modifier] = STATE(1525), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2353), - [sym_generic_type_with_turbofish] = STATE(2532), - [sym_macro_invocation] = STATE(246), - [sym_scoped_identifier] = STATE(2300), - [aux_sym_declaration_list_repeat1] = STATE(246), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_macro_rules_BANG] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_u8] = ACTIONS(1016), - [anon_sym_i8] = ACTIONS(1016), - [anon_sym_u16] = ACTIONS(1016), - [anon_sym_i16] = ACTIONS(1016), - [anon_sym_u32] = ACTIONS(1016), - [anon_sym_i32] = ACTIONS(1016), - [anon_sym_u64] = ACTIONS(1016), - [anon_sym_i64] = ACTIONS(1016), - [anon_sym_u128] = ACTIONS(1016), - [anon_sym_i128] = ACTIONS(1016), - [anon_sym_isize] = ACTIONS(1016), - [anon_sym_usize] = ACTIONS(1016), - [anon_sym_f32] = ACTIONS(1016), - [anon_sym_f64] = ACTIONS(1016), - [anon_sym_bool] = ACTIONS(1016), - [anon_sym_str] = ACTIONS(1016), - [anon_sym_char] = ACTIONS(1016), - [anon_sym_async] = ACTIONS(1019), - [anon_sym_const] = ACTIONS(1022), - [anon_sym_default] = ACTIONS(1025), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_fn] = ACTIONS(1031), - [anon_sym_impl] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1040), - [anon_sym_pub] = ACTIONS(1043), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1052), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1061), - [anon_sym_use] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(1067), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(1076), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1079), - [sym_super] = ACTIONS(1079), - [sym_crate] = ACTIONS(1082), - [sym_metavariable] = ACTIONS(1085), + [251] = { + [sym__token_pattern] = STATE(251), + [sym_token_tree_pattern] = STATE(251), + [sym_token_binding_pattern] = STATE(251), + [sym_token_repetition_pattern] = STATE(251), + [sym__literal] = STATE(251), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_RBRACK] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_u8] = ACTIONS(978), + [anon_sym_i8] = ACTIONS(978), + [anon_sym_u16] = ACTIONS(978), + [anon_sym_i16] = ACTIONS(978), + [anon_sym_u32] = ACTIONS(978), + [anon_sym_i32] = ACTIONS(978), + [anon_sym_u64] = ACTIONS(978), + [anon_sym_i64] = ACTIONS(978), + [anon_sym_u128] = ACTIONS(978), + [anon_sym_i128] = ACTIONS(978), + [anon_sym_isize] = ACTIONS(978), + [anon_sym_usize] = ACTIONS(978), + [anon_sym_f32] = ACTIONS(978), + [anon_sym_f64] = ACTIONS(978), + [anon_sym_bool] = ACTIONS(978), + [anon_sym_str] = ACTIONS(978), + [anon_sym_char] = ACTIONS(978), + [aux_sym__non_special_token_token1] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_async] = ACTIONS(978), + [anon_sym_await] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_enum] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_impl] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_mod] = ACTIONS(978), + [anon_sym_pub] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_static] = ACTIONS(978), + [anon_sym_struct] = ACTIONS(978), + [anon_sym_trait] = ACTIONS(978), + [anon_sym_type] = ACTIONS(978), + [anon_sym_union] = ACTIONS(978), + [anon_sym_unsafe] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_where] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [sym_mutable_specifier] = ACTIONS(978), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(998), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(1001), + [anon_sym_false] = ACTIONS(1001), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(978), + [sym_metavariable] = ACTIONS(1006), + [sym_raw_string_literal] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), [sym_block_comment] = ACTIONS(3), }, - [247] = { - [sym_empty_statement] = STATE(246), - [sym_macro_definition] = STATE(246), - [sym_attribute_item] = STATE(246), - [sym_inner_attribute_item] = STATE(246), - [sym_mod_item] = STATE(246), - [sym_foreign_mod_item] = STATE(246), - [sym_struct_item] = STATE(246), - [sym_union_item] = STATE(246), - [sym_enum_item] = STATE(246), - [sym_extern_crate_declaration] = STATE(246), - [sym_const_item] = STATE(246), - [sym_static_item] = STATE(246), - [sym_type_item] = STATE(246), - [sym_function_item] = STATE(246), - [sym_function_signature_item] = STATE(246), - [sym_function_modifiers] = STATE(2522), - [sym_impl_item] = STATE(246), - [sym_trait_item] = STATE(246), - [sym_associated_type] = STATE(246), - [sym_let_declaration] = STATE(246), - [sym_use_declaration] = STATE(246), - [sym_extern_modifier] = STATE(1525), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2353), - [sym_generic_type_with_turbofish] = STATE(2532), - [sym_macro_invocation] = STATE(246), - [sym_scoped_identifier] = STATE(2300), - [aux_sym_declaration_list_repeat1] = STATE(246), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_macro_rules_BANG] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(1088), - [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(690), - [anon_sym_const] = ACTIONS(930), - [anon_sym_default] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_fn] = ACTIONS(936), - [anon_sym_impl] = ACTIONS(938), - [anon_sym_let] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(942), + [252] = { + [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(2525), + [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(1504), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2339), + [sym_generic_type_with_turbofish] = STATE(2341), + [sym_macro_invocation] = STATE(250), + [sym_scoped_identifier] = STATE(2242), + [aux_sym_declaration_list_repeat1] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_macro_rules_BANG] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_u8] = ACTIONS(932), + [anon_sym_i8] = ACTIONS(932), + [anon_sym_u16] = ACTIONS(932), + [anon_sym_i16] = ACTIONS(932), + [anon_sym_u32] = ACTIONS(932), + [anon_sym_i32] = ACTIONS(932), + [anon_sym_u64] = ACTIONS(932), + [anon_sym_i64] = ACTIONS(932), + [anon_sym_u128] = ACTIONS(932), + [anon_sym_i128] = ACTIONS(932), + [anon_sym_isize] = ACTIONS(932), + [anon_sym_usize] = ACTIONS(932), + [anon_sym_f32] = ACTIONS(932), + [anon_sym_f64] = ACTIONS(932), + [anon_sym_bool] = ACTIONS(932), + [anon_sym_str] = ACTIONS(932), + [anon_sym_char] = ACTIONS(932), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(934), + [anon_sym_default] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_fn] = ACTIONS(940), + [anon_sym_impl] = ACTIONS(942), + [anon_sym_let] = ACTIONS(944), + [anon_sym_mod] = ACTIONS(946), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_trait] = ACTIONS(948), - [anon_sym_type] = ACTIONS(950), - [anon_sym_union] = ACTIONS(952), - [anon_sym_unsafe] = ACTIONS(954), - [anon_sym_use] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(960), + [anon_sym_static] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_trait] = ACTIONS(952), + [anon_sym_type] = ACTIONS(954), + [anon_sym_union] = ACTIONS(956), + [anon_sym_unsafe] = ACTIONS(958), + [anon_sym_use] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(964), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(962), + [anon_sym_COLON_COLON] = ACTIONS(966), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(964), - [sym_super] = ACTIONS(964), - [sym_crate] = ACTIONS(966), - [sym_metavariable] = ACTIONS(968), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, - [248] = { - [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), + [253] = { + [sym_empty_statement] = STATE(253), + [sym_macro_definition] = STATE(253), + [sym_attribute_item] = STATE(253), + [sym_inner_attribute_item] = STATE(253), + [sym_mod_item] = STATE(253), + [sym_foreign_mod_item] = STATE(253), + [sym_struct_item] = STATE(253), + [sym_union_item] = STATE(253), + [sym_enum_item] = STATE(253), + [sym_extern_crate_declaration] = STATE(253), + [sym_const_item] = STATE(253), + [sym_static_item] = STATE(253), + [sym_type_item] = STATE(253), + [sym_function_item] = STATE(253), + [sym_function_signature_item] = STATE(253), + [sym_function_modifiers] = STATE(2525), + [sym_impl_item] = STATE(253), + [sym_trait_item] = STATE(253), + [sym_associated_type] = STATE(253), + [sym_let_declaration] = STATE(253), + [sym_use_declaration] = STATE(253), + [sym_extern_modifier] = STATE(1504), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2339), + [sym_generic_type_with_turbofish] = STATE(2341), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2242), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_macro_rules_BANG] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(1022), + [anon_sym_i8] = ACTIONS(1022), + [anon_sym_u16] = ACTIONS(1022), + [anon_sym_i16] = ACTIONS(1022), + [anon_sym_u32] = ACTIONS(1022), + [anon_sym_i32] = ACTIONS(1022), + [anon_sym_u64] = ACTIONS(1022), + [anon_sym_i64] = ACTIONS(1022), + [anon_sym_u128] = ACTIONS(1022), + [anon_sym_i128] = ACTIONS(1022), + [anon_sym_isize] = ACTIONS(1022), + [anon_sym_usize] = ACTIONS(1022), + [anon_sym_f32] = ACTIONS(1022), + [anon_sym_f64] = ACTIONS(1022), + [anon_sym_bool] = ACTIONS(1022), + [anon_sym_str] = ACTIONS(1022), + [anon_sym_char] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1025), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1034), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1043), + [anon_sym_mod] = ACTIONS(1046), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1055), + [anon_sym_trait] = ACTIONS(1058), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_unsafe] = ACTIONS(1067), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(1073), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1085), + [sym_super] = ACTIONS(1085), + [sym_crate] = ACTIONS(1088), + [sym_metavariable] = ACTIONS(1091), [sym_block_comment] = ACTIONS(3), }, - [249] = { + [254] = { [ts_builtin_sym_end] = ACTIONS(1094), [sym_identifier] = ACTIONS(1096), [anon_sym_SEMI] = ACTIONS(1094), @@ -40792,7 +41635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1094), [sym_block_comment] = ACTIONS(3), }, - [250] = { + [255] = { [ts_builtin_sym_end] = ACTIONS(1098), [sym_identifier] = ACTIONS(1100), [anon_sym_SEMI] = ACTIONS(1098), @@ -40869,7 +41712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1098), [sym_block_comment] = ACTIONS(3), }, - [251] = { + [256] = { [ts_builtin_sym_end] = ACTIONS(1102), [sym_identifier] = ACTIONS(1104), [anon_sym_SEMI] = ACTIONS(1102), @@ -40946,7 +41789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1102), [sym_block_comment] = ACTIONS(3), }, - [252] = { + [257] = { [ts_builtin_sym_end] = ACTIONS(1106), [sym_identifier] = ACTIONS(1108), [anon_sym_SEMI] = ACTIONS(1106), @@ -41023,7 +41866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1106), [sym_block_comment] = ACTIONS(3), }, - [253] = { + [258] = { [ts_builtin_sym_end] = ACTIONS(1110), [sym_identifier] = ACTIONS(1112), [anon_sym_SEMI] = ACTIONS(1110), @@ -41100,7 +41943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1110), [sym_block_comment] = ACTIONS(3), }, - [254] = { + [259] = { [ts_builtin_sym_end] = ACTIONS(1114), [sym_identifier] = ACTIONS(1116), [anon_sym_SEMI] = ACTIONS(1114), @@ -41177,7 +42020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1114), [sym_block_comment] = ACTIONS(3), }, - [255] = { + [260] = { [ts_builtin_sym_end] = ACTIONS(1118), [sym_identifier] = ACTIONS(1120), [anon_sym_SEMI] = ACTIONS(1118), @@ -41254,7 +42097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1118), [sym_block_comment] = ACTIONS(3), }, - [256] = { + [261] = { [ts_builtin_sym_end] = ACTIONS(1122), [sym_identifier] = ACTIONS(1124), [anon_sym_SEMI] = ACTIONS(1122), @@ -41331,7 +42174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1122), [sym_block_comment] = ACTIONS(3), }, - [257] = { + [262] = { [ts_builtin_sym_end] = ACTIONS(1126), [sym_identifier] = ACTIONS(1128), [anon_sym_SEMI] = ACTIONS(1126), @@ -41408,7 +42251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1126), [sym_block_comment] = ACTIONS(3), }, - [258] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1130), [sym_identifier] = ACTIONS(1132), [anon_sym_SEMI] = ACTIONS(1130), @@ -41485,7 +42328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1130), [sym_block_comment] = ACTIONS(3), }, - [259] = { + [264] = { [ts_builtin_sym_end] = ACTIONS(1134), [sym_identifier] = ACTIONS(1136), [anon_sym_SEMI] = ACTIONS(1134), @@ -41562,7 +42405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1134), [sym_block_comment] = ACTIONS(3), }, - [260] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1138), [sym_identifier] = ACTIONS(1140), [anon_sym_SEMI] = ACTIONS(1138), @@ -41639,7 +42482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1138), [sym_block_comment] = ACTIONS(3), }, - [261] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1142), [sym_identifier] = ACTIONS(1144), [anon_sym_SEMI] = ACTIONS(1142), @@ -41716,7 +42559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1142), [sym_block_comment] = ACTIONS(3), }, - [262] = { + [267] = { [ts_builtin_sym_end] = ACTIONS(1146), [sym_identifier] = ACTIONS(1148), [anon_sym_SEMI] = ACTIONS(1146), @@ -41793,7 +42636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1146), [sym_block_comment] = ACTIONS(3), }, - [263] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1150), [sym_identifier] = ACTIONS(1152), [anon_sym_SEMI] = ACTIONS(1150), @@ -41870,161 +42713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1150), [sym_block_comment] = ACTIONS(3), }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(404), - [sym_identifier] = ACTIONS(406), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_macro_rules_BANG] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_u8] = ACTIONS(406), - [anon_sym_i8] = ACTIONS(406), - [anon_sym_u16] = ACTIONS(406), - [anon_sym_i16] = ACTIONS(406), - [anon_sym_u32] = ACTIONS(406), - [anon_sym_i32] = ACTIONS(406), - [anon_sym_u64] = ACTIONS(406), - [anon_sym_i64] = ACTIONS(406), - [anon_sym_u128] = ACTIONS(406), - [anon_sym_i128] = ACTIONS(406), - [anon_sym_isize] = ACTIONS(406), - [anon_sym_usize] = ACTIONS(406), - [anon_sym_f32] = ACTIONS(406), - [anon_sym_f64] = ACTIONS(406), - [anon_sym_bool] = ACTIONS(406), - [anon_sym_str] = ACTIONS(406), - [anon_sym_char] = ACTIONS(406), - [anon_sym_SQUOTE] = ACTIONS(406), - [anon_sym_async] = ACTIONS(406), - [anon_sym_break] = ACTIONS(406), - [anon_sym_const] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(406), - [anon_sym_default] = ACTIONS(406), - [anon_sym_enum] = ACTIONS(406), - [anon_sym_fn] = ACTIONS(406), - [anon_sym_for] = ACTIONS(406), - [anon_sym_if] = ACTIONS(406), - [anon_sym_impl] = ACTIONS(406), - [anon_sym_let] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(406), - [anon_sym_match] = ACTIONS(406), - [anon_sym_mod] = ACTIONS(406), - [anon_sym_pub] = ACTIONS(406), - [anon_sym_return] = ACTIONS(406), - [anon_sym_static] = ACTIONS(406), - [anon_sym_struct] = ACTIONS(406), - [anon_sym_trait] = ACTIONS(406), - [anon_sym_type] = ACTIONS(406), - [anon_sym_union] = ACTIONS(406), - [anon_sym_unsafe] = ACTIONS(406), - [anon_sym_use] = ACTIONS(406), - [anon_sym_while] = ACTIONS(406), - [anon_sym_POUND] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(404), - [anon_sym_extern] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_COLON_COLON] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_yield] = ACTIONS(406), - [anon_sym_move] = ACTIONS(406), - [sym_integer_literal] = ACTIONS(404), - [aux_sym_string_literal_token1] = ACTIONS(404), - [sym_char_literal] = ACTIONS(404), - [anon_sym_true] = ACTIONS(406), - [anon_sym_false] = ACTIONS(406), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(406), - [sym_super] = ACTIONS(406), - [sym_crate] = ACTIONS(406), - [sym_metavariable] = ACTIONS(404), - [sym_raw_string_literal] = ACTIONS(404), - [sym_float_literal] = ACTIONS(404), - [sym_block_comment] = ACTIONS(3), - }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(512), - [sym_identifier] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_macro_rules_BANG] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_u8] = ACTIONS(514), - [anon_sym_i8] = ACTIONS(514), - [anon_sym_u16] = ACTIONS(514), - [anon_sym_i16] = ACTIONS(514), - [anon_sym_u32] = ACTIONS(514), - [anon_sym_i32] = ACTIONS(514), - [anon_sym_u64] = ACTIONS(514), - [anon_sym_i64] = ACTIONS(514), - [anon_sym_u128] = ACTIONS(514), - [anon_sym_i128] = ACTIONS(514), - [anon_sym_isize] = ACTIONS(514), - [anon_sym_usize] = ACTIONS(514), - [anon_sym_f32] = ACTIONS(514), - [anon_sym_f64] = ACTIONS(514), - [anon_sym_bool] = ACTIONS(514), - [anon_sym_str] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_async] = ACTIONS(514), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_fn] = ACTIONS(514), - [anon_sym_for] = ACTIONS(514), - [anon_sym_if] = ACTIONS(514), - [anon_sym_impl] = ACTIONS(514), - [anon_sym_let] = ACTIONS(514), - [anon_sym_loop] = ACTIONS(514), - [anon_sym_match] = ACTIONS(514), - [anon_sym_mod] = ACTIONS(514), - [anon_sym_pub] = ACTIONS(514), - [anon_sym_return] = ACTIONS(514), - [anon_sym_static] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(514), - [anon_sym_trait] = ACTIONS(514), - [anon_sym_type] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [anon_sym_unsafe] = ACTIONS(514), - [anon_sym_use] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_extern] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_COLON_COLON] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(514), - [anon_sym_move] = ACTIONS(514), - [sym_integer_literal] = ACTIONS(512), - [aux_sym_string_literal_token1] = ACTIONS(512), - [sym_char_literal] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(514), - [sym_super] = ACTIONS(514), - [sym_crate] = ACTIONS(514), - [sym_metavariable] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(512), - [sym_float_literal] = ACTIONS(512), - [sym_block_comment] = ACTIONS(3), - }, - [266] = { + [269] = { [ts_builtin_sym_end] = ACTIONS(1154), [sym_identifier] = ACTIONS(1156), [anon_sym_SEMI] = ACTIONS(1154), @@ -42101,7 +42790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1154), [sym_block_comment] = ACTIONS(3), }, - [267] = { + [270] = { [ts_builtin_sym_end] = ACTIONS(1158), [sym_identifier] = ACTIONS(1160), [anon_sym_SEMI] = ACTIONS(1158), @@ -42178,84 +42867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1158), [sym_block_comment] = ACTIONS(3), }, - [268] = { - [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_STAR] = 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_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(400), - [anon_sym_extern] = ACTIONS(402), - [anon_sym_LT] = ACTIONS(400), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(400), - [anon_sym_DOT_DOT] = ACTIONS(400), - [anon_sym_DASH] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(400), - [anon_sym_yield] = ACTIONS(402), - [anon_sym_move] = 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), - }, - [269] = { + [271] = { [ts_builtin_sym_end] = ACTIONS(1162), [sym_identifier] = ACTIONS(1164), [anon_sym_SEMI] = ACTIONS(1162), @@ -42332,7 +42944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [270] = { + [272] = { [ts_builtin_sym_end] = ACTIONS(1166), [sym_identifier] = ACTIONS(1168), [anon_sym_SEMI] = ACTIONS(1166), @@ -42409,7 +43021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1166), [sym_block_comment] = ACTIONS(3), }, - [271] = { + [273] = { [ts_builtin_sym_end] = ACTIONS(1170), [sym_identifier] = ACTIONS(1172), [anon_sym_SEMI] = ACTIONS(1170), @@ -42486,7 +43098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1170), [sym_block_comment] = ACTIONS(3), }, - [272] = { + [274] = { [ts_builtin_sym_end] = ACTIONS(1174), [sym_identifier] = ACTIONS(1176), [anon_sym_SEMI] = ACTIONS(1174), @@ -42563,7 +43175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1174), [sym_block_comment] = ACTIONS(3), }, - [273] = { + [275] = { [ts_builtin_sym_end] = ACTIONS(1178), [sym_identifier] = ACTIONS(1180), [anon_sym_SEMI] = ACTIONS(1178), @@ -42640,7 +43252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1178), [sym_block_comment] = ACTIONS(3), }, - [274] = { + [276] = { [ts_builtin_sym_end] = ACTIONS(1182), [sym_identifier] = ACTIONS(1184), [anon_sym_SEMI] = ACTIONS(1182), @@ -42717,7 +43329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1182), [sym_block_comment] = ACTIONS(3), }, - [275] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1186), [sym_identifier] = ACTIONS(1188), [anon_sym_SEMI] = ACTIONS(1186), @@ -42794,7 +43406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1186), [sym_block_comment] = ACTIONS(3), }, - [276] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1190), [sym_identifier] = ACTIONS(1192), [anon_sym_SEMI] = ACTIONS(1190), @@ -42871,7 +43483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1190), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [279] = { [ts_builtin_sym_end] = ACTIONS(1194), [sym_identifier] = ACTIONS(1196), [anon_sym_SEMI] = ACTIONS(1194), @@ -42948,3967 +43560,3712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1194), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [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), - }, - [279] = { - [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), - }, [280] = { - [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), + [sym_attribute_item] = STATE(533), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_macro_invocation] = STATE(2345), + [sym_scoped_identifier] = STATE(1557), + [sym_scoped_type_identifier] = STATE(1913), + [sym_match_arm] = STATE(488), + [sym_last_match_arm] = STATE(2402), + [sym_match_pattern] = STATE(2358), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1933), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(533), + [aux_sym_match_block_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACK] = 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_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), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [281] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [282] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_macro_rules_BANG] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_u8] = ACTIONS(1226), + [anon_sym_i8] = ACTIONS(1226), + [anon_sym_u16] = ACTIONS(1226), + [anon_sym_i16] = ACTIONS(1226), + [anon_sym_u32] = ACTIONS(1226), + [anon_sym_i32] = ACTIONS(1226), + [anon_sym_u64] = ACTIONS(1226), + [anon_sym_i64] = ACTIONS(1226), + [anon_sym_u128] = ACTIONS(1226), + [anon_sym_i128] = ACTIONS(1226), + [anon_sym_isize] = ACTIONS(1226), + [anon_sym_usize] = ACTIONS(1226), + [anon_sym_f32] = ACTIONS(1226), + [anon_sym_f64] = ACTIONS(1226), + [anon_sym_bool] = ACTIONS(1226), + [anon_sym_str] = ACTIONS(1226), + [anon_sym_char] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_impl] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1226), + [anon_sym_loop] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_mod] = ACTIONS(1226), + [anon_sym_pub] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_trait] = ACTIONS(1226), + [anon_sym_type] = ACTIONS(1226), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_unsafe] = ACTIONS(1226), + [anon_sym_use] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_move] = ACTIONS(1226), + [sym_integer_literal] = ACTIONS(1224), + [aux_sym_string_literal_token1] = ACTIONS(1224), + [sym_char_literal] = ACTIONS(1224), + [anon_sym_true] = ACTIONS(1226), + [anon_sym_false] = ACTIONS(1226), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1226), + [sym_super] = ACTIONS(1226), + [sym_crate] = ACTIONS(1226), + [sym_metavariable] = ACTIONS(1224), + [sym_raw_string_literal] = ACTIONS(1224), + [sym_float_literal] = ACTIONS(1224), [sym_block_comment] = ACTIONS(3), }, [283] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_macro_rules_BANG] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_u8] = ACTIONS(1230), + [anon_sym_i8] = ACTIONS(1230), + [anon_sym_u16] = ACTIONS(1230), + [anon_sym_i16] = ACTIONS(1230), + [anon_sym_u32] = ACTIONS(1230), + [anon_sym_i32] = ACTIONS(1230), + [anon_sym_u64] = ACTIONS(1230), + [anon_sym_i64] = ACTIONS(1230), + [anon_sym_u128] = ACTIONS(1230), + [anon_sym_i128] = ACTIONS(1230), + [anon_sym_isize] = ACTIONS(1230), + [anon_sym_usize] = ACTIONS(1230), + [anon_sym_f32] = ACTIONS(1230), + [anon_sym_f64] = ACTIONS(1230), + [anon_sym_bool] = ACTIONS(1230), + [anon_sym_str] = ACTIONS(1230), + [anon_sym_char] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [anon_sym_fn] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1230), + [anon_sym_loop] = ACTIONS(1230), + [anon_sym_match] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1230), + [anon_sym_pub] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_trait] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_union] = ACTIONS(1230), + [anon_sym_unsafe] = ACTIONS(1230), + [anon_sym_use] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_POUND] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_COLON_COLON] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_DOT_DOT] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_yield] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [sym_integer_literal] = ACTIONS(1228), + [aux_sym_string_literal_token1] = ACTIONS(1228), + [sym_char_literal] = ACTIONS(1228), + [anon_sym_true] = ACTIONS(1230), + [anon_sym_false] = ACTIONS(1230), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1230), + [sym_super] = ACTIONS(1230), + [sym_crate] = ACTIONS(1230), + [sym_metavariable] = ACTIONS(1228), + [sym_raw_string_literal] = ACTIONS(1228), + [sym_float_literal] = ACTIONS(1228), [sym_block_comment] = ACTIONS(3), }, [284] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_macro_rules_BANG] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_u8] = ACTIONS(1234), + [anon_sym_i8] = ACTIONS(1234), + [anon_sym_u16] = ACTIONS(1234), + [anon_sym_i16] = ACTIONS(1234), + [anon_sym_u32] = ACTIONS(1234), + [anon_sym_i32] = ACTIONS(1234), + [anon_sym_u64] = ACTIONS(1234), + [anon_sym_i64] = ACTIONS(1234), + [anon_sym_u128] = ACTIONS(1234), + [anon_sym_i128] = ACTIONS(1234), + [anon_sym_isize] = ACTIONS(1234), + [anon_sym_usize] = ACTIONS(1234), + [anon_sym_f32] = ACTIONS(1234), + [anon_sym_f64] = ACTIONS(1234), + [anon_sym_bool] = ACTIONS(1234), + [anon_sym_str] = ACTIONS(1234), + [anon_sym_char] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_fn] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_impl] = ACTIONS(1234), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_loop] = ACTIONS(1234), + [anon_sym_match] = ACTIONS(1234), + [anon_sym_mod] = ACTIONS(1234), + [anon_sym_pub] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_trait] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1234), + [anon_sym_use] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_POUND] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_COLON_COLON] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_DOT_DOT] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PIPE] = ACTIONS(1232), + [anon_sym_yield] = ACTIONS(1234), + [anon_sym_move] = ACTIONS(1234), + [sym_integer_literal] = ACTIONS(1232), + [aux_sym_string_literal_token1] = ACTIONS(1232), + [sym_char_literal] = ACTIONS(1232), + [anon_sym_true] = ACTIONS(1234), + [anon_sym_false] = ACTIONS(1234), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1232), + [sym_raw_string_literal] = ACTIONS(1232), + [sym_float_literal] = ACTIONS(1232), [sym_block_comment] = ACTIONS(3), }, [285] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_macro_rules_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_u8] = ACTIONS(1238), + [anon_sym_i8] = ACTIONS(1238), + [anon_sym_u16] = ACTIONS(1238), + [anon_sym_i16] = ACTIONS(1238), + [anon_sym_u32] = ACTIONS(1238), + [anon_sym_i32] = ACTIONS(1238), + [anon_sym_u64] = ACTIONS(1238), + [anon_sym_i64] = ACTIONS(1238), + [anon_sym_u128] = ACTIONS(1238), + [anon_sym_i128] = ACTIONS(1238), + [anon_sym_isize] = ACTIONS(1238), + [anon_sym_usize] = ACTIONS(1238), + [anon_sym_f32] = ACTIONS(1238), + [anon_sym_f64] = ACTIONS(1238), + [anon_sym_bool] = ACTIONS(1238), + [anon_sym_str] = ACTIONS(1238), + [anon_sym_char] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_fn] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_impl] = ACTIONS(1238), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_loop] = ACTIONS(1238), + [anon_sym_match] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1238), + [anon_sym_pub] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_trait] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_unsafe] = ACTIONS(1238), + [anon_sym_use] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_DOT_DOT] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_yield] = ACTIONS(1238), + [anon_sym_move] = ACTIONS(1238), + [sym_integer_literal] = ACTIONS(1236), + [aux_sym_string_literal_token1] = ACTIONS(1236), + [sym_char_literal] = ACTIONS(1236), + [anon_sym_true] = ACTIONS(1238), + [anon_sym_false] = ACTIONS(1238), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_crate] = ACTIONS(1238), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(1236), + [sym_float_literal] = ACTIONS(1236), [sym_block_comment] = ACTIONS(3), }, [286] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [287] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [288] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [289] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_macro_rules_BANG] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u128] = ACTIONS(1254), + [anon_sym_i128] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_str] = ACTIONS(1254), + [anon_sym_char] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_async] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_fn] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_impl] = ACTIONS(1254), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_loop] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1254), + [anon_sym_pub] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_trait] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_unsafe] = ACTIONS(1254), + [anon_sym_use] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_move] = ACTIONS(1254), + [sym_integer_literal] = ACTIONS(1252), + [aux_sym_string_literal_token1] = ACTIONS(1252), + [sym_char_literal] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_crate] = ACTIONS(1254), + [sym_metavariable] = ACTIONS(1252), + [sym_raw_string_literal] = ACTIONS(1252), + [sym_float_literal] = ACTIONS(1252), [sym_block_comment] = ACTIONS(3), }, [290] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [291] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [292] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_macro_rules_BANG] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_u8] = ACTIONS(1266), + [anon_sym_i8] = ACTIONS(1266), + [anon_sym_u16] = ACTIONS(1266), + [anon_sym_i16] = ACTIONS(1266), + [anon_sym_u32] = ACTIONS(1266), + [anon_sym_i32] = ACTIONS(1266), + [anon_sym_u64] = ACTIONS(1266), + [anon_sym_i64] = ACTIONS(1266), + [anon_sym_u128] = ACTIONS(1266), + [anon_sym_i128] = ACTIONS(1266), + [anon_sym_isize] = ACTIONS(1266), + [anon_sym_usize] = ACTIONS(1266), + [anon_sym_f32] = ACTIONS(1266), + [anon_sym_f64] = ACTIONS(1266), + [anon_sym_bool] = ACTIONS(1266), + [anon_sym_str] = ACTIONS(1266), + [anon_sym_char] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_fn] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_impl] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_pub] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_trait] = ACTIONS(1266), + [anon_sym_type] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_unsafe] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_move] = ACTIONS(1266), + [sym_integer_literal] = ACTIONS(1264), + [aux_sym_string_literal_token1] = ACTIONS(1264), + [sym_char_literal] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1266), + [sym_super] = ACTIONS(1266), + [sym_crate] = ACTIONS(1266), + [sym_metavariable] = ACTIONS(1264), + [sym_raw_string_literal] = ACTIONS(1264), + [sym_float_literal] = ACTIONS(1264), [sym_block_comment] = ACTIONS(3), }, [293] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_macro_rules_BANG] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_COLON_COLON] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_DOT_DOT] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_yield] = ACTIONS(1270), + [anon_sym_move] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1268), + [aux_sym_string_literal_token1] = ACTIONS(1268), + [sym_char_literal] = ACTIONS(1268), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1268), + [sym_raw_string_literal] = ACTIONS(1268), + [sym_float_literal] = ACTIONS(1268), [sym_block_comment] = ACTIONS(3), }, [294] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_macro_rules_BANG] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_u8] = ACTIONS(1274), + [anon_sym_i8] = ACTIONS(1274), + [anon_sym_u16] = ACTIONS(1274), + [anon_sym_i16] = ACTIONS(1274), + [anon_sym_u32] = ACTIONS(1274), + [anon_sym_i32] = ACTIONS(1274), + [anon_sym_u64] = ACTIONS(1274), + [anon_sym_i64] = ACTIONS(1274), + [anon_sym_u128] = ACTIONS(1274), + [anon_sym_i128] = ACTIONS(1274), + [anon_sym_isize] = ACTIONS(1274), + [anon_sym_usize] = ACTIONS(1274), + [anon_sym_f32] = ACTIONS(1274), + [anon_sym_f64] = ACTIONS(1274), + [anon_sym_bool] = ACTIONS(1274), + [anon_sym_str] = ACTIONS(1274), + [anon_sym_char] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_async] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_impl] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_mod] = ACTIONS(1274), + [anon_sym_pub] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_trait] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_unsafe] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_COLON_COLON] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_yield] = ACTIONS(1274), + [anon_sym_move] = ACTIONS(1274), + [sym_integer_literal] = ACTIONS(1272), + [aux_sym_string_literal_token1] = ACTIONS(1272), + [sym_char_literal] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1274), + [sym_super] = ACTIONS(1274), + [sym_crate] = ACTIONS(1274), + [sym_metavariable] = ACTIONS(1272), + [sym_raw_string_literal] = ACTIONS(1272), + [sym_float_literal] = ACTIONS(1272), [sym_block_comment] = ACTIONS(3), }, [295] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_macro_rules_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_u8] = ACTIONS(1278), + [anon_sym_i8] = ACTIONS(1278), + [anon_sym_u16] = ACTIONS(1278), + [anon_sym_i16] = ACTIONS(1278), + [anon_sym_u32] = ACTIONS(1278), + [anon_sym_i32] = ACTIONS(1278), + [anon_sym_u64] = ACTIONS(1278), + [anon_sym_i64] = ACTIONS(1278), + [anon_sym_u128] = ACTIONS(1278), + [anon_sym_i128] = ACTIONS(1278), + [anon_sym_isize] = ACTIONS(1278), + [anon_sym_usize] = ACTIONS(1278), + [anon_sym_f32] = ACTIONS(1278), + [anon_sym_f64] = ACTIONS(1278), + [anon_sym_bool] = ACTIONS(1278), + [anon_sym_str] = ACTIONS(1278), + [anon_sym_char] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_async] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_fn] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_impl] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_mod] = ACTIONS(1278), + [anon_sym_pub] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_trait] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_unsafe] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_COLON_COLON] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_yield] = ACTIONS(1278), + [anon_sym_move] = ACTIONS(1278), + [sym_integer_literal] = ACTIONS(1276), + [aux_sym_string_literal_token1] = ACTIONS(1276), + [sym_char_literal] = ACTIONS(1276), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1278), + [sym_super] = ACTIONS(1278), + [sym_crate] = ACTIONS(1278), + [sym_metavariable] = ACTIONS(1276), + [sym_raw_string_literal] = ACTIONS(1276), + [sym_float_literal] = ACTIONS(1276), [sym_block_comment] = ACTIONS(3), }, [296] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_macro_rules_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_fn] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_mod] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_trait] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_unsafe] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_DOT_DOT] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_yield] = ACTIONS(1282), + [anon_sym_move] = ACTIONS(1282), + [sym_integer_literal] = ACTIONS(1280), + [aux_sym_string_literal_token1] = ACTIONS(1280), + [sym_char_literal] = ACTIONS(1280), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_crate] = ACTIONS(1282), + [sym_metavariable] = ACTIONS(1280), + [sym_raw_string_literal] = ACTIONS(1280), + [sym_float_literal] = ACTIONS(1280), [sym_block_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_macro_rules_BANG] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_u8] = ACTIONS(1276), - [anon_sym_i8] = ACTIONS(1276), - [anon_sym_u16] = ACTIONS(1276), - [anon_sym_i16] = ACTIONS(1276), - [anon_sym_u32] = ACTIONS(1276), - [anon_sym_i32] = ACTIONS(1276), - [anon_sym_u64] = ACTIONS(1276), - [anon_sym_i64] = ACTIONS(1276), - [anon_sym_u128] = ACTIONS(1276), - [anon_sym_i128] = ACTIONS(1276), - [anon_sym_isize] = ACTIONS(1276), - [anon_sym_usize] = ACTIONS(1276), - [anon_sym_f32] = ACTIONS(1276), - [anon_sym_f64] = ACTIONS(1276), - [anon_sym_bool] = ACTIONS(1276), - [anon_sym_str] = ACTIONS(1276), - [anon_sym_char] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_async] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_fn] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_impl] = ACTIONS(1276), - [anon_sym_let] = ACTIONS(1276), - [anon_sym_loop] = ACTIONS(1276), - [anon_sym_match] = ACTIONS(1276), - [anon_sym_mod] = ACTIONS(1276), - [anon_sym_pub] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_trait] = ACTIONS(1276), - [anon_sym_type] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_unsafe] = ACTIONS(1276), - [anon_sym_use] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(1276), - [anon_sym_move] = ACTIONS(1276), - [sym_integer_literal] = ACTIONS(1274), - [aux_sym_string_literal_token1] = ACTIONS(1274), - [sym_char_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1276), - [sym_super] = ACTIONS(1276), - [sym_crate] = ACTIONS(1276), - [sym_metavariable] = ACTIONS(1274), - [sym_raw_string_literal] = ACTIONS(1274), - [sym_float_literal] = ACTIONS(1274), + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym_macro_rules_BANG] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_u8] = ACTIONS(1286), + [anon_sym_i8] = ACTIONS(1286), + [anon_sym_u16] = ACTIONS(1286), + [anon_sym_i16] = ACTIONS(1286), + [anon_sym_u32] = ACTIONS(1286), + [anon_sym_i32] = ACTIONS(1286), + [anon_sym_u64] = ACTIONS(1286), + [anon_sym_i64] = ACTIONS(1286), + [anon_sym_u128] = ACTIONS(1286), + [anon_sym_i128] = ACTIONS(1286), + [anon_sym_isize] = ACTIONS(1286), + [anon_sym_usize] = ACTIONS(1286), + [anon_sym_f32] = ACTIONS(1286), + [anon_sym_f64] = ACTIONS(1286), + [anon_sym_bool] = ACTIONS(1286), + [anon_sym_str] = ACTIONS(1286), + [anon_sym_char] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_fn] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_impl] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_loop] = ACTIONS(1286), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_mod] = ACTIONS(1286), + [anon_sym_pub] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_trait] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_unsafe] = ACTIONS(1286), + [anon_sym_use] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_POUND] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1286), + [anon_sym_move] = ACTIONS(1286), + [sym_integer_literal] = ACTIONS(1284), + [aux_sym_string_literal_token1] = ACTIONS(1284), + [sym_char_literal] = ACTIONS(1284), + [anon_sym_true] = ACTIONS(1286), + [anon_sym_false] = ACTIONS(1286), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1286), + [sym_super] = ACTIONS(1286), + [sym_crate] = ACTIONS(1286), + [sym_metavariable] = ACTIONS(1284), + [sym_raw_string_literal] = ACTIONS(1284), + [sym_float_literal] = ACTIONS(1284), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_macro_rules_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1280), - [anon_sym_i8] = ACTIONS(1280), - [anon_sym_u16] = ACTIONS(1280), - [anon_sym_i16] = ACTIONS(1280), - [anon_sym_u32] = ACTIONS(1280), - [anon_sym_i32] = ACTIONS(1280), - [anon_sym_u64] = ACTIONS(1280), - [anon_sym_i64] = ACTIONS(1280), - [anon_sym_u128] = ACTIONS(1280), - [anon_sym_i128] = ACTIONS(1280), - [anon_sym_isize] = ACTIONS(1280), - [anon_sym_usize] = ACTIONS(1280), - [anon_sym_f32] = ACTIONS(1280), - [anon_sym_f64] = ACTIONS(1280), - [anon_sym_bool] = ACTIONS(1280), - [anon_sym_str] = ACTIONS(1280), - [anon_sym_char] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_fn] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_impl] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_pub] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_trait] = ACTIONS(1280), - [anon_sym_type] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_unsafe] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1280), - [anon_sym_move] = ACTIONS(1280), - [sym_integer_literal] = ACTIONS(1278), - [aux_sym_string_literal_token1] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1280), - [sym_super] = ACTIONS(1280), - [sym_crate] = ACTIONS(1280), - [sym_metavariable] = ACTIONS(1278), - [sym_raw_string_literal] = ACTIONS(1278), - [sym_float_literal] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_macro_rules_BANG] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_u8] = ACTIONS(1290), + [anon_sym_i8] = ACTIONS(1290), + [anon_sym_u16] = ACTIONS(1290), + [anon_sym_i16] = ACTIONS(1290), + [anon_sym_u32] = ACTIONS(1290), + [anon_sym_i32] = ACTIONS(1290), + [anon_sym_u64] = ACTIONS(1290), + [anon_sym_i64] = ACTIONS(1290), + [anon_sym_u128] = ACTIONS(1290), + [anon_sym_i128] = ACTIONS(1290), + [anon_sym_isize] = ACTIONS(1290), + [anon_sym_usize] = ACTIONS(1290), + [anon_sym_f32] = ACTIONS(1290), + [anon_sym_f64] = ACTIONS(1290), + [anon_sym_bool] = ACTIONS(1290), + [anon_sym_str] = ACTIONS(1290), + [anon_sym_char] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_impl] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_mod] = ACTIONS(1290), + [anon_sym_pub] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_trait] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_unsafe] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_COLON_COLON] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_yield] = ACTIONS(1290), + [anon_sym_move] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1288), + [aux_sym_string_literal_token1] = ACTIONS(1288), + [sym_char_literal] = ACTIONS(1288), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1288), + [sym_raw_string_literal] = ACTIONS(1288), + [sym_float_literal] = ACTIONS(1288), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_macro_rules_BANG] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_u8] = ACTIONS(1284), - [anon_sym_i8] = ACTIONS(1284), - [anon_sym_u16] = ACTIONS(1284), - [anon_sym_i16] = ACTIONS(1284), - [anon_sym_u32] = ACTIONS(1284), - [anon_sym_i32] = ACTIONS(1284), - [anon_sym_u64] = ACTIONS(1284), - [anon_sym_i64] = ACTIONS(1284), - [anon_sym_u128] = ACTIONS(1284), - [anon_sym_i128] = ACTIONS(1284), - [anon_sym_isize] = ACTIONS(1284), - [anon_sym_usize] = ACTIONS(1284), - [anon_sym_f32] = ACTIONS(1284), - [anon_sym_f64] = ACTIONS(1284), - [anon_sym_bool] = ACTIONS(1284), - [anon_sym_str] = ACTIONS(1284), - [anon_sym_char] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_fn] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_impl] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_mod] = ACTIONS(1284), - [anon_sym_pub] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_trait] = ACTIONS(1284), - [anon_sym_type] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_move] = ACTIONS(1284), - [sym_integer_literal] = ACTIONS(1282), - [aux_sym_string_literal_token1] = ACTIONS(1282), - [sym_char_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1284), - [sym_super] = ACTIONS(1284), - [sym_crate] = ACTIONS(1284), - [sym_metavariable] = ACTIONS(1282), - [sym_raw_string_literal] = ACTIONS(1282), - [sym_float_literal] = ACTIONS(1282), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_macro_rules_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1294), + [anon_sym_i8] = ACTIONS(1294), + [anon_sym_u16] = ACTIONS(1294), + [anon_sym_i16] = ACTIONS(1294), + [anon_sym_u32] = ACTIONS(1294), + [anon_sym_i32] = ACTIONS(1294), + [anon_sym_u64] = ACTIONS(1294), + [anon_sym_i64] = ACTIONS(1294), + [anon_sym_u128] = ACTIONS(1294), + [anon_sym_i128] = ACTIONS(1294), + [anon_sym_isize] = ACTIONS(1294), + [anon_sym_usize] = ACTIONS(1294), + [anon_sym_f32] = ACTIONS(1294), + [anon_sym_f64] = ACTIONS(1294), + [anon_sym_bool] = ACTIONS(1294), + [anon_sym_str] = ACTIONS(1294), + [anon_sym_char] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_mod] = ACTIONS(1294), + [anon_sym_pub] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_trait] = ACTIONS(1294), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_unsafe] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_COLON_COLON] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1294), + [anon_sym_move] = ACTIONS(1294), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1292), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1294), + [sym_super] = ACTIONS(1294), + [sym_crate] = ACTIONS(1294), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1292), + [sym_float_literal] = ACTIONS(1292), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_macro_rules_BANG] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_u8] = ACTIONS(1288), - [anon_sym_i8] = ACTIONS(1288), - [anon_sym_u16] = ACTIONS(1288), - [anon_sym_i16] = ACTIONS(1288), - [anon_sym_u32] = ACTIONS(1288), - [anon_sym_i32] = ACTIONS(1288), - [anon_sym_u64] = ACTIONS(1288), - [anon_sym_i64] = ACTIONS(1288), - [anon_sym_u128] = ACTIONS(1288), - [anon_sym_i128] = ACTIONS(1288), - [anon_sym_isize] = ACTIONS(1288), - [anon_sym_usize] = ACTIONS(1288), - [anon_sym_f32] = ACTIONS(1288), - [anon_sym_f64] = ACTIONS(1288), - [anon_sym_bool] = ACTIONS(1288), - [anon_sym_str] = ACTIONS(1288), - [anon_sym_char] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_impl] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_pub] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_trait] = ACTIONS(1288), - [anon_sym_type] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_COLON_COLON] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1288), - [anon_sym_move] = ACTIONS(1288), - [sym_integer_literal] = ACTIONS(1286), - [aux_sym_string_literal_token1] = ACTIONS(1286), - [sym_char_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1288), - [sym_super] = ACTIONS(1288), - [sym_crate] = ACTIONS(1288), - [sym_metavariable] = ACTIONS(1286), - [sym_raw_string_literal] = ACTIONS(1286), - [sym_float_literal] = ACTIONS(1286), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_macro_rules_BANG] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_u8] = ACTIONS(1298), + [anon_sym_i8] = ACTIONS(1298), + [anon_sym_u16] = ACTIONS(1298), + [anon_sym_i16] = ACTIONS(1298), + [anon_sym_u32] = ACTIONS(1298), + [anon_sym_i32] = ACTIONS(1298), + [anon_sym_u64] = ACTIONS(1298), + [anon_sym_i64] = ACTIONS(1298), + [anon_sym_u128] = ACTIONS(1298), + [anon_sym_i128] = ACTIONS(1298), + [anon_sym_isize] = ACTIONS(1298), + [anon_sym_usize] = ACTIONS(1298), + [anon_sym_f32] = ACTIONS(1298), + [anon_sym_f64] = ACTIONS(1298), + [anon_sym_bool] = ACTIONS(1298), + [anon_sym_str] = ACTIONS(1298), + [anon_sym_char] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_impl] = ACTIONS(1298), + [anon_sym_let] = ACTIONS(1298), + [anon_sym_loop] = ACTIONS(1298), + [anon_sym_match] = ACTIONS(1298), + [anon_sym_mod] = ACTIONS(1298), + [anon_sym_pub] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_trait] = ACTIONS(1298), + [anon_sym_type] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_unsafe] = ACTIONS(1298), + [anon_sym_use] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_COLON_COLON] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1298), + [anon_sym_move] = ACTIONS(1298), + [sym_integer_literal] = ACTIONS(1296), + [aux_sym_string_literal_token1] = ACTIONS(1296), + [sym_char_literal] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1298), + [anon_sym_false] = ACTIONS(1298), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1298), + [sym_super] = ACTIONS(1298), + [sym_crate] = ACTIONS(1298), + [sym_metavariable] = ACTIONS(1296), + [sym_raw_string_literal] = ACTIONS(1296), + [sym_float_literal] = ACTIONS(1296), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_macro_rules_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_u8] = ACTIONS(1292), - [anon_sym_i8] = ACTIONS(1292), - [anon_sym_u16] = ACTIONS(1292), - [anon_sym_i16] = ACTIONS(1292), - [anon_sym_u32] = ACTIONS(1292), - [anon_sym_i32] = ACTIONS(1292), - [anon_sym_u64] = ACTIONS(1292), - [anon_sym_i64] = ACTIONS(1292), - [anon_sym_u128] = ACTIONS(1292), - [anon_sym_i128] = ACTIONS(1292), - [anon_sym_isize] = ACTIONS(1292), - [anon_sym_usize] = ACTIONS(1292), - [anon_sym_f32] = ACTIONS(1292), - [anon_sym_f64] = ACTIONS(1292), - [anon_sym_bool] = ACTIONS(1292), - [anon_sym_str] = ACTIONS(1292), - [anon_sym_char] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_async] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1292), - [anon_sym_let] = ACTIONS(1292), - [anon_sym_loop] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1292), - [anon_sym_mod] = ACTIONS(1292), - [anon_sym_pub] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_trait] = ACTIONS(1292), - [anon_sym_type] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_unsafe] = ACTIONS(1292), - [anon_sym_use] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_COLON_COLON] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1292), - [anon_sym_move] = ACTIONS(1292), - [sym_integer_literal] = ACTIONS(1290), - [aux_sym_string_literal_token1] = ACTIONS(1290), - [sym_char_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1292), - [anon_sym_false] = ACTIONS(1292), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1292), - [sym_super] = ACTIONS(1292), - [sym_crate] = ACTIONS(1292), - [sym_metavariable] = ACTIONS(1290), - [sym_raw_string_literal] = ACTIONS(1290), - [sym_float_literal] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_macro_rules_BANG] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_u8] = ACTIONS(1302), + [anon_sym_i8] = ACTIONS(1302), + [anon_sym_u16] = ACTIONS(1302), + [anon_sym_i16] = ACTIONS(1302), + [anon_sym_u32] = ACTIONS(1302), + [anon_sym_i32] = ACTIONS(1302), + [anon_sym_u64] = ACTIONS(1302), + [anon_sym_i64] = ACTIONS(1302), + [anon_sym_u128] = ACTIONS(1302), + [anon_sym_i128] = ACTIONS(1302), + [anon_sym_isize] = ACTIONS(1302), + [anon_sym_usize] = ACTIONS(1302), + [anon_sym_f32] = ACTIONS(1302), + [anon_sym_f64] = ACTIONS(1302), + [anon_sym_bool] = ACTIONS(1302), + [anon_sym_str] = ACTIONS(1302), + [anon_sym_char] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_impl] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_loop] = ACTIONS(1302), + [anon_sym_match] = ACTIONS(1302), + [anon_sym_mod] = ACTIONS(1302), + [anon_sym_pub] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_trait] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1302), + [anon_sym_use] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_COLON_COLON] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_DOT_DOT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_move] = ACTIONS(1302), + [sym_integer_literal] = ACTIONS(1300), + [aux_sym_string_literal_token1] = ACTIONS(1300), + [sym_char_literal] = ACTIONS(1300), + [anon_sym_true] = ACTIONS(1302), + [anon_sym_false] = ACTIONS(1302), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_crate] = ACTIONS(1302), + [sym_metavariable] = ACTIONS(1300), + [sym_raw_string_literal] = ACTIONS(1300), + [sym_float_literal] = ACTIONS(1300), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_macro_rules_BANG] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_u8] = ACTIONS(1296), - [anon_sym_i8] = ACTIONS(1296), - [anon_sym_u16] = ACTIONS(1296), - [anon_sym_i16] = ACTIONS(1296), - [anon_sym_u32] = ACTIONS(1296), - [anon_sym_i32] = ACTIONS(1296), - [anon_sym_u64] = ACTIONS(1296), - [anon_sym_i64] = ACTIONS(1296), - [anon_sym_u128] = ACTIONS(1296), - [anon_sym_i128] = ACTIONS(1296), - [anon_sym_isize] = ACTIONS(1296), - [anon_sym_usize] = ACTIONS(1296), - [anon_sym_f32] = ACTIONS(1296), - [anon_sym_f64] = ACTIONS(1296), - [anon_sym_bool] = ACTIONS(1296), - [anon_sym_str] = ACTIONS(1296), - [anon_sym_char] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_async] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_fn] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_pub] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_trait] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_COLON_COLON] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_move] = ACTIONS(1296), - [sym_integer_literal] = ACTIONS(1294), - [aux_sym_string_literal_token1] = ACTIONS(1294), - [sym_char_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1296), - [sym_super] = ACTIONS(1296), - [sym_crate] = ACTIONS(1296), - [sym_metavariable] = ACTIONS(1294), - [sym_raw_string_literal] = ACTIONS(1294), - [sym_float_literal] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_macro_rules_BANG] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_u8] = ACTIONS(1306), + [anon_sym_i8] = ACTIONS(1306), + [anon_sym_u16] = ACTIONS(1306), + [anon_sym_i16] = ACTIONS(1306), + [anon_sym_u32] = ACTIONS(1306), + [anon_sym_i32] = ACTIONS(1306), + [anon_sym_u64] = ACTIONS(1306), + [anon_sym_i64] = ACTIONS(1306), + [anon_sym_u128] = ACTIONS(1306), + [anon_sym_i128] = ACTIONS(1306), + [anon_sym_isize] = ACTIONS(1306), + [anon_sym_usize] = ACTIONS(1306), + [anon_sym_f32] = ACTIONS(1306), + [anon_sym_f64] = ACTIONS(1306), + [anon_sym_bool] = ACTIONS(1306), + [anon_sym_str] = ACTIONS(1306), + [anon_sym_char] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_loop] = ACTIONS(1306), + [anon_sym_match] = ACTIONS(1306), + [anon_sym_mod] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_trait] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_COLON_COLON] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_yield] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1306), + [sym_integer_literal] = ACTIONS(1304), + [aux_sym_string_literal_token1] = ACTIONS(1304), + [sym_char_literal] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1306), + [anon_sym_false] = ACTIONS(1306), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1306), + [sym_super] = ACTIONS(1306), + [sym_crate] = ACTIONS(1306), + [sym_metavariable] = ACTIONS(1304), + [sym_raw_string_literal] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1304), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_macro_rules_BANG] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_u8] = ACTIONS(1300), - [anon_sym_i8] = ACTIONS(1300), - [anon_sym_u16] = ACTIONS(1300), - [anon_sym_i16] = ACTIONS(1300), - [anon_sym_u32] = ACTIONS(1300), - [anon_sym_i32] = ACTIONS(1300), - [anon_sym_u64] = ACTIONS(1300), - [anon_sym_i64] = ACTIONS(1300), - [anon_sym_u128] = ACTIONS(1300), - [anon_sym_i128] = ACTIONS(1300), - [anon_sym_isize] = ACTIONS(1300), - [anon_sym_usize] = ACTIONS(1300), - [anon_sym_f32] = ACTIONS(1300), - [anon_sym_f64] = ACTIONS(1300), - [anon_sym_bool] = ACTIONS(1300), - [anon_sym_str] = ACTIONS(1300), - [anon_sym_char] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_async] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_fn] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_impl] = ACTIONS(1300), - [anon_sym_let] = ACTIONS(1300), - [anon_sym_loop] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_mod] = ACTIONS(1300), - [anon_sym_pub] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_COLON_COLON] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1300), - [sym_integer_literal] = ACTIONS(1298), - [aux_sym_string_literal_token1] = ACTIONS(1298), - [sym_char_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1300), - [sym_super] = ACTIONS(1300), - [sym_crate] = ACTIONS(1300), - [sym_metavariable] = ACTIONS(1298), - [sym_raw_string_literal] = ACTIONS(1298), - [sym_float_literal] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_macro_rules_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_POUND] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_DOT_DOT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_move] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1308), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_metavariable] = ACTIONS(1308), + [sym_raw_string_literal] = ACTIONS(1308), + [sym_float_literal] = ACTIONS(1308), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_macro_rules_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_u8] = ACTIONS(1304), - [anon_sym_i8] = ACTIONS(1304), - [anon_sym_u16] = ACTIONS(1304), - [anon_sym_i16] = ACTIONS(1304), - [anon_sym_u32] = ACTIONS(1304), - [anon_sym_i32] = ACTIONS(1304), - [anon_sym_u64] = ACTIONS(1304), - [anon_sym_i64] = ACTIONS(1304), - [anon_sym_u128] = ACTIONS(1304), - [anon_sym_i128] = ACTIONS(1304), - [anon_sym_isize] = ACTIONS(1304), - [anon_sym_usize] = ACTIONS(1304), - [anon_sym_f32] = ACTIONS(1304), - [anon_sym_f64] = ACTIONS(1304), - [anon_sym_bool] = ACTIONS(1304), - [anon_sym_str] = ACTIONS(1304), - [anon_sym_char] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_fn] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_impl] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_mod] = ACTIONS(1304), - [anon_sym_pub] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_trait] = ACTIONS(1304), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_unsafe] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_COLON_COLON] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1304), - [anon_sym_move] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1302), - [aux_sym_string_literal_token1] = ACTIONS(1302), - [sym_char_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_crate] = ACTIONS(1304), - [sym_metavariable] = ACTIONS(1302), - [sym_raw_string_literal] = ACTIONS(1302), - [sym_float_literal] = ACTIONS(1302), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_macro_rules_BANG] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1314), + [anon_sym_i8] = ACTIONS(1314), + [anon_sym_u16] = ACTIONS(1314), + [anon_sym_i16] = ACTIONS(1314), + [anon_sym_u32] = ACTIONS(1314), + [anon_sym_i32] = ACTIONS(1314), + [anon_sym_u64] = ACTIONS(1314), + [anon_sym_i64] = ACTIONS(1314), + [anon_sym_u128] = ACTIONS(1314), + [anon_sym_i128] = ACTIONS(1314), + [anon_sym_isize] = ACTIONS(1314), + [anon_sym_usize] = ACTIONS(1314), + [anon_sym_f32] = ACTIONS(1314), + [anon_sym_f64] = ACTIONS(1314), + [anon_sym_bool] = ACTIONS(1314), + [anon_sym_str] = ACTIONS(1314), + [anon_sym_char] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_yield] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1312), + [sym_char_literal] = ACTIONS(1312), + [anon_sym_true] = ACTIONS(1314), + [anon_sym_false] = ACTIONS(1314), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1312), + [sym_raw_string_literal] = ACTIONS(1312), + [sym_float_literal] = ACTIONS(1312), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_macro_rules_BANG] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_u8] = ACTIONS(1308), - [anon_sym_i8] = ACTIONS(1308), - [anon_sym_u16] = ACTIONS(1308), - [anon_sym_i16] = ACTIONS(1308), - [anon_sym_u32] = ACTIONS(1308), - [anon_sym_i32] = ACTIONS(1308), - [anon_sym_u64] = ACTIONS(1308), - [anon_sym_i64] = ACTIONS(1308), - [anon_sym_u128] = ACTIONS(1308), - [anon_sym_i128] = ACTIONS(1308), - [anon_sym_isize] = ACTIONS(1308), - [anon_sym_usize] = ACTIONS(1308), - [anon_sym_f32] = ACTIONS(1308), - [anon_sym_f64] = ACTIONS(1308), - [anon_sym_bool] = ACTIONS(1308), - [anon_sym_str] = ACTIONS(1308), - [anon_sym_char] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_impl] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_pub] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_trait] = ACTIONS(1308), - [anon_sym_type] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_unsafe] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_COLON_COLON] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1308), - [anon_sym_move] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1306), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1308), - [sym_super] = ACTIONS(1308), - [sym_crate] = ACTIONS(1308), - [sym_metavariable] = ACTIONS(1306), - [sym_raw_string_literal] = ACTIONS(1306), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_macro_rules_BANG] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_u8] = ACTIONS(1318), + [anon_sym_i8] = ACTIONS(1318), + [anon_sym_u16] = ACTIONS(1318), + [anon_sym_i16] = ACTIONS(1318), + [anon_sym_u32] = ACTIONS(1318), + [anon_sym_i32] = ACTIONS(1318), + [anon_sym_u64] = ACTIONS(1318), + [anon_sym_i64] = ACTIONS(1318), + [anon_sym_u128] = ACTIONS(1318), + [anon_sym_i128] = ACTIONS(1318), + [anon_sym_isize] = ACTIONS(1318), + [anon_sym_usize] = ACTIONS(1318), + [anon_sym_f32] = ACTIONS(1318), + [anon_sym_f64] = ACTIONS(1318), + [anon_sym_bool] = ACTIONS(1318), + [anon_sym_str] = ACTIONS(1318), + [anon_sym_char] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_fn] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_impl] = ACTIONS(1318), + [anon_sym_let] = ACTIONS(1318), + [anon_sym_loop] = ACTIONS(1318), + [anon_sym_match] = ACTIONS(1318), + [anon_sym_mod] = ACTIONS(1318), + [anon_sym_pub] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_trait] = ACTIONS(1318), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_unsafe] = ACTIONS(1318), + [anon_sym_use] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_COLON_COLON] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_DOT_DOT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_move] = ACTIONS(1318), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1316), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1318), + [anon_sym_false] = ACTIONS(1318), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1318), + [sym_super] = ACTIONS(1318), + [sym_crate] = ACTIONS(1318), + [sym_metavariable] = ACTIONS(1316), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_macro_rules_BANG] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_u8] = ACTIONS(1312), - [anon_sym_i8] = ACTIONS(1312), - [anon_sym_u16] = ACTIONS(1312), - [anon_sym_i16] = ACTIONS(1312), - [anon_sym_u32] = ACTIONS(1312), - [anon_sym_i32] = ACTIONS(1312), - [anon_sym_u64] = ACTIONS(1312), - [anon_sym_i64] = ACTIONS(1312), - [anon_sym_u128] = ACTIONS(1312), - [anon_sym_i128] = ACTIONS(1312), - [anon_sym_isize] = ACTIONS(1312), - [anon_sym_usize] = ACTIONS(1312), - [anon_sym_f32] = ACTIONS(1312), - [anon_sym_f64] = ACTIONS(1312), - [anon_sym_bool] = ACTIONS(1312), - [anon_sym_str] = ACTIONS(1312), - [anon_sym_char] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_COLON_COLON] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_move] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1310), - [sym_raw_string_literal] = ACTIONS(1310), - [sym_float_literal] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_macro_rules_BANG] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_u8] = ACTIONS(1322), + [anon_sym_i8] = ACTIONS(1322), + [anon_sym_u16] = ACTIONS(1322), + [anon_sym_i16] = ACTIONS(1322), + [anon_sym_u32] = ACTIONS(1322), + [anon_sym_i32] = ACTIONS(1322), + [anon_sym_u64] = ACTIONS(1322), + [anon_sym_i64] = ACTIONS(1322), + [anon_sym_u128] = ACTIONS(1322), + [anon_sym_i128] = ACTIONS(1322), + [anon_sym_isize] = ACTIONS(1322), + [anon_sym_usize] = ACTIONS(1322), + [anon_sym_f32] = ACTIONS(1322), + [anon_sym_f64] = ACTIONS(1322), + [anon_sym_bool] = ACTIONS(1322), + [anon_sym_str] = ACTIONS(1322), + [anon_sym_char] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_impl] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_loop] = ACTIONS(1322), + [anon_sym_match] = ACTIONS(1322), + [anon_sym_mod] = ACTIONS(1322), + [anon_sym_pub] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_trait] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_unsafe] = ACTIONS(1322), + [anon_sym_use] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_POUND] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_DOT_DOT] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_move] = ACTIONS(1322), + [sym_integer_literal] = ACTIONS(1320), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_crate] = ACTIONS(1322), + [sym_metavariable] = ACTIONS(1320), + [sym_raw_string_literal] = ACTIONS(1320), + [sym_float_literal] = ACTIONS(1320), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_macro_rules_BANG] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_u8] = ACTIONS(1316), - [anon_sym_i8] = ACTIONS(1316), - [anon_sym_u16] = ACTIONS(1316), - [anon_sym_i16] = ACTIONS(1316), - [anon_sym_u32] = ACTIONS(1316), - [anon_sym_i32] = ACTIONS(1316), - [anon_sym_u64] = ACTIONS(1316), - [anon_sym_i64] = ACTIONS(1316), - [anon_sym_u128] = ACTIONS(1316), - [anon_sym_i128] = ACTIONS(1316), - [anon_sym_isize] = ACTIONS(1316), - [anon_sym_usize] = ACTIONS(1316), - [anon_sym_f32] = ACTIONS(1316), - [anon_sym_f64] = ACTIONS(1316), - [anon_sym_bool] = ACTIONS(1316), - [anon_sym_str] = ACTIONS(1316), - [anon_sym_char] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_impl] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_pub] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_trait] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsafe] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_COLON_COLON] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1314), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1316), - [sym_crate] = ACTIONS(1316), - [sym_metavariable] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_macro_rules_BANG] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_u8] = ACTIONS(1326), + [anon_sym_i8] = ACTIONS(1326), + [anon_sym_u16] = ACTIONS(1326), + [anon_sym_i16] = ACTIONS(1326), + [anon_sym_u32] = ACTIONS(1326), + [anon_sym_i32] = ACTIONS(1326), + [anon_sym_u64] = ACTIONS(1326), + [anon_sym_i64] = ACTIONS(1326), + [anon_sym_u128] = ACTIONS(1326), + [anon_sym_i128] = ACTIONS(1326), + [anon_sym_isize] = ACTIONS(1326), + [anon_sym_usize] = ACTIONS(1326), + [anon_sym_f32] = ACTIONS(1326), + [anon_sym_f64] = ACTIONS(1326), + [anon_sym_bool] = ACTIONS(1326), + [anon_sym_str] = ACTIONS(1326), + [anon_sym_char] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_fn] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_impl] = ACTIONS(1326), + [anon_sym_let] = ACTIONS(1326), + [anon_sym_loop] = ACTIONS(1326), + [anon_sym_match] = ACTIONS(1326), + [anon_sym_mod] = ACTIONS(1326), + [anon_sym_pub] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_trait] = ACTIONS(1326), + [anon_sym_type] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_unsafe] = ACTIONS(1326), + [anon_sym_use] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_POUND] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_COLON_COLON] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_DOT_DOT] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_yield] = ACTIONS(1326), + [anon_sym_move] = ACTIONS(1326), + [sym_integer_literal] = ACTIONS(1324), + [aux_sym_string_literal_token1] = ACTIONS(1324), + [sym_char_literal] = ACTIONS(1324), + [anon_sym_true] = ACTIONS(1326), + [anon_sym_false] = ACTIONS(1326), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1324), + [sym_raw_string_literal] = ACTIONS(1324), + [sym_float_literal] = ACTIONS(1324), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_macro_rules_BANG] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_fn] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_impl] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_pub] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_trait] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_unsafe] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_COLON_COLON] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1320), - [anon_sym_move] = ACTIONS(1320), - [sym_integer_literal] = ACTIONS(1318), - [aux_sym_string_literal_token1] = ACTIONS(1318), - [sym_char_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1320), - [sym_super] = ACTIONS(1320), - [sym_crate] = ACTIONS(1320), - [sym_metavariable] = ACTIONS(1318), - [sym_raw_string_literal] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_macro_rules_BANG] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_fn] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_impl] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1330), + [anon_sym_loop] = ACTIONS(1330), + [anon_sym_match] = ACTIONS(1330), + [anon_sym_mod] = ACTIONS(1330), + [anon_sym_pub] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_trait] = ACTIONS(1330), + [anon_sym_type] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_unsafe] = ACTIONS(1330), + [anon_sym_use] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_POUND] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_DOT_DOT] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_yield] = ACTIONS(1330), + [anon_sym_move] = ACTIONS(1330), + [sym_integer_literal] = ACTIONS(1328), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1330), + [sym_super] = ACTIONS(1330), + [sym_crate] = ACTIONS(1330), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1328), + [sym_float_literal] = ACTIONS(1328), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_macro_rules_BANG] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_u8] = ACTIONS(1324), - [anon_sym_i8] = ACTIONS(1324), - [anon_sym_u16] = ACTIONS(1324), - [anon_sym_i16] = ACTIONS(1324), - [anon_sym_u32] = ACTIONS(1324), - [anon_sym_i32] = ACTIONS(1324), - [anon_sym_u64] = ACTIONS(1324), - [anon_sym_i64] = ACTIONS(1324), - [anon_sym_u128] = ACTIONS(1324), - [anon_sym_i128] = ACTIONS(1324), - [anon_sym_isize] = ACTIONS(1324), - [anon_sym_usize] = ACTIONS(1324), - [anon_sym_f32] = ACTIONS(1324), - [anon_sym_f64] = ACTIONS(1324), - [anon_sym_bool] = ACTIONS(1324), - [anon_sym_str] = ACTIONS(1324), - [anon_sym_char] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_async] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_fn] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_impl] = ACTIONS(1324), - [anon_sym_let] = ACTIONS(1324), - [anon_sym_loop] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1324), - [anon_sym_mod] = ACTIONS(1324), - [anon_sym_pub] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_trait] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_unsafe] = ACTIONS(1324), - [anon_sym_use] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1324), - [anon_sym_move] = ACTIONS(1324), - [sym_integer_literal] = ACTIONS(1322), - [aux_sym_string_literal_token1] = ACTIONS(1322), - [sym_char_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1324), - [anon_sym_false] = ACTIONS(1324), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1324), - [sym_super] = ACTIONS(1324), - [sym_crate] = ACTIONS(1324), - [sym_metavariable] = ACTIONS(1322), - [sym_raw_string_literal] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym_macro_rules_BANG] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_POUND] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_COLON_COLON] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_DOT_DOT] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_yield] = ACTIONS(1334), + [anon_sym_move] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1332), + [aux_sym_string_literal_token1] = ACTIONS(1332), + [sym_char_literal] = ACTIONS(1332), + [anon_sym_true] = ACTIONS(1334), + [anon_sym_false] = ACTIONS(1334), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_metavariable] = ACTIONS(1332), + [sym_raw_string_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1332), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_macro_rules_BANG] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_u8] = ACTIONS(1328), - [anon_sym_i8] = ACTIONS(1328), - [anon_sym_u16] = ACTIONS(1328), - [anon_sym_i16] = ACTIONS(1328), - [anon_sym_u32] = ACTIONS(1328), - [anon_sym_i32] = ACTIONS(1328), - [anon_sym_u64] = ACTIONS(1328), - [anon_sym_i64] = ACTIONS(1328), - [anon_sym_u128] = ACTIONS(1328), - [anon_sym_i128] = ACTIONS(1328), - [anon_sym_isize] = ACTIONS(1328), - [anon_sym_usize] = ACTIONS(1328), - [anon_sym_f32] = ACTIONS(1328), - [anon_sym_f64] = ACTIONS(1328), - [anon_sym_bool] = ACTIONS(1328), - [anon_sym_str] = ACTIONS(1328), - [anon_sym_char] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_fn] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_impl] = ACTIONS(1328), - [anon_sym_let] = ACTIONS(1328), - [anon_sym_loop] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1328), - [anon_sym_mod] = ACTIONS(1328), - [anon_sym_pub] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_trait] = ACTIONS(1328), - [anon_sym_type] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_unsafe] = ACTIONS(1328), - [anon_sym_use] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_COLON_COLON] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_move] = ACTIONS(1328), - [sym_integer_literal] = ACTIONS(1326), - [aux_sym_string_literal_token1] = ACTIONS(1326), - [sym_char_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1328), - [anon_sym_false] = ACTIONS(1328), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1328), - [sym_super] = ACTIONS(1328), - [sym_crate] = ACTIONS(1328), - [sym_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1326), - [sym_float_literal] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_macro_rules_BANG] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_async] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_fn] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_impl] = ACTIONS(1338), + [anon_sym_let] = ACTIONS(1338), + [anon_sym_loop] = ACTIONS(1338), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_mod] = ACTIONS(1338), + [anon_sym_pub] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_trait] = ACTIONS(1338), + [anon_sym_type] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_unsafe] = ACTIONS(1338), + [anon_sym_use] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1338), + [anon_sym_move] = ACTIONS(1338), + [sym_integer_literal] = ACTIONS(1336), + [aux_sym_string_literal_token1] = ACTIONS(1336), + [sym_char_literal] = ACTIONS(1336), + [anon_sym_true] = ACTIONS(1338), + [anon_sym_false] = ACTIONS(1338), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1338), + [sym_super] = ACTIONS(1338), + [sym_crate] = ACTIONS(1338), + [sym_metavariable] = ACTIONS(1336), + [sym_raw_string_literal] = ACTIONS(1336), + [sym_float_literal] = ACTIONS(1336), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_macro_rules_BANG] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_u8] = ACTIONS(1332), - [anon_sym_i8] = ACTIONS(1332), - [anon_sym_u16] = ACTIONS(1332), - [anon_sym_i16] = ACTIONS(1332), - [anon_sym_u32] = ACTIONS(1332), - [anon_sym_i32] = ACTIONS(1332), - [anon_sym_u64] = ACTIONS(1332), - [anon_sym_i64] = ACTIONS(1332), - [anon_sym_u128] = ACTIONS(1332), - [anon_sym_i128] = ACTIONS(1332), - [anon_sym_isize] = ACTIONS(1332), - [anon_sym_usize] = ACTIONS(1332), - [anon_sym_f32] = ACTIONS(1332), - [anon_sym_f64] = ACTIONS(1332), - [anon_sym_bool] = ACTIONS(1332), - [anon_sym_str] = ACTIONS(1332), - [anon_sym_char] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_fn] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_impl] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_pub] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_trait] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_unsafe] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_COLON_COLON] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_DOT_DOT] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1332), - [anon_sym_move] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1330), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1332), - [sym_super] = ACTIONS(1332), - [sym_crate] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1330), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_macro_rules_BANG] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_u8] = ACTIONS(1342), + [anon_sym_i8] = ACTIONS(1342), + [anon_sym_u16] = ACTIONS(1342), + [anon_sym_i16] = ACTIONS(1342), + [anon_sym_u32] = ACTIONS(1342), + [anon_sym_i32] = ACTIONS(1342), + [anon_sym_u64] = ACTIONS(1342), + [anon_sym_i64] = ACTIONS(1342), + [anon_sym_u128] = ACTIONS(1342), + [anon_sym_i128] = ACTIONS(1342), + [anon_sym_isize] = ACTIONS(1342), + [anon_sym_usize] = ACTIONS(1342), + [anon_sym_f32] = ACTIONS(1342), + [anon_sym_f64] = ACTIONS(1342), + [anon_sym_bool] = ACTIONS(1342), + [anon_sym_str] = ACTIONS(1342), + [anon_sym_char] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_fn] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_impl] = ACTIONS(1342), + [anon_sym_let] = ACTIONS(1342), + [anon_sym_loop] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1342), + [anon_sym_mod] = ACTIONS(1342), + [anon_sym_pub] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_trait] = ACTIONS(1342), + [anon_sym_type] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1342), + [anon_sym_use] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_POUND] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_DOT_DOT] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_yield] = ACTIONS(1342), + [anon_sym_move] = ACTIONS(1342), + [sym_integer_literal] = ACTIONS(1340), + [aux_sym_string_literal_token1] = ACTIONS(1340), + [sym_char_literal] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1342), + [sym_super] = ACTIONS(1342), + [sym_crate] = ACTIONS(1342), + [sym_metavariable] = ACTIONS(1340), + [sym_raw_string_literal] = ACTIONS(1340), + [sym_float_literal] = ACTIONS(1340), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_macro_rules_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_u8] = ACTIONS(1336), - [anon_sym_i8] = ACTIONS(1336), - [anon_sym_u16] = ACTIONS(1336), - [anon_sym_i16] = ACTIONS(1336), - [anon_sym_u32] = ACTIONS(1336), - [anon_sym_i32] = ACTIONS(1336), - [anon_sym_u64] = ACTIONS(1336), - [anon_sym_i64] = ACTIONS(1336), - [anon_sym_u128] = ACTIONS(1336), - [anon_sym_i128] = ACTIONS(1336), - [anon_sym_isize] = ACTIONS(1336), - [anon_sym_usize] = ACTIONS(1336), - [anon_sym_f32] = ACTIONS(1336), - [anon_sym_f64] = ACTIONS(1336), - [anon_sym_bool] = ACTIONS(1336), - [anon_sym_str] = ACTIONS(1336), - [anon_sym_char] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_impl] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_pub] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_trait] = ACTIONS(1336), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_unsafe] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_COLON_COLON] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_move] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1334), - [aux_sym_string_literal_token1] = ACTIONS(1334), - [sym_char_literal] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1336), - [sym_super] = ACTIONS(1336), - [sym_crate] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1334), - [sym_raw_string_literal] = ACTIONS(1334), - [sym_float_literal] = ACTIONS(1334), + [ts_builtin_sym_end] = ACTIONS(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), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_macro_rules_BANG] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_move] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1338), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1338), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_macro_rules_BANG] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_u8] = ACTIONS(1350), + [anon_sym_i8] = ACTIONS(1350), + [anon_sym_u16] = ACTIONS(1350), + [anon_sym_i16] = ACTIONS(1350), + [anon_sym_u32] = ACTIONS(1350), + [anon_sym_i32] = ACTIONS(1350), + [anon_sym_u64] = ACTIONS(1350), + [anon_sym_i64] = ACTIONS(1350), + [anon_sym_u128] = ACTIONS(1350), + [anon_sym_i128] = ACTIONS(1350), + [anon_sym_isize] = ACTIONS(1350), + [anon_sym_usize] = ACTIONS(1350), + [anon_sym_f32] = ACTIONS(1350), + [anon_sym_f64] = ACTIONS(1350), + [anon_sym_bool] = ACTIONS(1350), + [anon_sym_str] = ACTIONS(1350), + [anon_sym_char] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_fn] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_impl] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_mod] = ACTIONS(1350), + [anon_sym_pub] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_trait] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_COLON_COLON] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_DOT_DOT] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_yield] = ACTIONS(1350), + [anon_sym_move] = ACTIONS(1350), + [sym_integer_literal] = ACTIONS(1348), + [aux_sym_string_literal_token1] = ACTIONS(1348), + [sym_char_literal] = ACTIONS(1348), + [anon_sym_true] = ACTIONS(1350), + [anon_sym_false] = ACTIONS(1350), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1348), + [sym_raw_string_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1348), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_macro_rules_BANG] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_u8] = ACTIONS(1344), - [anon_sym_i8] = ACTIONS(1344), - [anon_sym_u16] = ACTIONS(1344), - [anon_sym_i16] = ACTIONS(1344), - [anon_sym_u32] = ACTIONS(1344), - [anon_sym_i32] = ACTIONS(1344), - [anon_sym_u64] = ACTIONS(1344), - [anon_sym_i64] = ACTIONS(1344), - [anon_sym_u128] = ACTIONS(1344), - [anon_sym_i128] = ACTIONS(1344), - [anon_sym_isize] = ACTIONS(1344), - [anon_sym_usize] = ACTIONS(1344), - [anon_sym_f32] = ACTIONS(1344), - [anon_sym_f64] = ACTIONS(1344), - [anon_sym_bool] = ACTIONS(1344), - [anon_sym_str] = ACTIONS(1344), - [anon_sym_char] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_async] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_impl] = ACTIONS(1344), - [anon_sym_let] = ACTIONS(1344), - [anon_sym_loop] = ACTIONS(1344), - [anon_sym_match] = ACTIONS(1344), - [anon_sym_mod] = ACTIONS(1344), - [anon_sym_pub] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_trait] = ACTIONS(1344), - [anon_sym_type] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_unsafe] = ACTIONS(1344), - [anon_sym_use] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_COLON_COLON] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_move] = ACTIONS(1344), - [sym_integer_literal] = ACTIONS(1342), - [aux_sym_string_literal_token1] = ACTIONS(1342), - [sym_char_literal] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1344), - [sym_crate] = ACTIONS(1344), - [sym_metavariable] = ACTIONS(1342), - [sym_raw_string_literal] = ACTIONS(1342), - [sym_float_literal] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_macro_rules_BANG] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_u8] = ACTIONS(1354), + [anon_sym_i8] = ACTIONS(1354), + [anon_sym_u16] = ACTIONS(1354), + [anon_sym_i16] = ACTIONS(1354), + [anon_sym_u32] = ACTIONS(1354), + [anon_sym_i32] = ACTIONS(1354), + [anon_sym_u64] = ACTIONS(1354), + [anon_sym_i64] = ACTIONS(1354), + [anon_sym_u128] = ACTIONS(1354), + [anon_sym_i128] = ACTIONS(1354), + [anon_sym_isize] = ACTIONS(1354), + [anon_sym_usize] = ACTIONS(1354), + [anon_sym_f32] = ACTIONS(1354), + [anon_sym_f64] = ACTIONS(1354), + [anon_sym_bool] = ACTIONS(1354), + [anon_sym_str] = ACTIONS(1354), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_fn] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_impl] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(1354), + [anon_sym_loop] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_mod] = ACTIONS(1354), + [anon_sym_pub] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_trait] = ACTIONS(1354), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_unsafe] = ACTIONS(1354), + [anon_sym_use] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_COLON_COLON] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_DOT_DOT] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_yield] = ACTIONS(1354), + [anon_sym_move] = ACTIONS(1354), + [sym_integer_literal] = ACTIONS(1352), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1352), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1352), + [sym_float_literal] = ACTIONS(1352), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_macro_rules_BANG] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_u8] = ACTIONS(1348), - [anon_sym_i8] = ACTIONS(1348), - [anon_sym_u16] = ACTIONS(1348), - [anon_sym_i16] = ACTIONS(1348), - [anon_sym_u32] = ACTIONS(1348), - [anon_sym_i32] = ACTIONS(1348), - [anon_sym_u64] = ACTIONS(1348), - [anon_sym_i64] = ACTIONS(1348), - [anon_sym_u128] = ACTIONS(1348), - [anon_sym_i128] = ACTIONS(1348), - [anon_sym_isize] = ACTIONS(1348), - [anon_sym_usize] = ACTIONS(1348), - [anon_sym_f32] = ACTIONS(1348), - [anon_sym_f64] = ACTIONS(1348), - [anon_sym_bool] = ACTIONS(1348), - [anon_sym_str] = ACTIONS(1348), - [anon_sym_char] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_impl] = ACTIONS(1348), - [anon_sym_let] = ACTIONS(1348), - [anon_sym_loop] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [anon_sym_mod] = ACTIONS(1348), - [anon_sym_pub] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_unsafe] = ACTIONS(1348), - [anon_sym_use] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1348), - [anon_sym_move] = ACTIONS(1348), - [sym_integer_literal] = ACTIONS(1346), - [aux_sym_string_literal_token1] = ACTIONS(1346), - [sym_char_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1348), - [sym_super] = ACTIONS(1348), - [sym_crate] = ACTIONS(1348), - [sym_metavariable] = ACTIONS(1346), - [sym_raw_string_literal] = ACTIONS(1346), - [sym_float_literal] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_macro_rules_BANG] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u128] = ACTIONS(1358), + [anon_sym_i128] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_str] = ACTIONS(1358), + [anon_sym_char] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_fn] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_impl] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_loop] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [anon_sym_mod] = ACTIONS(1358), + [anon_sym_pub] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_trait] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_unsafe] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_COLON_COLON] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_DOT_DOT] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_move] = ACTIONS(1358), + [sym_integer_literal] = ACTIONS(1356), + [aux_sym_string_literal_token1] = ACTIONS(1356), + [sym_char_literal] = ACTIONS(1356), + [anon_sym_true] = ACTIONS(1358), + [anon_sym_false] = ACTIONS(1358), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_crate] = ACTIONS(1358), + [sym_metavariable] = ACTIONS(1356), + [sym_raw_string_literal] = ACTIONS(1356), + [sym_float_literal] = ACTIONS(1356), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_macro_rules_BANG] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_loop] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_unsafe] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_macro_rules_BANG] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_u8] = ACTIONS(1362), + [anon_sym_i8] = ACTIONS(1362), + [anon_sym_u16] = ACTIONS(1362), + [anon_sym_i16] = ACTIONS(1362), + [anon_sym_u32] = ACTIONS(1362), + [anon_sym_i32] = ACTIONS(1362), + [anon_sym_u64] = ACTIONS(1362), + [anon_sym_i64] = ACTIONS(1362), + [anon_sym_u128] = ACTIONS(1362), + [anon_sym_i128] = ACTIONS(1362), + [anon_sym_isize] = ACTIONS(1362), + [anon_sym_usize] = ACTIONS(1362), + [anon_sym_f32] = ACTIONS(1362), + [anon_sym_f64] = ACTIONS(1362), + [anon_sym_bool] = ACTIONS(1362), + [anon_sym_str] = ACTIONS(1362), + [anon_sym_char] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_impl] = ACTIONS(1362), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_loop] = ACTIONS(1362), + [anon_sym_match] = ACTIONS(1362), + [anon_sym_mod] = ACTIONS(1362), + [anon_sym_pub] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_trait] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_unsafe] = ACTIONS(1362), + [anon_sym_use] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_COLON_COLON] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1362), + [anon_sym_move] = ACTIONS(1362), + [sym_integer_literal] = ACTIONS(1360), + [aux_sym_string_literal_token1] = ACTIONS(1360), + [sym_char_literal] = ACTIONS(1360), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1362), + [sym_super] = ACTIONS(1362), + [sym_crate] = ACTIONS(1362), + [sym_metavariable] = ACTIONS(1360), + [sym_raw_string_literal] = ACTIONS(1360), + [sym_float_literal] = ACTIONS(1360), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_macro_rules_BANG] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym_raw_string_literal] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_macro_rules_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_u8] = ACTIONS(1366), + [anon_sym_i8] = ACTIONS(1366), + [anon_sym_u16] = ACTIONS(1366), + [anon_sym_i16] = ACTIONS(1366), + [anon_sym_u32] = ACTIONS(1366), + [anon_sym_i32] = ACTIONS(1366), + [anon_sym_u64] = ACTIONS(1366), + [anon_sym_i64] = ACTIONS(1366), + [anon_sym_u128] = ACTIONS(1366), + [anon_sym_i128] = ACTIONS(1366), + [anon_sym_isize] = ACTIONS(1366), + [anon_sym_usize] = ACTIONS(1366), + [anon_sym_f32] = ACTIONS(1366), + [anon_sym_f64] = ACTIONS(1366), + [anon_sym_bool] = ACTIONS(1366), + [anon_sym_str] = ACTIONS(1366), + [anon_sym_char] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_async] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_impl] = ACTIONS(1366), + [anon_sym_let] = ACTIONS(1366), + [anon_sym_loop] = ACTIONS(1366), + [anon_sym_match] = ACTIONS(1366), + [anon_sym_mod] = ACTIONS(1366), + [anon_sym_pub] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_trait] = ACTIONS(1366), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_unsafe] = ACTIONS(1366), + [anon_sym_use] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_COLON_COLON] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_yield] = ACTIONS(1366), + [anon_sym_move] = ACTIONS(1366), + [sym_integer_literal] = ACTIONS(1364), + [aux_sym_string_literal_token1] = ACTIONS(1364), + [sym_char_literal] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1366), + [anon_sym_false] = ACTIONS(1366), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_crate] = ACTIONS(1366), + [sym_metavariable] = ACTIONS(1364), + [sym_raw_string_literal] = ACTIONS(1364), + [sym_float_literal] = ACTIONS(1364), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_macro_rules_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1360), - [anon_sym_i8] = ACTIONS(1360), - [anon_sym_u16] = ACTIONS(1360), - [anon_sym_i16] = ACTIONS(1360), - [anon_sym_u32] = ACTIONS(1360), - [anon_sym_i32] = ACTIONS(1360), - [anon_sym_u64] = ACTIONS(1360), - [anon_sym_i64] = ACTIONS(1360), - [anon_sym_u128] = ACTIONS(1360), - [anon_sym_i128] = ACTIONS(1360), - [anon_sym_isize] = ACTIONS(1360), - [anon_sym_usize] = ACTIONS(1360), - [anon_sym_f32] = ACTIONS(1360), - [anon_sym_f64] = ACTIONS(1360), - [anon_sym_bool] = ACTIONS(1360), - [anon_sym_str] = ACTIONS(1360), - [anon_sym_char] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_impl] = ACTIONS(1360), - [anon_sym_let] = ACTIONS(1360), - [anon_sym_loop] = ACTIONS(1360), - [anon_sym_match] = ACTIONS(1360), - [anon_sym_mod] = ACTIONS(1360), - [anon_sym_pub] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_trait] = ACTIONS(1360), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsafe] = ACTIONS(1360), - [anon_sym_use] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1360), - [anon_sym_move] = ACTIONS(1360), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1360), - [sym_super] = ACTIONS(1360), - [sym_crate] = ACTIONS(1360), - [sym_metavariable] = ACTIONS(1358), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_macro_rules_BANG] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_u8] = ACTIONS(1370), + [anon_sym_i8] = ACTIONS(1370), + [anon_sym_u16] = ACTIONS(1370), + [anon_sym_i16] = ACTIONS(1370), + [anon_sym_u32] = ACTIONS(1370), + [anon_sym_i32] = ACTIONS(1370), + [anon_sym_u64] = ACTIONS(1370), + [anon_sym_i64] = ACTIONS(1370), + [anon_sym_u128] = ACTIONS(1370), + [anon_sym_i128] = ACTIONS(1370), + [anon_sym_isize] = ACTIONS(1370), + [anon_sym_usize] = ACTIONS(1370), + [anon_sym_f32] = ACTIONS(1370), + [anon_sym_f64] = ACTIONS(1370), + [anon_sym_bool] = ACTIONS(1370), + [anon_sym_str] = ACTIONS(1370), + [anon_sym_char] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_fn] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_impl] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1370), + [anon_sym_loop] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_mod] = ACTIONS(1370), + [anon_sym_pub] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_trait] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_unsafe] = ACTIONS(1370), + [anon_sym_use] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_POUND] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_move] = ACTIONS(1370), + [sym_integer_literal] = ACTIONS(1368), + [aux_sym_string_literal_token1] = ACTIONS(1368), + [sym_char_literal] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1370), + [sym_super] = ACTIONS(1370), + [sym_crate] = ACTIONS(1370), + [sym_metavariable] = ACTIONS(1368), + [sym_raw_string_literal] = ACTIONS(1368), + [sym_float_literal] = ACTIONS(1368), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_macro_rules_BANG] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_fn] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_impl] = ACTIONS(1364), - [anon_sym_let] = ACTIONS(1364), - [anon_sym_loop] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_mod] = ACTIONS(1364), - [anon_sym_pub] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_type] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsafe] = ACTIONS(1364), - [anon_sym_use] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym_raw_string_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_macro_rules_BANG] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_u8] = ACTIONS(1374), + [anon_sym_i8] = ACTIONS(1374), + [anon_sym_u16] = ACTIONS(1374), + [anon_sym_i16] = ACTIONS(1374), + [anon_sym_u32] = ACTIONS(1374), + [anon_sym_i32] = ACTIONS(1374), + [anon_sym_u64] = ACTIONS(1374), + [anon_sym_i64] = ACTIONS(1374), + [anon_sym_u128] = ACTIONS(1374), + [anon_sym_i128] = ACTIONS(1374), + [anon_sym_isize] = ACTIONS(1374), + [anon_sym_usize] = ACTIONS(1374), + [anon_sym_f32] = ACTIONS(1374), + [anon_sym_f64] = ACTIONS(1374), + [anon_sym_bool] = ACTIONS(1374), + [anon_sym_str] = ACTIONS(1374), + [anon_sym_char] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_impl] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_pub] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_trait] = ACTIONS(1374), + [anon_sym_type] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_unsafe] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_COLON_COLON] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_DOT_DOT] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_move] = ACTIONS(1374), + [sym_integer_literal] = ACTIONS(1372), + [aux_sym_string_literal_token1] = ACTIONS(1372), + [sym_char_literal] = ACTIONS(1372), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1374), + [sym_super] = ACTIONS(1374), + [sym_crate] = ACTIONS(1374), + [sym_metavariable] = ACTIONS(1372), + [sym_raw_string_literal] = ACTIONS(1372), + [sym_float_literal] = ACTIONS(1372), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_macro_rules_BANG] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_impl] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_pub] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_trait] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_unsafe] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym_raw_string_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_macro_rules_BANG] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_u8] = ACTIONS(1378), + [anon_sym_i8] = ACTIONS(1378), + [anon_sym_u16] = ACTIONS(1378), + [anon_sym_i16] = ACTIONS(1378), + [anon_sym_u32] = ACTIONS(1378), + [anon_sym_i32] = ACTIONS(1378), + [anon_sym_u64] = ACTIONS(1378), + [anon_sym_i64] = ACTIONS(1378), + [anon_sym_u128] = ACTIONS(1378), + [anon_sym_i128] = ACTIONS(1378), + [anon_sym_isize] = ACTIONS(1378), + [anon_sym_usize] = ACTIONS(1378), + [anon_sym_f32] = ACTIONS(1378), + [anon_sym_f64] = ACTIONS(1378), + [anon_sym_bool] = ACTIONS(1378), + [anon_sym_str] = ACTIONS(1378), + [anon_sym_char] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_impl] = ACTIONS(1378), + [anon_sym_let] = ACTIONS(1378), + [anon_sym_loop] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_mod] = ACTIONS(1378), + [anon_sym_pub] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_trait] = ACTIONS(1378), + [anon_sym_type] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_unsafe] = ACTIONS(1378), + [anon_sym_use] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_COLON_COLON] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_DOT_DOT] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_yield] = ACTIONS(1378), + [anon_sym_move] = ACTIONS(1378), + [sym_integer_literal] = ACTIONS(1376), + [aux_sym_string_literal_token1] = ACTIONS(1376), + [sym_char_literal] = ACTIONS(1376), + [anon_sym_true] = ACTIONS(1378), + [anon_sym_false] = ACTIONS(1378), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1378), + [sym_super] = ACTIONS(1378), + [sym_crate] = ACTIONS(1378), + [sym_metavariable] = ACTIONS(1376), + [sym_raw_string_literal] = ACTIONS(1376), + [sym_float_literal] = ACTIONS(1376), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_macro_rules_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_impl] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_pub] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_trait] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_yield] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym_raw_string_literal] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_macro_rules_BANG] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_u8] = ACTIONS(1382), + [anon_sym_i8] = ACTIONS(1382), + [anon_sym_u16] = ACTIONS(1382), + [anon_sym_i16] = ACTIONS(1382), + [anon_sym_u32] = ACTIONS(1382), + [anon_sym_i32] = ACTIONS(1382), + [anon_sym_u64] = ACTIONS(1382), + [anon_sym_i64] = ACTIONS(1382), + [anon_sym_u128] = ACTIONS(1382), + [anon_sym_i128] = ACTIONS(1382), + [anon_sym_isize] = ACTIONS(1382), + [anon_sym_usize] = ACTIONS(1382), + [anon_sym_f32] = ACTIONS(1382), + [anon_sym_f64] = ACTIONS(1382), + [anon_sym_bool] = ACTIONS(1382), + [anon_sym_str] = ACTIONS(1382), + [anon_sym_char] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_impl] = ACTIONS(1382), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_loop] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_mod] = ACTIONS(1382), + [anon_sym_pub] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_trait] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_unsafe] = ACTIONS(1382), + [anon_sym_use] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_COLON_COLON] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_DOT_DOT] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_move] = ACTIONS(1382), + [sym_integer_literal] = ACTIONS(1380), + [aux_sym_string_literal_token1] = ACTIONS(1380), + [sym_char_literal] = ACTIONS(1380), + [anon_sym_true] = ACTIONS(1382), + [anon_sym_false] = ACTIONS(1382), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_crate] = ACTIONS(1382), + [sym_metavariable] = ACTIONS(1380), + [sym_raw_string_literal] = ACTIONS(1380), + [sym_float_literal] = ACTIONS(1380), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_macro_rules_BANG] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_async] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_impl] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_pub] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_trait] = ACTIONS(1376), - [anon_sym_type] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_DOT_DOT] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym_raw_string_literal] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_macro_rules_BANG] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_u8] = ACTIONS(1386), + [anon_sym_i8] = ACTIONS(1386), + [anon_sym_u16] = ACTIONS(1386), + [anon_sym_i16] = ACTIONS(1386), + [anon_sym_u32] = ACTIONS(1386), + [anon_sym_i32] = ACTIONS(1386), + [anon_sym_u64] = ACTIONS(1386), + [anon_sym_i64] = ACTIONS(1386), + [anon_sym_u128] = ACTIONS(1386), + [anon_sym_i128] = ACTIONS(1386), + [anon_sym_isize] = ACTIONS(1386), + [anon_sym_usize] = ACTIONS(1386), + [anon_sym_f32] = ACTIONS(1386), + [anon_sym_f64] = ACTIONS(1386), + [anon_sym_bool] = ACTIONS(1386), + [anon_sym_str] = ACTIONS(1386), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_fn] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_impl] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_loop] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_mod] = ACTIONS(1386), + [anon_sym_pub] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_trait] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_unsafe] = ACTIONS(1386), + [anon_sym_use] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_COLON_COLON] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_move] = ACTIONS(1386), + [sym_integer_literal] = ACTIONS(1384), + [aux_sym_string_literal_token1] = ACTIONS(1384), + [sym_char_literal] = ACTIONS(1384), + [anon_sym_true] = ACTIONS(1386), + [anon_sym_false] = ACTIONS(1386), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1386), + [sym_super] = ACTIONS(1386), + [sym_crate] = ACTIONS(1386), + [sym_metavariable] = ACTIONS(1384), + [sym_raw_string_literal] = ACTIONS(1384), + [sym_float_literal] = ACTIONS(1384), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_macro_rules_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_loop] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_mod] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_type] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsafe] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym_raw_string_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_macro_rules_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_u8] = ACTIONS(1390), + [anon_sym_i8] = ACTIONS(1390), + [anon_sym_u16] = ACTIONS(1390), + [anon_sym_i16] = ACTIONS(1390), + [anon_sym_u32] = ACTIONS(1390), + [anon_sym_i32] = ACTIONS(1390), + [anon_sym_u64] = ACTIONS(1390), + [anon_sym_i64] = ACTIONS(1390), + [anon_sym_u128] = ACTIONS(1390), + [anon_sym_i128] = ACTIONS(1390), + [anon_sym_isize] = ACTIONS(1390), + [anon_sym_usize] = ACTIONS(1390), + [anon_sym_f32] = ACTIONS(1390), + [anon_sym_f64] = ACTIONS(1390), + [anon_sym_bool] = ACTIONS(1390), + [anon_sym_str] = ACTIONS(1390), + [anon_sym_char] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_fn] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_impl] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_mod] = ACTIONS(1390), + [anon_sym_pub] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_trait] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_unsafe] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_COLON_COLON] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_move] = ACTIONS(1390), + [sym_integer_literal] = ACTIONS(1388), + [aux_sym_string_literal_token1] = ACTIONS(1388), + [sym_char_literal] = ACTIONS(1388), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_crate] = ACTIONS(1390), + [sym_metavariable] = ACTIONS(1388), + [sym_raw_string_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1388), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_macro_rules_BANG] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_async] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_loop] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_unsafe] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_DOT_DOT] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym_raw_string_literal] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_macro_rules_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_u8] = ACTIONS(1394), + [anon_sym_i8] = ACTIONS(1394), + [anon_sym_u16] = ACTIONS(1394), + [anon_sym_i16] = ACTIONS(1394), + [anon_sym_u32] = ACTIONS(1394), + [anon_sym_i32] = ACTIONS(1394), + [anon_sym_u64] = ACTIONS(1394), + [anon_sym_i64] = ACTIONS(1394), + [anon_sym_u128] = ACTIONS(1394), + [anon_sym_i128] = ACTIONS(1394), + [anon_sym_isize] = ACTIONS(1394), + [anon_sym_usize] = ACTIONS(1394), + [anon_sym_f32] = ACTIONS(1394), + [anon_sym_f64] = ACTIONS(1394), + [anon_sym_bool] = ACTIONS(1394), + [anon_sym_str] = ACTIONS(1394), + [anon_sym_char] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_fn] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_impl] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_pub] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_trait] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_unsafe] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_COLON_COLON] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_move] = ACTIONS(1394), + [sym_integer_literal] = ACTIONS(1392), + [aux_sym_string_literal_token1] = ACTIONS(1392), + [sym_char_literal] = ACTIONS(1392), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1394), + [sym_super] = ACTIONS(1394), + [sym_crate] = ACTIONS(1394), + [sym_metavariable] = ACTIONS(1392), + [sym_raw_string_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1392), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_macro_rules_BANG] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_loop] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_mod] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_type] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_unsafe] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_yield] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym_raw_string_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_macro_rules_BANG] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1398), + [anon_sym_i8] = ACTIONS(1398), + [anon_sym_u16] = ACTIONS(1398), + [anon_sym_i16] = ACTIONS(1398), + [anon_sym_u32] = ACTIONS(1398), + [anon_sym_i32] = ACTIONS(1398), + [anon_sym_u64] = ACTIONS(1398), + [anon_sym_i64] = ACTIONS(1398), + [anon_sym_u128] = ACTIONS(1398), + [anon_sym_i128] = ACTIONS(1398), + [anon_sym_isize] = ACTIONS(1398), + [anon_sym_usize] = ACTIONS(1398), + [anon_sym_f32] = ACTIONS(1398), + [anon_sym_f64] = ACTIONS(1398), + [anon_sym_bool] = ACTIONS(1398), + [anon_sym_str] = ACTIONS(1398), + [anon_sym_char] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_fn] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_impl] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1398), + [anon_sym_loop] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_mod] = ACTIONS(1398), + [anon_sym_pub] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_trait] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1398), + [anon_sym_use] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_COLON_COLON] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_move] = ACTIONS(1398), + [sym_integer_literal] = ACTIONS(1396), + [aux_sym_string_literal_token1] = ACTIONS(1396), + [sym_char_literal] = ACTIONS(1396), + [anon_sym_true] = ACTIONS(1398), + [anon_sym_false] = ACTIONS(1398), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1398), + [sym_super] = ACTIONS(1398), + [sym_crate] = ACTIONS(1398), + [sym_metavariable] = ACTIONS(1396), + [sym_raw_string_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1396), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_macro_rules_BANG] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_impl] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_loop] = ACTIONS(1392), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_mod] = ACTIONS(1392), - [anon_sym_pub] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_trait] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_unsafe] = ACTIONS(1392), - [anon_sym_use] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_DOT_DOT] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym_raw_string_literal] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_macro_rules_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_u8] = ACTIONS(1402), + [anon_sym_i8] = ACTIONS(1402), + [anon_sym_u16] = ACTIONS(1402), + [anon_sym_i16] = ACTIONS(1402), + [anon_sym_u32] = ACTIONS(1402), + [anon_sym_i32] = ACTIONS(1402), + [anon_sym_u64] = ACTIONS(1402), + [anon_sym_i64] = ACTIONS(1402), + [anon_sym_u128] = ACTIONS(1402), + [anon_sym_i128] = ACTIONS(1402), + [anon_sym_isize] = ACTIONS(1402), + [anon_sym_usize] = ACTIONS(1402), + [anon_sym_f32] = ACTIONS(1402), + [anon_sym_f64] = ACTIONS(1402), + [anon_sym_bool] = ACTIONS(1402), + [anon_sym_str] = ACTIONS(1402), + [anon_sym_char] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_async] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_fn] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_impl] = ACTIONS(1402), + [anon_sym_let] = ACTIONS(1402), + [anon_sym_loop] = ACTIONS(1402), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_mod] = ACTIONS(1402), + [anon_sym_pub] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_trait] = ACTIONS(1402), + [anon_sym_type] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1402), + [anon_sym_use] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_COLON_COLON] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_DOT_DOT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1400), + [aux_sym_string_literal_token1] = ACTIONS(1400), + [sym_char_literal] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1402), + [sym_super] = ACTIONS(1402), + [sym_crate] = ACTIONS(1402), + [sym_metavariable] = ACTIONS(1400), + [sym_raw_string_literal] = ACTIONS(1400), + [sym_float_literal] = ACTIONS(1400), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_macro_rules_BANG] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_async] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_impl] = ACTIONS(1396), - [anon_sym_let] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1396), - [anon_sym_mod] = ACTIONS(1396), - [anon_sym_pub] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_trait] = ACTIONS(1396), - [anon_sym_type] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1396), - [anon_sym_use] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym_raw_string_literal] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_macro_rules_BANG] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_u8] = ACTIONS(1406), + [anon_sym_i8] = ACTIONS(1406), + [anon_sym_u16] = ACTIONS(1406), + [anon_sym_i16] = ACTIONS(1406), + [anon_sym_u32] = ACTIONS(1406), + [anon_sym_i32] = ACTIONS(1406), + [anon_sym_u64] = ACTIONS(1406), + [anon_sym_i64] = ACTIONS(1406), + [anon_sym_u128] = ACTIONS(1406), + [anon_sym_i128] = ACTIONS(1406), + [anon_sym_isize] = ACTIONS(1406), + [anon_sym_usize] = ACTIONS(1406), + [anon_sym_f32] = ACTIONS(1406), + [anon_sym_f64] = ACTIONS(1406), + [anon_sym_bool] = ACTIONS(1406), + [anon_sym_str] = ACTIONS(1406), + [anon_sym_char] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_fn] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_impl] = ACTIONS(1406), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_loop] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1406), + [anon_sym_mod] = ACTIONS(1406), + [anon_sym_pub] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_trait] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1406), + [anon_sym_use] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_POUND] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_COLON_COLON] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_yield] = ACTIONS(1406), + [anon_sym_move] = ACTIONS(1406), + [sym_integer_literal] = ACTIONS(1404), + [aux_sym_string_literal_token1] = ACTIONS(1404), + [sym_char_literal] = ACTIONS(1404), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1406), + [sym_super] = ACTIONS(1406), + [sym_crate] = ACTIONS(1406), + [sym_metavariable] = ACTIONS(1404), + [sym_raw_string_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1404), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_macro_rules_BANG] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_loop] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsafe] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym_raw_string_literal] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), - [sym_block_comment] = ACTIONS(3), - }, - [329] = { - [sym_attribute_item] = STATE(527), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_macro_invocation] = STATE(2457), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1953), - [sym_match_arm] = STATE(482), - [sym_last_match_arm] = STATE(2501), - [sym_match_pattern] = STATE(2467), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_enum_variant_list_repeat1] = STATE(527), - [aux_sym_match_block_repeat1] = STATE(482), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), [anon_sym_u8] = ACTIONS(1410), [anon_sym_i8] = ACTIONS(1410), [anon_sym_u16] = ACTIONS(1410), @@ -46926,33 +47283,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1410), [anon_sym_str] = ACTIONS(1410), [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_impl] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_loop] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_mod] = ACTIONS(1410), + [anon_sym_pub] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_trait] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsafe] = ACTIONS(1410), + [anon_sym_use] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_DOT_DOT] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_yield] = ACTIONS(1410), + [anon_sym_move] = ACTIONS(1410), + [sym_integer_literal] = ACTIONS(1408), + [aux_sym_string_literal_token1] = ACTIONS(1408), + [sym_char_literal] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1410), + [anon_sym_false] = ACTIONS(1410), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_crate] = ACTIONS(1410), + [sym_metavariable] = ACTIONS(1408), + [sym_raw_string_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1408), + [sym_block_comment] = ACTIONS(3), + }, + [329] = { + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_macro_rules_BANG] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_u8] = ACTIONS(1414), + [anon_sym_i8] = ACTIONS(1414), + [anon_sym_u16] = ACTIONS(1414), + [anon_sym_i16] = ACTIONS(1414), + [anon_sym_u32] = ACTIONS(1414), + [anon_sym_i32] = ACTIONS(1414), + [anon_sym_u64] = ACTIONS(1414), + [anon_sym_i64] = ACTIONS(1414), + [anon_sym_u128] = ACTIONS(1414), + [anon_sym_i128] = ACTIONS(1414), + [anon_sym_isize] = ACTIONS(1414), + [anon_sym_usize] = ACTIONS(1414), + [anon_sym_f32] = ACTIONS(1414), + [anon_sym_f64] = ACTIONS(1414), + [anon_sym_bool] = ACTIONS(1414), + [anon_sym_str] = ACTIONS(1414), + [anon_sym_char] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), [anon_sym_default] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_fn] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_impl] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1414), + [anon_sym_loop] = ACTIONS(1414), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_mod] = ACTIONS(1414), + [anon_sym_pub] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_trait] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), [anon_sym_union] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_unsafe] = ACTIONS(1414), + [anon_sym_use] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_COLON_COLON] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_DOT_DOT] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_yield] = ACTIONS(1414), + [anon_sym_move] = ACTIONS(1414), + [sym_integer_literal] = ACTIONS(1412), + [aux_sym_string_literal_token1] = ACTIONS(1412), + [sym_char_literal] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1414), + [sym_super] = ACTIONS(1414), + [sym_crate] = ACTIONS(1414), + [sym_metavariable] = ACTIONS(1412), + [sym_raw_string_literal] = ACTIONS(1412), + [sym_float_literal] = ACTIONS(1412), [sym_block_comment] = ACTIONS(3), }, [330] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_macro_rules_BANG] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_u8] = ACTIONS(1418), + [anon_sym_i8] = ACTIONS(1418), + [anon_sym_u16] = ACTIONS(1418), + [anon_sym_i16] = ACTIONS(1418), + [anon_sym_u32] = ACTIONS(1418), + [anon_sym_i32] = ACTIONS(1418), + [anon_sym_u64] = ACTIONS(1418), + [anon_sym_i64] = ACTIONS(1418), + [anon_sym_u128] = ACTIONS(1418), + [anon_sym_i128] = ACTIONS(1418), + [anon_sym_isize] = ACTIONS(1418), + [anon_sym_usize] = ACTIONS(1418), + [anon_sym_f32] = ACTIONS(1418), + [anon_sym_f64] = ACTIONS(1418), + [anon_sym_bool] = ACTIONS(1418), + [anon_sym_str] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_fn] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_impl] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1418), + [anon_sym_loop] = ACTIONS(1418), + [anon_sym_match] = ACTIONS(1418), + [anon_sym_mod] = ACTIONS(1418), + [anon_sym_pub] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_trait] = ACTIONS(1418), + [anon_sym_type] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_COLON_COLON] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_yield] = ACTIONS(1418), + [anon_sym_move] = ACTIONS(1418), + [sym_integer_literal] = ACTIONS(1416), + [aux_sym_string_literal_token1] = ACTIONS(1416), + [sym_char_literal] = ACTIONS(1416), + [anon_sym_true] = ACTIONS(1418), + [anon_sym_false] = ACTIONS(1418), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1418), + [sym_super] = ACTIONS(1418), + [sym_crate] = ACTIONS(1418), + [sym_metavariable] = ACTIONS(1416), + [sym_raw_string_literal] = ACTIONS(1416), + [sym_float_literal] = ACTIONS(1416), + [sym_block_comment] = ACTIONS(3), + }, + [331] = { + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_macro_rules_BANG] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_u8] = ACTIONS(1422), + [anon_sym_i8] = ACTIONS(1422), + [anon_sym_u16] = ACTIONS(1422), + [anon_sym_i16] = ACTIONS(1422), + [anon_sym_u32] = ACTIONS(1422), + [anon_sym_i32] = ACTIONS(1422), + [anon_sym_u64] = ACTIONS(1422), + [anon_sym_i64] = ACTIONS(1422), + [anon_sym_u128] = ACTIONS(1422), + [anon_sym_i128] = ACTIONS(1422), + [anon_sym_isize] = ACTIONS(1422), + [anon_sym_usize] = ACTIONS(1422), + [anon_sym_f32] = ACTIONS(1422), + [anon_sym_f64] = ACTIONS(1422), + [anon_sym_bool] = ACTIONS(1422), + [anon_sym_str] = ACTIONS(1422), + [anon_sym_char] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_async] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_fn] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_impl] = ACTIONS(1422), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_loop] = ACTIONS(1422), + [anon_sym_match] = ACTIONS(1422), + [anon_sym_mod] = ACTIONS(1422), + [anon_sym_pub] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_trait] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_unsafe] = ACTIONS(1422), + [anon_sym_use] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_COLON_COLON] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_yield] = ACTIONS(1422), + [anon_sym_move] = ACTIONS(1422), + [sym_integer_literal] = ACTIONS(1420), + [aux_sym_string_literal_token1] = ACTIONS(1420), + [sym_char_literal] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1422), + [anon_sym_false] = ACTIONS(1422), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1422), + [sym_super] = ACTIONS(1422), + [sym_crate] = ACTIONS(1422), + [sym_metavariable] = ACTIONS(1420), + [sym_raw_string_literal] = ACTIONS(1420), + [sym_float_literal] = ACTIONS(1420), + [sym_block_comment] = ACTIONS(3), + }, + [332] = { [ts_builtin_sym_end] = ACTIONS(1424), [sym_identifier] = ACTIONS(1426), [anon_sym_SEMI] = ACTIONS(1424), @@ -47029,7 +47641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1424), [sym_block_comment] = ACTIONS(3), }, - [331] = { + [333] = { [ts_builtin_sym_end] = ACTIONS(1428), [sym_identifier] = ACTIONS(1430), [anon_sym_SEMI] = ACTIONS(1428), @@ -47106,7 +47718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1428), [sym_block_comment] = ACTIONS(3), }, - [332] = { + [334] = { [ts_builtin_sym_end] = ACTIONS(1432), [sym_identifier] = ACTIONS(1434), [anon_sym_SEMI] = ACTIONS(1432), @@ -47183,7 +47795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1432), [sym_block_comment] = ACTIONS(3), }, - [333] = { + [335] = { [ts_builtin_sym_end] = ACTIONS(1436), [sym_identifier] = ACTIONS(1438), [anon_sym_SEMI] = ACTIONS(1436), @@ -47260,7 +47872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1436), [sym_block_comment] = ACTIONS(3), }, - [334] = { + [336] = { [ts_builtin_sym_end] = ACTIONS(1440), [sym_identifier] = ACTIONS(1442), [anon_sym_SEMI] = ACTIONS(1440), @@ -47337,7 +47949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1440), [sym_block_comment] = ACTIONS(3), }, - [335] = { + [337] = { [ts_builtin_sym_end] = ACTIONS(1444), [sym_identifier] = ACTIONS(1446), [anon_sym_SEMI] = ACTIONS(1444), @@ -47414,7 +48026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1444), [sym_block_comment] = ACTIONS(3), }, - [336] = { + [338] = { [ts_builtin_sym_end] = ACTIONS(1448), [sym_identifier] = ACTIONS(1450), [anon_sym_SEMI] = ACTIONS(1448), @@ -47491,7 +48103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1448), [sym_block_comment] = ACTIONS(3), }, - [337] = { + [339] = { [ts_builtin_sym_end] = ACTIONS(1452), [sym_identifier] = ACTIONS(1454), [anon_sym_SEMI] = ACTIONS(1452), @@ -47568,7 +48180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1452), [sym_block_comment] = ACTIONS(3), }, - [338] = { + [340] = { [ts_builtin_sym_end] = ACTIONS(1456), [sym_identifier] = ACTIONS(1458), [anon_sym_SEMI] = ACTIONS(1456), @@ -47645,7 +48257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1456), [sym_block_comment] = ACTIONS(3), }, - [339] = { + [341] = { [ts_builtin_sym_end] = ACTIONS(1460), [sym_identifier] = ACTIONS(1462), [anon_sym_SEMI] = ACTIONS(1460), @@ -47722,7 +48334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1460), [sym_block_comment] = ACTIONS(3), }, - [340] = { + [342] = { [ts_builtin_sym_end] = ACTIONS(1464), [sym_identifier] = ACTIONS(1466), [anon_sym_SEMI] = ACTIONS(1464), @@ -47799,7 +48411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1464), [sym_block_comment] = ACTIONS(3), }, - [341] = { + [343] = { [ts_builtin_sym_end] = ACTIONS(1468), [sym_identifier] = ACTIONS(1470), [anon_sym_SEMI] = ACTIONS(1468), @@ -47876,7 +48488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1468), [sym_block_comment] = ACTIONS(3), }, - [342] = { + [344] = { [ts_builtin_sym_end] = ACTIONS(1472), [sym_identifier] = ACTIONS(1474), [anon_sym_SEMI] = ACTIONS(1472), @@ -47953,7 +48565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1472), [sym_block_comment] = ACTIONS(3), }, - [343] = { + [345] = { [ts_builtin_sym_end] = ACTIONS(1476), [sym_identifier] = ACTIONS(1478), [anon_sym_SEMI] = ACTIONS(1476), @@ -48030,7 +48642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1476), [sym_block_comment] = ACTIONS(3), }, - [344] = { + [346] = { [ts_builtin_sym_end] = ACTIONS(1480), [sym_identifier] = ACTIONS(1482), [anon_sym_SEMI] = ACTIONS(1480), @@ -48107,7 +48719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1480), [sym_block_comment] = ACTIONS(3), }, - [345] = { + [347] = { [ts_builtin_sym_end] = ACTIONS(1484), [sym_identifier] = ACTIONS(1486), [anon_sym_SEMI] = ACTIONS(1484), @@ -48184,7 +48796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1484), [sym_block_comment] = ACTIONS(3), }, - [346] = { + [348] = { [ts_builtin_sym_end] = ACTIONS(1488), [sym_identifier] = ACTIONS(1490), [anon_sym_SEMI] = ACTIONS(1488), @@ -48261,7 +48873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1488), [sym_block_comment] = ACTIONS(3), }, - [347] = { + [349] = { [ts_builtin_sym_end] = ACTIONS(1492), [sym_identifier] = ACTIONS(1494), [anon_sym_SEMI] = ACTIONS(1492), @@ -48338,7 +48950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1492), [sym_block_comment] = ACTIONS(3), }, - [348] = { + [350] = { [ts_builtin_sym_end] = ACTIONS(1496), [sym_identifier] = ACTIONS(1498), [anon_sym_SEMI] = ACTIONS(1496), @@ -48415,7 +49027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1496), [sym_block_comment] = ACTIONS(3), }, - [349] = { + [351] = { [ts_builtin_sym_end] = ACTIONS(1500), [sym_identifier] = ACTIONS(1502), [anon_sym_SEMI] = ACTIONS(1500), @@ -48492,7 +49104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1500), [sym_block_comment] = ACTIONS(3), }, - [350] = { + [352] = { [ts_builtin_sym_end] = ACTIONS(1504), [sym_identifier] = ACTIONS(1506), [anon_sym_SEMI] = ACTIONS(1504), @@ -48569,7 +49181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1504), [sym_block_comment] = ACTIONS(3), }, - [351] = { + [353] = { [ts_builtin_sym_end] = ACTIONS(1508), [sym_identifier] = ACTIONS(1510), [anon_sym_SEMI] = ACTIONS(1508), @@ -48646,7 +49258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1508), [sym_block_comment] = ACTIONS(3), }, - [352] = { + [354] = { [ts_builtin_sym_end] = ACTIONS(1512), [sym_identifier] = ACTIONS(1514), [anon_sym_SEMI] = ACTIONS(1512), @@ -48723,7 +49335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1512), [sym_block_comment] = ACTIONS(3), }, - [353] = { + [355] = { [ts_builtin_sym_end] = ACTIONS(1516), [sym_identifier] = ACTIONS(1518), [anon_sym_SEMI] = ACTIONS(1516), @@ -48800,7 +49412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1516), [sym_block_comment] = ACTIONS(3), }, - [354] = { + [356] = { [ts_builtin_sym_end] = ACTIONS(1520), [sym_identifier] = ACTIONS(1522), [anon_sym_SEMI] = ACTIONS(1520), @@ -48877,7 +49489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1520), [sym_block_comment] = ACTIONS(3), }, - [355] = { + [357] = { [ts_builtin_sym_end] = ACTIONS(1524), [sym_identifier] = ACTIONS(1526), [anon_sym_SEMI] = ACTIONS(1524), @@ -48954,7 +49566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1524), [sym_block_comment] = ACTIONS(3), }, - [356] = { + [358] = { [ts_builtin_sym_end] = ACTIONS(1528), [sym_identifier] = ACTIONS(1530), [anon_sym_SEMI] = ACTIONS(1528), @@ -49031,7 +49643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1528), [sym_block_comment] = ACTIONS(3), }, - [357] = { + [359] = { [ts_builtin_sym_end] = ACTIONS(1532), [sym_identifier] = ACTIONS(1534), [anon_sym_SEMI] = ACTIONS(1532), @@ -49108,7 +49720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1532), [sym_block_comment] = ACTIONS(3), }, - [358] = { + [360] = { [ts_builtin_sym_end] = ACTIONS(1536), [sym_identifier] = ACTIONS(1538), [anon_sym_SEMI] = ACTIONS(1536), @@ -49185,315 +49797,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1536), [sym_block_comment] = ACTIONS(3), }, - [359] = { - [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), + [361] = { + [sym_attribute_item] = STATE(533), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_macro_invocation] = STATE(2345), + [sym_scoped_identifier] = STATE(1557), + [sym_scoped_type_identifier] = STATE(1913), + [sym_match_arm] = STATE(491), + [sym_last_match_arm] = STATE(2354), + [sym_match_pattern] = STATE(2358), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1933), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(533), + [aux_sym_match_block_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1200), [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), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [360] = { - [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), + [362] = { + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_macro_rules_BANG] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_u8] = ACTIONS(1544), + [anon_sym_i8] = ACTIONS(1544), + [anon_sym_u16] = ACTIONS(1544), + [anon_sym_i16] = ACTIONS(1544), + [anon_sym_u32] = ACTIONS(1544), + [anon_sym_i32] = ACTIONS(1544), + [anon_sym_u64] = ACTIONS(1544), + [anon_sym_i64] = ACTIONS(1544), + [anon_sym_u128] = ACTIONS(1544), + [anon_sym_i128] = ACTIONS(1544), + [anon_sym_isize] = ACTIONS(1544), + [anon_sym_usize] = ACTIONS(1544), + [anon_sym_f32] = ACTIONS(1544), + [anon_sym_f64] = ACTIONS(1544), + [anon_sym_bool] = ACTIONS(1544), + [anon_sym_str] = ACTIONS(1544), + [anon_sym_char] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_async] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_impl] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1544), + [anon_sym_match] = ACTIONS(1544), + [anon_sym_mod] = ACTIONS(1544), + [anon_sym_pub] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_trait] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_unsafe] = ACTIONS(1544), + [anon_sym_use] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_move] = ACTIONS(1544), + [sym_integer_literal] = ACTIONS(1542), + [aux_sym_string_literal_token1] = ACTIONS(1542), + [sym_char_literal] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1544), + [sym_super] = ACTIONS(1544), + [sym_crate] = ACTIONS(1544), + [sym_metavariable] = ACTIONS(1542), + [sym_raw_string_literal] = ACTIONS(1542), + [sym_float_literal] = ACTIONS(1542), [sym_block_comment] = ACTIONS(3), }, - [361] = { - [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), + [363] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_macro_rules_BANG] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_u8] = ACTIONS(1548), + [anon_sym_i8] = ACTIONS(1548), + [anon_sym_u16] = ACTIONS(1548), + [anon_sym_i16] = ACTIONS(1548), + [anon_sym_u32] = ACTIONS(1548), + [anon_sym_i32] = ACTIONS(1548), + [anon_sym_u64] = ACTIONS(1548), + [anon_sym_i64] = ACTIONS(1548), + [anon_sym_u128] = ACTIONS(1548), + [anon_sym_i128] = ACTIONS(1548), + [anon_sym_isize] = ACTIONS(1548), + [anon_sym_usize] = ACTIONS(1548), + [anon_sym_f32] = ACTIONS(1548), + [anon_sym_f64] = ACTIONS(1548), + [anon_sym_bool] = ACTIONS(1548), + [anon_sym_str] = ACTIONS(1548), + [anon_sym_char] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_async] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_fn] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_impl] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_loop] = ACTIONS(1548), + [anon_sym_match] = ACTIONS(1548), + [anon_sym_mod] = ACTIONS(1548), + [anon_sym_pub] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_trait] = ACTIONS(1548), + [anon_sym_type] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_unsafe] = ACTIONS(1548), + [anon_sym_use] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_COLON_COLON] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_DOT_DOT] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1548), + [anon_sym_move] = ACTIONS(1548), + [sym_integer_literal] = ACTIONS(1546), + [aux_sym_string_literal_token1] = ACTIONS(1546), + [sym_char_literal] = ACTIONS(1546), + [anon_sym_true] = ACTIONS(1548), + [anon_sym_false] = ACTIONS(1548), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1548), + [sym_super] = ACTIONS(1548), + [sym_crate] = ACTIONS(1548), + [sym_metavariable] = ACTIONS(1546), + [sym_raw_string_literal] = ACTIONS(1546), + [sym_float_literal] = ACTIONS(1546), [sym_block_comment] = ACTIONS(3), }, - [362] = { - [sym_attribute_item] = STATE(527), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_macro_invocation] = STATE(2457), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1953), - [sym_match_arm] = STATE(492), - [sym_last_match_arm] = STATE(2466), - [sym_match_pattern] = STATE(2467), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_enum_variant_list_repeat1] = STATE(527), - [aux_sym_match_block_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [364] = { + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_macro_rules_BANG] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_u8] = ACTIONS(1552), + [anon_sym_i8] = ACTIONS(1552), + [anon_sym_u16] = ACTIONS(1552), + [anon_sym_i16] = ACTIONS(1552), + [anon_sym_u32] = ACTIONS(1552), + [anon_sym_i32] = ACTIONS(1552), + [anon_sym_u64] = ACTIONS(1552), + [anon_sym_i64] = ACTIONS(1552), + [anon_sym_u128] = ACTIONS(1552), + [anon_sym_i128] = ACTIONS(1552), + [anon_sym_isize] = ACTIONS(1552), + [anon_sym_usize] = ACTIONS(1552), + [anon_sym_f32] = ACTIONS(1552), + [anon_sym_f64] = ACTIONS(1552), + [anon_sym_bool] = ACTIONS(1552), + [anon_sym_str] = ACTIONS(1552), + [anon_sym_char] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_async] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_fn] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_impl] = ACTIONS(1552), + [anon_sym_let] = ACTIONS(1552), + [anon_sym_loop] = ACTIONS(1552), + [anon_sym_match] = ACTIONS(1552), + [anon_sym_mod] = ACTIONS(1552), + [anon_sym_pub] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_trait] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_unsafe] = ACTIONS(1552), + [anon_sym_use] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_COLON_COLON] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_yield] = ACTIONS(1552), + [anon_sym_move] = ACTIONS(1552), + [sym_integer_literal] = ACTIONS(1550), + [aux_sym_string_literal_token1] = ACTIONS(1550), + [sym_char_literal] = ACTIONS(1550), + [anon_sym_true] = ACTIONS(1552), + [anon_sym_false] = ACTIONS(1552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1552), + [sym_super] = ACTIONS(1552), + [sym_crate] = ACTIONS(1552), + [sym_metavariable] = ACTIONS(1550), + [sym_raw_string_literal] = ACTIONS(1550), + [sym_float_literal] = ACTIONS(1550), [sym_block_comment] = ACTIONS(3), }, - [363] = { + [365] = { [ts_builtin_sym_end] = ACTIONS(1554), [sym_identifier] = ACTIONS(1556), [anon_sym_SEMI] = ACTIONS(1554), @@ -49570,7 +50182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1554), [sym_block_comment] = ACTIONS(3), }, - [364] = { + [366] = { [ts_builtin_sym_end] = ACTIONS(1558), [sym_identifier] = ACTIONS(1560), [anon_sym_SEMI] = ACTIONS(1558), @@ -49647,7 +50259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1558), [sym_block_comment] = ACTIONS(3), }, - [365] = { + [367] = { [ts_builtin_sym_end] = ACTIONS(1562), [sym_identifier] = ACTIONS(1564), [anon_sym_SEMI] = ACTIONS(1562), @@ -49724,7 +50336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1562), [sym_block_comment] = ACTIONS(3), }, - [366] = { + [368] = { [ts_builtin_sym_end] = ACTIONS(1566), [sym_identifier] = ACTIONS(1568), [anon_sym_SEMI] = ACTIONS(1566), @@ -49801,7 +50413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1566), [sym_block_comment] = ACTIONS(3), }, - [367] = { + [369] = { [ts_builtin_sym_end] = ACTIONS(1570), [sym_identifier] = ACTIONS(1572), [anon_sym_SEMI] = ACTIONS(1570), @@ -49878,7 +50490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1570), [sym_block_comment] = ACTIONS(3), }, - [368] = { + [370] = { [ts_builtin_sym_end] = ACTIONS(1574), [sym_identifier] = ACTIONS(1576), [anon_sym_SEMI] = ACTIONS(1574), @@ -49955,7 +50567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1574), [sym_block_comment] = ACTIONS(3), }, - [369] = { + [371] = { [ts_builtin_sym_end] = ACTIONS(1578), [sym_identifier] = ACTIONS(1580), [anon_sym_SEMI] = ACTIONS(1578), @@ -50032,7 +50644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1578), [sym_block_comment] = ACTIONS(3), }, - [370] = { + [372] = { [ts_builtin_sym_end] = ACTIONS(1582), [sym_identifier] = ACTIONS(1584), [anon_sym_SEMI] = ACTIONS(1582), @@ -50109,7 +50721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1582), [sym_block_comment] = ACTIONS(3), }, - [371] = { + [373] = { [ts_builtin_sym_end] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [anon_sym_SEMI] = ACTIONS(1586), @@ -50186,7 +50798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1586), [sym_block_comment] = ACTIONS(3), }, - [372] = { + [374] = { [ts_builtin_sym_end] = ACTIONS(1590), [sym_identifier] = ACTIONS(1592), [anon_sym_SEMI] = ACTIONS(1590), @@ -50263,7 +50875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1590), [sym_block_comment] = ACTIONS(3), }, - [373] = { + [375] = { [ts_builtin_sym_end] = ACTIONS(1594), [sym_identifier] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1594), @@ -50340,7 +50952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1594), [sym_block_comment] = ACTIONS(3), }, - [374] = { + [376] = { [ts_builtin_sym_end] = ACTIONS(1598), [sym_identifier] = ACTIONS(1600), [anon_sym_SEMI] = ACTIONS(1598), @@ -50417,7 +51029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1598), [sym_block_comment] = ACTIONS(3), }, - [375] = { + [377] = { [ts_builtin_sym_end] = ACTIONS(1602), [sym_identifier] = ACTIONS(1604), [anon_sym_SEMI] = ACTIONS(1602), @@ -50494,7 +51106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1602), [sym_block_comment] = ACTIONS(3), }, - [376] = { + [378] = { [ts_builtin_sym_end] = ACTIONS(1606), [sym_identifier] = ACTIONS(1608), [anon_sym_SEMI] = ACTIONS(1606), @@ -50571,7 +51183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1606), [sym_block_comment] = ACTIONS(3), }, - [377] = { + [379] = { [ts_builtin_sym_end] = ACTIONS(1610), [sym_identifier] = ACTIONS(1612), [anon_sym_SEMI] = ACTIONS(1610), @@ -50648,7 +51260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1610), [sym_block_comment] = ACTIONS(3), }, - [378] = { + [380] = { [ts_builtin_sym_end] = ACTIONS(1614), [sym_identifier] = ACTIONS(1616), [anon_sym_SEMI] = ACTIONS(1614), @@ -50725,7 +51337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1614), [sym_block_comment] = ACTIONS(3), }, - [379] = { + [381] = { [ts_builtin_sym_end] = ACTIONS(1618), [sym_identifier] = ACTIONS(1620), [anon_sym_SEMI] = ACTIONS(1618), @@ -50802,7 +51414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1618), [sym_block_comment] = ACTIONS(3), }, - [380] = { + [382] = { [ts_builtin_sym_end] = ACTIONS(1622), [sym_identifier] = ACTIONS(1624), [anon_sym_SEMI] = ACTIONS(1622), @@ -50879,7 +51491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1622), [sym_block_comment] = ACTIONS(3), }, - [381] = { + [383] = { [ts_builtin_sym_end] = ACTIONS(1626), [sym_identifier] = ACTIONS(1628), [anon_sym_SEMI] = ACTIONS(1626), @@ -50956,7 +51568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1626), [sym_block_comment] = ACTIONS(3), }, - [382] = { + [384] = { [ts_builtin_sym_end] = ACTIONS(1630), [sym_identifier] = ACTIONS(1632), [anon_sym_SEMI] = ACTIONS(1630), @@ -51033,7 +51645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1630), [sym_block_comment] = ACTIONS(3), }, - [383] = { + [385] = { [ts_builtin_sym_end] = ACTIONS(1634), [sym_identifier] = ACTIONS(1636), [anon_sym_SEMI] = ACTIONS(1634), @@ -51110,7 +51722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1634), [sym_block_comment] = ACTIONS(3), }, - [384] = { + [386] = { [ts_builtin_sym_end] = ACTIONS(1638), [sym_identifier] = ACTIONS(1640), [anon_sym_SEMI] = ACTIONS(1638), @@ -51187,2471 +51799,2471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1638), [sym_block_comment] = ACTIONS(3), }, - [385] = { - [ts_builtin_sym_end] = ACTIONS(1642), - [sym_identifier] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_macro_rules_BANG] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1642), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_u8] = ACTIONS(1644), - [anon_sym_i8] = ACTIONS(1644), - [anon_sym_u16] = ACTIONS(1644), - [anon_sym_i16] = ACTIONS(1644), - [anon_sym_u32] = ACTIONS(1644), - [anon_sym_i32] = ACTIONS(1644), - [anon_sym_u64] = ACTIONS(1644), - [anon_sym_i64] = ACTIONS(1644), - [anon_sym_u128] = ACTIONS(1644), - [anon_sym_i128] = ACTIONS(1644), - [anon_sym_isize] = ACTIONS(1644), - [anon_sym_usize] = ACTIONS(1644), - [anon_sym_f32] = ACTIONS(1644), - [anon_sym_f64] = ACTIONS(1644), - [anon_sym_bool] = ACTIONS(1644), - [anon_sym_str] = ACTIONS(1644), - [anon_sym_char] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1644), - [anon_sym_enum] = ACTIONS(1644), - [anon_sym_fn] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_let] = ACTIONS(1644), - [anon_sym_loop] = ACTIONS(1644), - [anon_sym_match] = ACTIONS(1644), - [anon_sym_mod] = ACTIONS(1644), - [anon_sym_pub] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_struct] = ACTIONS(1644), - [anon_sym_trait] = ACTIONS(1644), - [anon_sym_type] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1644), - [anon_sym_unsafe] = ACTIONS(1644), - [anon_sym_use] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_POUND] = ACTIONS(1642), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_extern] = ACTIONS(1644), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_COLON_COLON] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1642), - [anon_sym_DOT_DOT] = ACTIONS(1642), - [anon_sym_DASH] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_yield] = ACTIONS(1644), - [anon_sym_move] = ACTIONS(1644), - [sym_integer_literal] = ACTIONS(1642), - [aux_sym_string_literal_token1] = ACTIONS(1642), - [sym_char_literal] = ACTIONS(1642), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1644), - [sym_super] = ACTIONS(1644), - [sym_crate] = ACTIONS(1644), - [sym_metavariable] = ACTIONS(1642), - [sym_raw_string_literal] = ACTIONS(1642), - [sym_float_literal] = ACTIONS(1642), - [sym_block_comment] = ACTIONS(3), - }, - [386] = { - [ts_builtin_sym_end] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_macro_rules_BANG] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_u8] = ACTIONS(1648), - [anon_sym_i8] = ACTIONS(1648), - [anon_sym_u16] = ACTIONS(1648), - [anon_sym_i16] = ACTIONS(1648), - [anon_sym_u32] = ACTIONS(1648), - [anon_sym_i32] = ACTIONS(1648), - [anon_sym_u64] = ACTIONS(1648), - [anon_sym_i64] = ACTIONS(1648), - [anon_sym_u128] = ACTIONS(1648), - [anon_sym_i128] = ACTIONS(1648), - [anon_sym_isize] = ACTIONS(1648), - [anon_sym_usize] = ACTIONS(1648), - [anon_sym_f32] = ACTIONS(1648), - [anon_sym_f64] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_str] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_async] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_enum] = ACTIONS(1648), - [anon_sym_fn] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_impl] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_mod] = ACTIONS(1648), - [anon_sym_pub] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_struct] = ACTIONS(1648), - [anon_sym_trait] = ACTIONS(1648), - [anon_sym_type] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1648), - [anon_sym_unsafe] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1646), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_LT] = ACTIONS(1646), - [anon_sym_COLON_COLON] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1646), - [anon_sym_DOT_DOT] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_PIPE] = ACTIONS(1646), - [anon_sym_yield] = ACTIONS(1648), - [anon_sym_move] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1646), - [aux_sym_string_literal_token1] = ACTIONS(1646), - [sym_char_literal] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1648), - [sym_super] = ACTIONS(1648), - [sym_crate] = ACTIONS(1648), - [sym_metavariable] = ACTIONS(1646), - [sym_raw_string_literal] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1646), - [sym_block_comment] = ACTIONS(3), - }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_macro_rules_BANG] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_u8] = ACTIONS(1652), - [anon_sym_i8] = ACTIONS(1652), - [anon_sym_u16] = ACTIONS(1652), - [anon_sym_i16] = ACTIONS(1652), - [anon_sym_u32] = ACTIONS(1652), - [anon_sym_i32] = ACTIONS(1652), - [anon_sym_u64] = ACTIONS(1652), - [anon_sym_i64] = ACTIONS(1652), - [anon_sym_u128] = ACTIONS(1652), - [anon_sym_i128] = ACTIONS(1652), - [anon_sym_isize] = ACTIONS(1652), - [anon_sym_usize] = ACTIONS(1652), - [anon_sym_f32] = ACTIONS(1652), - [anon_sym_f64] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_str] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_default] = ACTIONS(1652), - [anon_sym_enum] = ACTIONS(1652), - [anon_sym_fn] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_impl] = ACTIONS(1652), - [anon_sym_let] = ACTIONS(1652), - [anon_sym_loop] = ACTIONS(1652), - [anon_sym_match] = ACTIONS(1652), - [anon_sym_mod] = ACTIONS(1652), - [anon_sym_pub] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_struct] = ACTIONS(1652), - [anon_sym_trait] = ACTIONS(1652), - [anon_sym_type] = ACTIONS(1652), - [anon_sym_union] = ACTIONS(1652), - [anon_sym_unsafe] = ACTIONS(1652), - [anon_sym_use] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1652), - [anon_sym_LT] = ACTIONS(1650), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_yield] = ACTIONS(1652), - [anon_sym_move] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1650), - [aux_sym_string_literal_token1] = ACTIONS(1650), - [sym_char_literal] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1652), - [sym_super] = ACTIONS(1652), - [sym_crate] = ACTIONS(1652), - [sym_metavariable] = ACTIONS(1650), - [sym_raw_string_literal] = ACTIONS(1650), - [sym_float_literal] = ACTIONS(1650), + [sym_attribute_item] = STATE(533), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_macro_invocation] = STATE(2345), + [sym_scoped_identifier] = STATE(1557), + [sym_scoped_type_identifier] = STATE(1913), + [sym_match_arm] = STATE(489), + [sym_last_match_arm] = STATE(2489), + [sym_match_pattern] = STATE(2358), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1933), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(533), + [aux_sym_match_block_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_macro_rules_BANG] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_async] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1656), - [anon_sym_enum] = ACTIONS(1656), - [anon_sym_fn] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_impl] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1656), - [anon_sym_loop] = ACTIONS(1656), - [anon_sym_match] = ACTIONS(1656), - [anon_sym_mod] = ACTIONS(1656), - [anon_sym_pub] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_struct] = ACTIONS(1656), - [anon_sym_trait] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1656), - [anon_sym_unsafe] = ACTIONS(1656), - [anon_sym_use] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(1654), - [anon_sym_BANG] = ACTIONS(1654), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1654), - [anon_sym_COLON_COLON] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1654), - [anon_sym_DOT_DOT] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1654), - [anon_sym_yield] = ACTIONS(1656), - [anon_sym_move] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1654), - [aux_sym_string_literal_token1] = ACTIONS(1654), - [sym_char_literal] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1656), - [sym_super] = ACTIONS(1656), - [sym_crate] = ACTIONS(1656), - [sym_metavariable] = ACTIONS(1654), - [sym_raw_string_literal] = ACTIONS(1654), - [sym_float_literal] = ACTIONS(1654), + [ts_builtin_sym_end] = ACTIONS(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), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1658), - [sym_identifier] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_macro_rules_BANG] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_u8] = ACTIONS(1660), - [anon_sym_i8] = ACTIONS(1660), - [anon_sym_u16] = ACTIONS(1660), - [anon_sym_i16] = ACTIONS(1660), - [anon_sym_u32] = ACTIONS(1660), - [anon_sym_i32] = ACTIONS(1660), - [anon_sym_u64] = ACTIONS(1660), - [anon_sym_i64] = ACTIONS(1660), - [anon_sym_u128] = ACTIONS(1660), - [anon_sym_i128] = ACTIONS(1660), - [anon_sym_isize] = ACTIONS(1660), - [anon_sym_usize] = ACTIONS(1660), - [anon_sym_f32] = ACTIONS(1660), - [anon_sym_f64] = ACTIONS(1660), - [anon_sym_bool] = ACTIONS(1660), - [anon_sym_str] = ACTIONS(1660), - [anon_sym_char] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_async] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_const] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_default] = ACTIONS(1660), - [anon_sym_enum] = ACTIONS(1660), - [anon_sym_fn] = ACTIONS(1660), - [anon_sym_for] = ACTIONS(1660), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_impl] = ACTIONS(1660), - [anon_sym_let] = ACTIONS(1660), - [anon_sym_loop] = ACTIONS(1660), - [anon_sym_match] = ACTIONS(1660), - [anon_sym_mod] = ACTIONS(1660), - [anon_sym_pub] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_struct] = ACTIONS(1660), - [anon_sym_trait] = ACTIONS(1660), - [anon_sym_type] = ACTIONS(1660), - [anon_sym_union] = ACTIONS(1660), - [anon_sym_unsafe] = ACTIONS(1660), - [anon_sym_use] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(1658), - [anon_sym_BANG] = ACTIONS(1658), - [anon_sym_extern] = ACTIONS(1660), - [anon_sym_LT] = ACTIONS(1658), - [anon_sym_COLON_COLON] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_DOT_DOT] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PIPE] = ACTIONS(1658), - [anon_sym_yield] = ACTIONS(1660), - [anon_sym_move] = ACTIONS(1660), - [sym_integer_literal] = ACTIONS(1658), - [aux_sym_string_literal_token1] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1660), - [sym_super] = ACTIONS(1660), - [sym_crate] = ACTIONS(1660), - [sym_metavariable] = ACTIONS(1658), - [sym_raw_string_literal] = ACTIONS(1658), - [sym_float_literal] = ACTIONS(1658), + [ts_builtin_sym_end] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_macro_rules_BANG] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_u8] = ACTIONS(1650), + [anon_sym_i8] = ACTIONS(1650), + [anon_sym_u16] = ACTIONS(1650), + [anon_sym_i16] = ACTIONS(1650), + [anon_sym_u32] = ACTIONS(1650), + [anon_sym_i32] = ACTIONS(1650), + [anon_sym_u64] = ACTIONS(1650), + [anon_sym_i64] = ACTIONS(1650), + [anon_sym_u128] = ACTIONS(1650), + [anon_sym_i128] = ACTIONS(1650), + [anon_sym_isize] = ACTIONS(1650), + [anon_sym_usize] = ACTIONS(1650), + [anon_sym_f32] = ACTIONS(1650), + [anon_sym_f64] = ACTIONS(1650), + [anon_sym_bool] = ACTIONS(1650), + [anon_sym_str] = ACTIONS(1650), + [anon_sym_char] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_async] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), + [anon_sym_default] = ACTIONS(1650), + [anon_sym_enum] = ACTIONS(1650), + [anon_sym_fn] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_impl] = ACTIONS(1650), + [anon_sym_let] = ACTIONS(1650), + [anon_sym_loop] = ACTIONS(1650), + [anon_sym_match] = ACTIONS(1650), + [anon_sym_mod] = ACTIONS(1650), + [anon_sym_pub] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1650), + [anon_sym_struct] = ACTIONS(1650), + [anon_sym_trait] = ACTIONS(1650), + [anon_sym_type] = ACTIONS(1650), + [anon_sym_union] = ACTIONS(1650), + [anon_sym_unsafe] = ACTIONS(1650), + [anon_sym_use] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_COLON_COLON] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_yield] = ACTIONS(1650), + [anon_sym_move] = ACTIONS(1650), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1648), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1648), + [sym_raw_string_literal] = ACTIONS(1648), + [sym_float_literal] = ACTIONS(1648), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1662), - [sym_identifier] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_macro_rules_BANG] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_LBRACE] = ACTIONS(1662), - [anon_sym_RBRACE] = ACTIONS(1662), - [anon_sym_LBRACK] = ACTIONS(1662), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_u8] = ACTIONS(1664), - [anon_sym_i8] = ACTIONS(1664), - [anon_sym_u16] = ACTIONS(1664), - [anon_sym_i16] = ACTIONS(1664), - [anon_sym_u32] = ACTIONS(1664), - [anon_sym_i32] = ACTIONS(1664), - [anon_sym_u64] = ACTIONS(1664), - [anon_sym_i64] = ACTIONS(1664), - [anon_sym_u128] = ACTIONS(1664), - [anon_sym_i128] = ACTIONS(1664), - [anon_sym_isize] = ACTIONS(1664), - [anon_sym_usize] = ACTIONS(1664), - [anon_sym_f32] = ACTIONS(1664), - [anon_sym_f64] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_str] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_SQUOTE] = ACTIONS(1664), - [anon_sym_async] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_default] = ACTIONS(1664), - [anon_sym_enum] = ACTIONS(1664), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_impl] = ACTIONS(1664), - [anon_sym_let] = ACTIONS(1664), - [anon_sym_loop] = ACTIONS(1664), - [anon_sym_match] = ACTIONS(1664), - [anon_sym_mod] = ACTIONS(1664), - [anon_sym_pub] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_struct] = ACTIONS(1664), - [anon_sym_trait] = ACTIONS(1664), - [anon_sym_type] = ACTIONS(1664), - [anon_sym_union] = ACTIONS(1664), - [anon_sym_unsafe] = ACTIONS(1664), - [anon_sym_use] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(1662), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(1662), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_DOT_DOT] = ACTIONS(1662), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_PIPE] = ACTIONS(1662), - [anon_sym_yield] = ACTIONS(1664), - [anon_sym_move] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1662), - [aux_sym_string_literal_token1] = ACTIONS(1662), - [sym_char_literal] = ACTIONS(1662), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1664), - [sym_super] = ACTIONS(1664), - [sym_crate] = ACTIONS(1664), - [sym_metavariable] = ACTIONS(1662), - [sym_raw_string_literal] = ACTIONS(1662), - [sym_float_literal] = ACTIONS(1662), + [ts_builtin_sym_end] = ACTIONS(1652), + [sym_identifier] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_macro_rules_BANG] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_u8] = ACTIONS(1654), + [anon_sym_i8] = ACTIONS(1654), + [anon_sym_u16] = ACTIONS(1654), + [anon_sym_i16] = ACTIONS(1654), + [anon_sym_u32] = ACTIONS(1654), + [anon_sym_i32] = ACTIONS(1654), + [anon_sym_u64] = ACTIONS(1654), + [anon_sym_i64] = ACTIONS(1654), + [anon_sym_u128] = ACTIONS(1654), + [anon_sym_i128] = ACTIONS(1654), + [anon_sym_isize] = ACTIONS(1654), + [anon_sym_usize] = ACTIONS(1654), + [anon_sym_f32] = ACTIONS(1654), + [anon_sym_f64] = ACTIONS(1654), + [anon_sym_bool] = ACTIONS(1654), + [anon_sym_str] = ACTIONS(1654), + [anon_sym_char] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_async] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_const] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_enum] = ACTIONS(1654), + [anon_sym_fn] = ACTIONS(1654), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_impl] = ACTIONS(1654), + [anon_sym_let] = ACTIONS(1654), + [anon_sym_loop] = ACTIONS(1654), + [anon_sym_match] = ACTIONS(1654), + [anon_sym_mod] = ACTIONS(1654), + [anon_sym_pub] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1654), + [anon_sym_trait] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_union] = ACTIONS(1654), + [anon_sym_unsafe] = ACTIONS(1654), + [anon_sym_use] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_DOT_DOT] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_yield] = ACTIONS(1654), + [anon_sym_move] = ACTIONS(1654), + [sym_integer_literal] = ACTIONS(1652), + [aux_sym_string_literal_token1] = ACTIONS(1652), + [sym_char_literal] = ACTIONS(1652), + [anon_sym_true] = ACTIONS(1654), + [anon_sym_false] = ACTIONS(1654), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1654), + [sym_super] = ACTIONS(1654), + [sym_crate] = ACTIONS(1654), + [sym_metavariable] = ACTIONS(1652), + [sym_raw_string_literal] = ACTIONS(1652), + [sym_float_literal] = ACTIONS(1652), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_macro_rules_BANG] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_u8] = ACTIONS(1668), - [anon_sym_i8] = ACTIONS(1668), - [anon_sym_u16] = ACTIONS(1668), - [anon_sym_i16] = ACTIONS(1668), - [anon_sym_u32] = ACTIONS(1668), - [anon_sym_i32] = ACTIONS(1668), - [anon_sym_u64] = ACTIONS(1668), - [anon_sym_i64] = ACTIONS(1668), - [anon_sym_u128] = ACTIONS(1668), - [anon_sym_i128] = ACTIONS(1668), - [anon_sym_isize] = ACTIONS(1668), - [anon_sym_usize] = ACTIONS(1668), - [anon_sym_f32] = ACTIONS(1668), - [anon_sym_f64] = ACTIONS(1668), - [anon_sym_bool] = ACTIONS(1668), - [anon_sym_str] = ACTIONS(1668), - [anon_sym_char] = ACTIONS(1668), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_async] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_enum] = ACTIONS(1668), - [anon_sym_fn] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_impl] = ACTIONS(1668), - [anon_sym_let] = ACTIONS(1668), - [anon_sym_loop] = ACTIONS(1668), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_mod] = ACTIONS(1668), - [anon_sym_pub] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_struct] = ACTIONS(1668), - [anon_sym_trait] = ACTIONS(1668), - [anon_sym_type] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_unsafe] = ACTIONS(1668), - [anon_sym_use] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_LT] = ACTIONS(1666), - [anon_sym_COLON_COLON] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PIPE] = ACTIONS(1666), - [anon_sym_yield] = ACTIONS(1668), - [anon_sym_move] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(1666), - [aux_sym_string_literal_token1] = ACTIONS(1666), - [sym_char_literal] = ACTIONS(1666), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1668), - [sym_super] = ACTIONS(1668), - [sym_crate] = ACTIONS(1668), - [sym_metavariable] = ACTIONS(1666), - [sym_raw_string_literal] = ACTIONS(1666), - [sym_float_literal] = ACTIONS(1666), + [ts_builtin_sym_end] = ACTIONS(1656), + [sym_identifier] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_macro_rules_BANG] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1658), + [anon_sym_async] = ACTIONS(1658), + [anon_sym_break] = ACTIONS(1658), + [anon_sym_const] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(1658), + [anon_sym_default] = ACTIONS(1658), + [anon_sym_enum] = ACTIONS(1658), + [anon_sym_fn] = ACTIONS(1658), + [anon_sym_for] = ACTIONS(1658), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_impl] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1658), + [anon_sym_loop] = ACTIONS(1658), + [anon_sym_match] = ACTIONS(1658), + [anon_sym_mod] = ACTIONS(1658), + [anon_sym_pub] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_static] = ACTIONS(1658), + [anon_sym_struct] = ACTIONS(1658), + [anon_sym_trait] = ACTIONS(1658), + [anon_sym_type] = ACTIONS(1658), + [anon_sym_union] = ACTIONS(1658), + [anon_sym_unsafe] = ACTIONS(1658), + [anon_sym_use] = ACTIONS(1658), + [anon_sym_while] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(1656), + [anon_sym_COLON_COLON] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_yield] = ACTIONS(1658), + [anon_sym_move] = ACTIONS(1658), + [sym_integer_literal] = ACTIONS(1656), + [aux_sym_string_literal_token1] = ACTIONS(1656), + [sym_char_literal] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1658), + [sym_super] = ACTIONS(1658), + [sym_crate] = ACTIONS(1658), + [sym_metavariable] = ACTIONS(1656), + [sym_raw_string_literal] = ACTIONS(1656), + [sym_float_literal] = ACTIONS(1656), [sym_block_comment] = ACTIONS(3), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_macro_rules_BANG] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1670), - [anon_sym_u8] = ACTIONS(1672), - [anon_sym_i8] = ACTIONS(1672), - [anon_sym_u16] = ACTIONS(1672), - [anon_sym_i16] = ACTIONS(1672), - [anon_sym_u32] = ACTIONS(1672), - [anon_sym_i32] = ACTIONS(1672), - [anon_sym_u64] = ACTIONS(1672), - [anon_sym_i64] = ACTIONS(1672), - [anon_sym_u128] = ACTIONS(1672), - [anon_sym_i128] = ACTIONS(1672), - [anon_sym_isize] = ACTIONS(1672), - [anon_sym_usize] = ACTIONS(1672), - [anon_sym_f32] = ACTIONS(1672), - [anon_sym_f64] = ACTIONS(1672), - [anon_sym_bool] = ACTIONS(1672), - [anon_sym_str] = ACTIONS(1672), - [anon_sym_char] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [anon_sym_fn] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_impl] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_loop] = ACTIONS(1672), - [anon_sym_match] = ACTIONS(1672), - [anon_sym_mod] = ACTIONS(1672), - [anon_sym_pub] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_struct] = ACTIONS(1672), - [anon_sym_trait] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_union] = ACTIONS(1672), - [anon_sym_unsafe] = ACTIONS(1672), - [anon_sym_use] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_extern] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_COLON_COLON] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), - [anon_sym_DOT_DOT] = ACTIONS(1670), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_move] = ACTIONS(1672), - [sym_integer_literal] = ACTIONS(1670), - [aux_sym_string_literal_token1] = ACTIONS(1670), - [sym_char_literal] = ACTIONS(1670), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_crate] = ACTIONS(1672), - [sym_metavariable] = ACTIONS(1670), - [sym_raw_string_literal] = ACTIONS(1670), - [sym_float_literal] = ACTIONS(1670), + [ts_builtin_sym_end] = ACTIONS(1660), + [sym_identifier] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1660), + [anon_sym_macro_rules_BANG] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_u8] = ACTIONS(1662), + [anon_sym_i8] = ACTIONS(1662), + [anon_sym_u16] = ACTIONS(1662), + [anon_sym_i16] = ACTIONS(1662), + [anon_sym_u32] = ACTIONS(1662), + [anon_sym_i32] = ACTIONS(1662), + [anon_sym_u64] = ACTIONS(1662), + [anon_sym_i64] = ACTIONS(1662), + [anon_sym_u128] = ACTIONS(1662), + [anon_sym_i128] = ACTIONS(1662), + [anon_sym_isize] = ACTIONS(1662), + [anon_sym_usize] = ACTIONS(1662), + [anon_sym_f32] = ACTIONS(1662), + [anon_sym_f64] = ACTIONS(1662), + [anon_sym_bool] = ACTIONS(1662), + [anon_sym_str] = ACTIONS(1662), + [anon_sym_char] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1662), + [anon_sym_const] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(1662), + [anon_sym_default] = ACTIONS(1662), + [anon_sym_enum] = ACTIONS(1662), + [anon_sym_fn] = ACTIONS(1662), + [anon_sym_for] = ACTIONS(1662), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_impl] = ACTIONS(1662), + [anon_sym_let] = ACTIONS(1662), + [anon_sym_loop] = ACTIONS(1662), + [anon_sym_match] = ACTIONS(1662), + [anon_sym_mod] = ACTIONS(1662), + [anon_sym_pub] = ACTIONS(1662), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_struct] = ACTIONS(1662), + [anon_sym_trait] = ACTIONS(1662), + [anon_sym_type] = ACTIONS(1662), + [anon_sym_union] = ACTIONS(1662), + [anon_sym_unsafe] = ACTIONS(1662), + [anon_sym_use] = ACTIONS(1662), + [anon_sym_while] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1660), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_extern] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1660), + [anon_sym_COLON_COLON] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_DOT_DOT] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_PIPE] = ACTIONS(1660), + [anon_sym_yield] = ACTIONS(1662), + [anon_sym_move] = ACTIONS(1662), + [sym_integer_literal] = ACTIONS(1660), + [aux_sym_string_literal_token1] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), + [anon_sym_true] = ACTIONS(1662), + [anon_sym_false] = ACTIONS(1662), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1662), + [sym_super] = ACTIONS(1662), + [sym_crate] = ACTIONS(1662), + [sym_metavariable] = ACTIONS(1660), + [sym_raw_string_literal] = ACTIONS(1660), + [sym_float_literal] = ACTIONS(1660), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1676), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_macro_rules_BANG] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_u8] = ACTIONS(1676), - [anon_sym_i8] = ACTIONS(1676), - [anon_sym_u16] = ACTIONS(1676), - [anon_sym_i16] = ACTIONS(1676), - [anon_sym_u32] = ACTIONS(1676), - [anon_sym_i32] = ACTIONS(1676), - [anon_sym_u64] = ACTIONS(1676), - [anon_sym_i64] = ACTIONS(1676), - [anon_sym_u128] = ACTIONS(1676), - [anon_sym_i128] = ACTIONS(1676), - [anon_sym_isize] = ACTIONS(1676), - [anon_sym_usize] = ACTIONS(1676), - [anon_sym_f32] = ACTIONS(1676), - [anon_sym_f64] = ACTIONS(1676), - [anon_sym_bool] = ACTIONS(1676), - [anon_sym_str] = ACTIONS(1676), - [anon_sym_char] = ACTIONS(1676), - [anon_sym_SQUOTE] = ACTIONS(1676), - [anon_sym_async] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), - [anon_sym_fn] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_impl] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1676), - [anon_sym_match] = ACTIONS(1676), - [anon_sym_mod] = ACTIONS(1676), - [anon_sym_pub] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_struct] = ACTIONS(1676), - [anon_sym_trait] = ACTIONS(1676), - [anon_sym_type] = ACTIONS(1676), - [anon_sym_union] = ACTIONS(1676), - [anon_sym_unsafe] = ACTIONS(1676), - [anon_sym_use] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_POUND] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_extern] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_COLON_COLON] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1676), - [sym_integer_literal] = ACTIONS(1674), - [aux_sym_string_literal_token1] = ACTIONS(1674), - [sym_char_literal] = ACTIONS(1674), - [anon_sym_true] = ACTIONS(1676), - [anon_sym_false] = ACTIONS(1676), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_crate] = ACTIONS(1676), - [sym_metavariable] = ACTIONS(1674), - [sym_raw_string_literal] = ACTIONS(1674), - [sym_float_literal] = ACTIONS(1674), + [ts_builtin_sym_end] = ACTIONS(1664), + [sym_identifier] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1664), + [anon_sym_macro_rules_BANG] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_u8] = ACTIONS(1666), + [anon_sym_i8] = ACTIONS(1666), + [anon_sym_u16] = ACTIONS(1666), + [anon_sym_i16] = ACTIONS(1666), + [anon_sym_u32] = ACTIONS(1666), + [anon_sym_i32] = ACTIONS(1666), + [anon_sym_u64] = ACTIONS(1666), + [anon_sym_i64] = ACTIONS(1666), + [anon_sym_u128] = ACTIONS(1666), + [anon_sym_i128] = ACTIONS(1666), + [anon_sym_isize] = ACTIONS(1666), + [anon_sym_usize] = ACTIONS(1666), + [anon_sym_f32] = ACTIONS(1666), + [anon_sym_f64] = ACTIONS(1666), + [anon_sym_bool] = ACTIONS(1666), + [anon_sym_str] = ACTIONS(1666), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_async] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_default] = ACTIONS(1666), + [anon_sym_enum] = ACTIONS(1666), + [anon_sym_fn] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_impl] = ACTIONS(1666), + [anon_sym_let] = ACTIONS(1666), + [anon_sym_loop] = ACTIONS(1666), + [anon_sym_match] = ACTIONS(1666), + [anon_sym_mod] = ACTIONS(1666), + [anon_sym_pub] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1666), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_trait] = ACTIONS(1666), + [anon_sym_type] = ACTIONS(1666), + [anon_sym_union] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1666), + [anon_sym_use] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_COLON_COLON] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_DOT_DOT] = ACTIONS(1664), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_yield] = ACTIONS(1666), + [anon_sym_move] = ACTIONS(1666), + [sym_integer_literal] = ACTIONS(1664), + [aux_sym_string_literal_token1] = ACTIONS(1664), + [sym_char_literal] = ACTIONS(1664), + [anon_sym_true] = ACTIONS(1666), + [anon_sym_false] = ACTIONS(1666), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_crate] = ACTIONS(1666), + [sym_metavariable] = ACTIONS(1664), + [sym_raw_string_literal] = ACTIONS(1664), + [sym_float_literal] = ACTIONS(1664), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [sym_identifier] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_macro_rules_BANG] = ACTIONS(1678), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_u8] = ACTIONS(1680), - [anon_sym_i8] = ACTIONS(1680), - [anon_sym_u16] = ACTIONS(1680), - [anon_sym_i16] = ACTIONS(1680), - [anon_sym_u32] = ACTIONS(1680), - [anon_sym_i32] = ACTIONS(1680), - [anon_sym_u64] = ACTIONS(1680), - [anon_sym_i64] = ACTIONS(1680), - [anon_sym_u128] = ACTIONS(1680), - [anon_sym_i128] = ACTIONS(1680), - [anon_sym_isize] = ACTIONS(1680), - [anon_sym_usize] = ACTIONS(1680), - [anon_sym_f32] = ACTIONS(1680), - [anon_sym_f64] = ACTIONS(1680), - [anon_sym_bool] = ACTIONS(1680), - [anon_sym_str] = ACTIONS(1680), - [anon_sym_char] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(1680), - [anon_sym_async] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_enum] = ACTIONS(1680), - [anon_sym_fn] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_impl] = ACTIONS(1680), - [anon_sym_let] = ACTIONS(1680), - [anon_sym_loop] = ACTIONS(1680), - [anon_sym_match] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1680), - [anon_sym_pub] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1680), - [anon_sym_struct] = ACTIONS(1680), - [anon_sym_trait] = ACTIONS(1680), - [anon_sym_type] = ACTIONS(1680), - [anon_sym_union] = ACTIONS(1680), - [anon_sym_unsafe] = ACTIONS(1680), - [anon_sym_use] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_extern] = ACTIONS(1680), - [anon_sym_LT] = ACTIONS(1678), - [anon_sym_COLON_COLON] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1678), - [anon_sym_DOT_DOT] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_yield] = ACTIONS(1680), - [anon_sym_move] = ACTIONS(1680), - [sym_integer_literal] = ACTIONS(1678), - [aux_sym_string_literal_token1] = ACTIONS(1678), - [sym_char_literal] = ACTIONS(1678), - [anon_sym_true] = ACTIONS(1680), - [anon_sym_false] = ACTIONS(1680), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1680), - [sym_super] = ACTIONS(1680), - [sym_crate] = ACTIONS(1680), - [sym_metavariable] = ACTIONS(1678), - [sym_raw_string_literal] = ACTIONS(1678), - [sym_float_literal] = ACTIONS(1678), + [ts_builtin_sym_end] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_macro_rules_BANG] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_u8] = ACTIONS(1670), + [anon_sym_i8] = ACTIONS(1670), + [anon_sym_u16] = ACTIONS(1670), + [anon_sym_i16] = ACTIONS(1670), + [anon_sym_u32] = ACTIONS(1670), + [anon_sym_i32] = ACTIONS(1670), + [anon_sym_u64] = ACTIONS(1670), + [anon_sym_i64] = ACTIONS(1670), + [anon_sym_u128] = ACTIONS(1670), + [anon_sym_i128] = ACTIONS(1670), + [anon_sym_isize] = ACTIONS(1670), + [anon_sym_usize] = ACTIONS(1670), + [anon_sym_f32] = ACTIONS(1670), + [anon_sym_f64] = ACTIONS(1670), + [anon_sym_bool] = ACTIONS(1670), + [anon_sym_str] = ACTIONS(1670), + [anon_sym_char] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_async] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1670), + [anon_sym_enum] = ACTIONS(1670), + [anon_sym_fn] = ACTIONS(1670), + [anon_sym_for] = ACTIONS(1670), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_impl] = ACTIONS(1670), + [anon_sym_let] = ACTIONS(1670), + [anon_sym_loop] = ACTIONS(1670), + [anon_sym_match] = ACTIONS(1670), + [anon_sym_mod] = ACTIONS(1670), + [anon_sym_pub] = ACTIONS(1670), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(1670), + [anon_sym_struct] = ACTIONS(1670), + [anon_sym_trait] = ACTIONS(1670), + [anon_sym_type] = ACTIONS(1670), + [anon_sym_union] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1670), + [anon_sym_use] = ACTIONS(1670), + [anon_sym_while] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_COLON_COLON] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_yield] = ACTIONS(1670), + [anon_sym_move] = ACTIONS(1670), + [sym_integer_literal] = ACTIONS(1668), + [aux_sym_string_literal_token1] = ACTIONS(1668), + [sym_char_literal] = ACTIONS(1668), + [anon_sym_true] = ACTIONS(1670), + [anon_sym_false] = ACTIONS(1670), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1670), + [sym_super] = ACTIONS(1670), + [sym_crate] = ACTIONS(1670), + [sym_metavariable] = ACTIONS(1668), + [sym_raw_string_literal] = ACTIONS(1668), + [sym_float_literal] = ACTIONS(1668), [sym_block_comment] = ACTIONS(3), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_macro_rules_BANG] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1682), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [anon_sym_async] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_enum] = ACTIONS(1684), - [anon_sym_fn] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_impl] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1684), - [anon_sym_loop] = ACTIONS(1684), - [anon_sym_match] = ACTIONS(1684), - [anon_sym_mod] = ACTIONS(1684), - [anon_sym_pub] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_struct] = ACTIONS(1684), - [anon_sym_trait] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1684), - [anon_sym_unsafe] = ACTIONS(1684), - [anon_sym_use] = ACTIONS(1684), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_POUND] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1682), - [anon_sym_COLON_COLON] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_yield] = ACTIONS(1684), - [anon_sym_move] = ACTIONS(1684), - [sym_integer_literal] = ACTIONS(1682), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1684), - [sym_super] = ACTIONS(1684), - [sym_crate] = ACTIONS(1684), - [sym_metavariable] = ACTIONS(1682), - [sym_raw_string_literal] = ACTIONS(1682), - [sym_float_literal] = ACTIONS(1682), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_macro_rules_BANG] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1674), + [anon_sym_i8] = ACTIONS(1674), + [anon_sym_u16] = ACTIONS(1674), + [anon_sym_i16] = ACTIONS(1674), + [anon_sym_u32] = ACTIONS(1674), + [anon_sym_i32] = ACTIONS(1674), + [anon_sym_u64] = ACTIONS(1674), + [anon_sym_i64] = ACTIONS(1674), + [anon_sym_u128] = ACTIONS(1674), + [anon_sym_i128] = ACTIONS(1674), + [anon_sym_isize] = ACTIONS(1674), + [anon_sym_usize] = ACTIONS(1674), + [anon_sym_f32] = ACTIONS(1674), + [anon_sym_f64] = ACTIONS(1674), + [anon_sym_bool] = ACTIONS(1674), + [anon_sym_str] = ACTIONS(1674), + [anon_sym_char] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [anon_sym_fn] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_impl] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_loop] = ACTIONS(1674), + [anon_sym_match] = ACTIONS(1674), + [anon_sym_mod] = ACTIONS(1674), + [anon_sym_pub] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_struct] = ACTIONS(1674), + [anon_sym_trait] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_union] = ACTIONS(1674), + [anon_sym_unsafe] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_DOT_DOT] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_move] = ACTIONS(1674), + [sym_integer_literal] = ACTIONS(1672), + [aux_sym_string_literal_token1] = ACTIONS(1672), + [sym_char_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1674), + [anon_sym_false] = ACTIONS(1674), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_crate] = ACTIONS(1674), + [sym_metavariable] = ACTIONS(1672), + [sym_raw_string_literal] = ACTIONS(1672), + [sym_float_literal] = ACTIONS(1672), [sym_block_comment] = ACTIONS(3), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_macro_rules_BANG] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_u8] = ACTIONS(1688), - [anon_sym_i8] = ACTIONS(1688), - [anon_sym_u16] = ACTIONS(1688), - [anon_sym_i16] = ACTIONS(1688), - [anon_sym_u32] = ACTIONS(1688), - [anon_sym_i32] = ACTIONS(1688), - [anon_sym_u64] = ACTIONS(1688), - [anon_sym_i64] = ACTIONS(1688), - [anon_sym_u128] = ACTIONS(1688), - [anon_sym_i128] = ACTIONS(1688), - [anon_sym_isize] = ACTIONS(1688), - [anon_sym_usize] = ACTIONS(1688), - [anon_sym_f32] = ACTIONS(1688), - [anon_sym_f64] = ACTIONS(1688), - [anon_sym_bool] = ACTIONS(1688), - [anon_sym_str] = ACTIONS(1688), - [anon_sym_char] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(1688), - [anon_sym_async] = ACTIONS(1688), - [anon_sym_break] = ACTIONS(1688), - [anon_sym_const] = ACTIONS(1688), - [anon_sym_continue] = ACTIONS(1688), - [anon_sym_default] = ACTIONS(1688), - [anon_sym_enum] = ACTIONS(1688), - [anon_sym_fn] = ACTIONS(1688), - [anon_sym_for] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1688), - [anon_sym_impl] = ACTIONS(1688), - [anon_sym_let] = ACTIONS(1688), - [anon_sym_loop] = ACTIONS(1688), - [anon_sym_match] = ACTIONS(1688), - [anon_sym_mod] = ACTIONS(1688), - [anon_sym_pub] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1688), - [anon_sym_static] = ACTIONS(1688), - [anon_sym_struct] = ACTIONS(1688), - [anon_sym_trait] = ACTIONS(1688), - [anon_sym_type] = ACTIONS(1688), - [anon_sym_union] = ACTIONS(1688), - [anon_sym_unsafe] = ACTIONS(1688), - [anon_sym_use] = ACTIONS(1688), - [anon_sym_while] = ACTIONS(1688), - [anon_sym_POUND] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_yield] = ACTIONS(1688), - [anon_sym_move] = ACTIONS(1688), - [sym_integer_literal] = ACTIONS(1686), - [aux_sym_string_literal_token1] = ACTIONS(1686), - [sym_char_literal] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1688), - [sym_super] = ACTIONS(1688), - [sym_crate] = ACTIONS(1688), - [sym_metavariable] = ACTIONS(1686), - [sym_raw_string_literal] = ACTIONS(1686), - [sym_float_literal] = ACTIONS(1686), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_identifier] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_macro_rules_BANG] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_u8] = ACTIONS(1678), + [anon_sym_i8] = ACTIONS(1678), + [anon_sym_u16] = ACTIONS(1678), + [anon_sym_i16] = ACTIONS(1678), + [anon_sym_u32] = ACTIONS(1678), + [anon_sym_i32] = ACTIONS(1678), + [anon_sym_u64] = ACTIONS(1678), + [anon_sym_i64] = ACTIONS(1678), + [anon_sym_u128] = ACTIONS(1678), + [anon_sym_i128] = ACTIONS(1678), + [anon_sym_isize] = ACTIONS(1678), + [anon_sym_usize] = ACTIONS(1678), + [anon_sym_f32] = ACTIONS(1678), + [anon_sym_f64] = ACTIONS(1678), + [anon_sym_bool] = ACTIONS(1678), + [anon_sym_str] = ACTIONS(1678), + [anon_sym_char] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_fn] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_impl] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1678), + [anon_sym_loop] = ACTIONS(1678), + [anon_sym_match] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1678), + [anon_sym_pub] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_trait] = ACTIONS(1678), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_unsafe] = ACTIONS(1678), + [anon_sym_use] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_COLON_COLON] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1678), + [anon_sym_move] = ACTIONS(1678), + [sym_integer_literal] = ACTIONS(1676), + [aux_sym_string_literal_token1] = ACTIONS(1676), + [sym_char_literal] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1678), + [sym_super] = ACTIONS(1678), + [sym_crate] = ACTIONS(1678), + [sym_metavariable] = ACTIONS(1676), + [sym_raw_string_literal] = ACTIONS(1676), + [sym_float_literal] = ACTIONS(1676), [sym_block_comment] = ACTIONS(3), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_macro_rules_BANG] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_u8] = ACTIONS(1692), - [anon_sym_i8] = ACTIONS(1692), - [anon_sym_u16] = ACTIONS(1692), - [anon_sym_i16] = ACTIONS(1692), - [anon_sym_u32] = ACTIONS(1692), - [anon_sym_i32] = ACTIONS(1692), - [anon_sym_u64] = ACTIONS(1692), - [anon_sym_i64] = ACTIONS(1692), - [anon_sym_u128] = ACTIONS(1692), - [anon_sym_i128] = ACTIONS(1692), - [anon_sym_isize] = ACTIONS(1692), - [anon_sym_usize] = ACTIONS(1692), - [anon_sym_f32] = ACTIONS(1692), - [anon_sym_f64] = ACTIONS(1692), - [anon_sym_bool] = ACTIONS(1692), - [anon_sym_str] = ACTIONS(1692), - [anon_sym_char] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_async] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [anon_sym_fn] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_impl] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_loop] = ACTIONS(1692), - [anon_sym_match] = ACTIONS(1692), - [anon_sym_mod] = ACTIONS(1692), - [anon_sym_pub] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_struct] = ACTIONS(1692), - [anon_sym_trait] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_union] = ACTIONS(1692), - [anon_sym_unsafe] = ACTIONS(1692), - [anon_sym_use] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_COLON_COLON] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_yield] = ACTIONS(1692), - [anon_sym_move] = ACTIONS(1692), - [sym_integer_literal] = ACTIONS(1690), - [aux_sym_string_literal_token1] = ACTIONS(1690), - [sym_char_literal] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1692), - [anon_sym_false] = ACTIONS(1692), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_crate] = ACTIONS(1692), - [sym_metavariable] = ACTIONS(1690), - [sym_raw_string_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), + [ts_builtin_sym_end] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_macro_rules_BANG] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_u8] = ACTIONS(1682), + [anon_sym_i8] = ACTIONS(1682), + [anon_sym_u16] = ACTIONS(1682), + [anon_sym_i16] = ACTIONS(1682), + [anon_sym_u32] = ACTIONS(1682), + [anon_sym_i32] = ACTIONS(1682), + [anon_sym_u64] = ACTIONS(1682), + [anon_sym_i64] = ACTIONS(1682), + [anon_sym_u128] = ACTIONS(1682), + [anon_sym_i128] = ACTIONS(1682), + [anon_sym_isize] = ACTIONS(1682), + [anon_sym_usize] = ACTIONS(1682), + [anon_sym_f32] = ACTIONS(1682), + [anon_sym_f64] = ACTIONS(1682), + [anon_sym_bool] = ACTIONS(1682), + [anon_sym_str] = ACTIONS(1682), + [anon_sym_char] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_async] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_enum] = ACTIONS(1682), + [anon_sym_fn] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_impl] = ACTIONS(1682), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_loop] = ACTIONS(1682), + [anon_sym_match] = ACTIONS(1682), + [anon_sym_mod] = ACTIONS(1682), + [anon_sym_pub] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1682), + [anon_sym_struct] = ACTIONS(1682), + [anon_sym_trait] = ACTIONS(1682), + [anon_sym_type] = ACTIONS(1682), + [anon_sym_union] = ACTIONS(1682), + [anon_sym_unsafe] = ACTIONS(1682), + [anon_sym_use] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_COLON_COLON] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_yield] = ACTIONS(1682), + [anon_sym_move] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1680), + [aux_sym_string_literal_token1] = ACTIONS(1680), + [sym_char_literal] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1682), + [sym_super] = ACTIONS(1682), + [sym_crate] = ACTIONS(1682), + [sym_metavariable] = ACTIONS(1680), + [sym_raw_string_literal] = ACTIONS(1680), + [sym_float_literal] = ACTIONS(1680), [sym_block_comment] = ACTIONS(3), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1694), - [sym_identifier] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_macro_rules_BANG] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_u8] = ACTIONS(1696), - [anon_sym_i8] = ACTIONS(1696), - [anon_sym_u16] = ACTIONS(1696), - [anon_sym_i16] = ACTIONS(1696), - [anon_sym_u32] = ACTIONS(1696), - [anon_sym_i32] = ACTIONS(1696), - [anon_sym_u64] = ACTIONS(1696), - [anon_sym_i64] = ACTIONS(1696), - [anon_sym_u128] = ACTIONS(1696), - [anon_sym_i128] = ACTIONS(1696), - [anon_sym_isize] = ACTIONS(1696), - [anon_sym_usize] = ACTIONS(1696), - [anon_sym_f32] = ACTIONS(1696), - [anon_sym_f64] = ACTIONS(1696), - [anon_sym_bool] = ACTIONS(1696), - [anon_sym_str] = ACTIONS(1696), - [anon_sym_char] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1696), - [anon_sym_async] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_enum] = ACTIONS(1696), - [anon_sym_fn] = ACTIONS(1696), - [anon_sym_for] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_impl] = ACTIONS(1696), - [anon_sym_let] = ACTIONS(1696), - [anon_sym_loop] = ACTIONS(1696), - [anon_sym_match] = ACTIONS(1696), - [anon_sym_mod] = ACTIONS(1696), - [anon_sym_pub] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_static] = ACTIONS(1696), - [anon_sym_struct] = ACTIONS(1696), - [anon_sym_trait] = ACTIONS(1696), - [anon_sym_type] = ACTIONS(1696), - [anon_sym_union] = ACTIONS(1696), - [anon_sym_unsafe] = ACTIONS(1696), - [anon_sym_use] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_POUND] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_extern] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_yield] = ACTIONS(1696), - [anon_sym_move] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [aux_sym_string_literal_token1] = ACTIONS(1694), - [sym_char_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1696), - [sym_super] = ACTIONS(1696), - [sym_crate] = ACTIONS(1696), - [sym_metavariable] = ACTIONS(1694), - [sym_raw_string_literal] = ACTIONS(1694), - [sym_float_literal] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1684), + [sym_identifier] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_macro_rules_BANG] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_async] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_default] = ACTIONS(1686), + [anon_sym_enum] = ACTIONS(1686), + [anon_sym_fn] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_impl] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_mod] = ACTIONS(1686), + [anon_sym_pub] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_struct] = ACTIONS(1686), + [anon_sym_trait] = ACTIONS(1686), + [anon_sym_type] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(1686), + [anon_sym_unsafe] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_yield] = ACTIONS(1686), + [anon_sym_move] = ACTIONS(1686), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1684), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1686), + [anon_sym_false] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1686), + [sym_super] = ACTIONS(1686), + [sym_crate] = ACTIONS(1686), + [sym_metavariable] = ACTIONS(1684), + [sym_raw_string_literal] = ACTIONS(1684), + [sym_float_literal] = ACTIONS(1684), [sym_block_comment] = ACTIONS(3), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1698), - [sym_identifier] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_macro_rules_BANG] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_u8] = ACTIONS(1700), - [anon_sym_i8] = ACTIONS(1700), - [anon_sym_u16] = ACTIONS(1700), - [anon_sym_i16] = ACTIONS(1700), - [anon_sym_u32] = ACTIONS(1700), - [anon_sym_i32] = ACTIONS(1700), - [anon_sym_u64] = ACTIONS(1700), - [anon_sym_i64] = ACTIONS(1700), - [anon_sym_u128] = ACTIONS(1700), - [anon_sym_i128] = ACTIONS(1700), - [anon_sym_isize] = ACTIONS(1700), - [anon_sym_usize] = ACTIONS(1700), - [anon_sym_f32] = ACTIONS(1700), - [anon_sym_f64] = ACTIONS(1700), - [anon_sym_bool] = ACTIONS(1700), - [anon_sym_str] = ACTIONS(1700), - [anon_sym_char] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_break] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_continue] = ACTIONS(1700), - [anon_sym_default] = ACTIONS(1700), - [anon_sym_enum] = ACTIONS(1700), - [anon_sym_fn] = ACTIONS(1700), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_if] = ACTIONS(1700), - [anon_sym_impl] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1700), - [anon_sym_loop] = ACTIONS(1700), - [anon_sym_match] = ACTIONS(1700), - [anon_sym_mod] = ACTIONS(1700), - [anon_sym_pub] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(1700), - [anon_sym_trait] = ACTIONS(1700), - [anon_sym_type] = ACTIONS(1700), - [anon_sym_union] = ACTIONS(1700), - [anon_sym_unsafe] = ACTIONS(1700), - [anon_sym_use] = ACTIONS(1700), - [anon_sym_while] = ACTIONS(1700), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1698), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_yield] = ACTIONS(1700), - [anon_sym_move] = ACTIONS(1700), - [sym_integer_literal] = ACTIONS(1698), - [aux_sym_string_literal_token1] = ACTIONS(1698), - [sym_char_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1700), - [anon_sym_false] = ACTIONS(1700), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1700), - [sym_super] = ACTIONS(1700), - [sym_crate] = ACTIONS(1700), - [sym_metavariable] = ACTIONS(1698), - [sym_raw_string_literal] = ACTIONS(1698), - [sym_float_literal] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_macro_rules_BANG] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_u8] = ACTIONS(1690), + [anon_sym_i8] = ACTIONS(1690), + [anon_sym_u16] = ACTIONS(1690), + [anon_sym_i16] = ACTIONS(1690), + [anon_sym_u32] = ACTIONS(1690), + [anon_sym_i32] = ACTIONS(1690), + [anon_sym_u64] = ACTIONS(1690), + [anon_sym_i64] = ACTIONS(1690), + [anon_sym_u128] = ACTIONS(1690), + [anon_sym_i128] = ACTIONS(1690), + [anon_sym_isize] = ACTIONS(1690), + [anon_sym_usize] = ACTIONS(1690), + [anon_sym_f32] = ACTIONS(1690), + [anon_sym_f64] = ACTIONS(1690), + [anon_sym_bool] = ACTIONS(1690), + [anon_sym_str] = ACTIONS(1690), + [anon_sym_char] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_enum] = ACTIONS(1690), + [anon_sym_fn] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_impl] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_loop] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_mod] = ACTIONS(1690), + [anon_sym_pub] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_struct] = ACTIONS(1690), + [anon_sym_trait] = ACTIONS(1690), + [anon_sym_type] = ACTIONS(1690), + [anon_sym_union] = ACTIONS(1690), + [anon_sym_unsafe] = ACTIONS(1690), + [anon_sym_use] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_yield] = ACTIONS(1690), + [anon_sym_move] = ACTIONS(1690), + [sym_integer_literal] = ACTIONS(1688), + [aux_sym_string_literal_token1] = ACTIONS(1688), + [sym_char_literal] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1690), + [anon_sym_false] = ACTIONS(1690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1688), + [sym_raw_string_literal] = ACTIONS(1688), + [sym_float_literal] = ACTIONS(1688), [sym_block_comment] = ACTIONS(3), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_macro_rules_BANG] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_u8] = ACTIONS(1704), - [anon_sym_i8] = ACTIONS(1704), - [anon_sym_u16] = ACTIONS(1704), - [anon_sym_i16] = ACTIONS(1704), - [anon_sym_u32] = ACTIONS(1704), - [anon_sym_i32] = ACTIONS(1704), - [anon_sym_u64] = ACTIONS(1704), - [anon_sym_i64] = ACTIONS(1704), - [anon_sym_u128] = ACTIONS(1704), - [anon_sym_i128] = ACTIONS(1704), - [anon_sym_isize] = ACTIONS(1704), - [anon_sym_usize] = ACTIONS(1704), - [anon_sym_f32] = ACTIONS(1704), - [anon_sym_f64] = ACTIONS(1704), - [anon_sym_bool] = ACTIONS(1704), - [anon_sym_str] = ACTIONS(1704), - [anon_sym_char] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [anon_sym_fn] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_impl] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_loop] = ACTIONS(1704), - [anon_sym_match] = ACTIONS(1704), - [anon_sym_mod] = ACTIONS(1704), - [anon_sym_pub] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_struct] = ACTIONS(1704), - [anon_sym_trait] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_unsafe] = ACTIONS(1704), - [anon_sym_use] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_COLON_COLON] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_DOT_DOT] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_move] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1702), - [aux_sym_string_literal_token1] = ACTIONS(1702), - [sym_char_literal] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1704), - [anon_sym_false] = ACTIONS(1704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_crate] = ACTIONS(1704), - [sym_metavariable] = ACTIONS(1702), - [sym_raw_string_literal] = ACTIONS(1702), - [sym_float_literal] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1692), + [sym_identifier] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_macro_rules_BANG] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_u8] = ACTIONS(1694), + [anon_sym_i8] = ACTIONS(1694), + [anon_sym_u16] = ACTIONS(1694), + [anon_sym_i16] = ACTIONS(1694), + [anon_sym_u32] = ACTIONS(1694), + [anon_sym_i32] = ACTIONS(1694), + [anon_sym_u64] = ACTIONS(1694), + [anon_sym_i64] = ACTIONS(1694), + [anon_sym_u128] = ACTIONS(1694), + [anon_sym_i128] = ACTIONS(1694), + [anon_sym_isize] = ACTIONS(1694), + [anon_sym_usize] = ACTIONS(1694), + [anon_sym_f32] = ACTIONS(1694), + [anon_sym_f64] = ACTIONS(1694), + [anon_sym_bool] = ACTIONS(1694), + [anon_sym_str] = ACTIONS(1694), + [anon_sym_char] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1694), + [anon_sym_async] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_enum] = ACTIONS(1694), + [anon_sym_fn] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_impl] = ACTIONS(1694), + [anon_sym_let] = ACTIONS(1694), + [anon_sym_loop] = ACTIONS(1694), + [anon_sym_match] = ACTIONS(1694), + [anon_sym_mod] = ACTIONS(1694), + [anon_sym_pub] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1694), + [anon_sym_struct] = ACTIONS(1694), + [anon_sym_trait] = ACTIONS(1694), + [anon_sym_type] = ACTIONS(1694), + [anon_sym_union] = ACTIONS(1694), + [anon_sym_unsafe] = ACTIONS(1694), + [anon_sym_use] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_extern] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_COLON_COLON] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_DOT_DOT] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1694), + [anon_sym_move] = ACTIONS(1694), + [sym_integer_literal] = ACTIONS(1692), + [aux_sym_string_literal_token1] = ACTIONS(1692), + [sym_char_literal] = ACTIONS(1692), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1694), + [sym_super] = ACTIONS(1694), + [sym_crate] = ACTIONS(1694), + [sym_metavariable] = ACTIONS(1692), + [sym_raw_string_literal] = ACTIONS(1692), + [sym_float_literal] = ACTIONS(1692), [sym_block_comment] = ACTIONS(3), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [sym_identifier] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_macro_rules_BANG] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_u8] = ACTIONS(1708), - [anon_sym_i8] = ACTIONS(1708), - [anon_sym_u16] = ACTIONS(1708), - [anon_sym_i16] = ACTIONS(1708), - [anon_sym_u32] = ACTIONS(1708), - [anon_sym_i32] = ACTIONS(1708), - [anon_sym_u64] = ACTIONS(1708), - [anon_sym_i64] = ACTIONS(1708), - [anon_sym_u128] = ACTIONS(1708), - [anon_sym_i128] = ACTIONS(1708), - [anon_sym_isize] = ACTIONS(1708), - [anon_sym_usize] = ACTIONS(1708), - [anon_sym_f32] = ACTIONS(1708), - [anon_sym_f64] = ACTIONS(1708), - [anon_sym_bool] = ACTIONS(1708), - [anon_sym_str] = ACTIONS(1708), - [anon_sym_char] = ACTIONS(1708), - [anon_sym_SQUOTE] = ACTIONS(1708), - [anon_sym_async] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_enum] = ACTIONS(1708), - [anon_sym_fn] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_impl] = ACTIONS(1708), - [anon_sym_let] = ACTIONS(1708), - [anon_sym_loop] = ACTIONS(1708), - [anon_sym_match] = ACTIONS(1708), - [anon_sym_mod] = ACTIONS(1708), - [anon_sym_pub] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_struct] = ACTIONS(1708), - [anon_sym_trait] = ACTIONS(1708), - [anon_sym_type] = ACTIONS(1708), - [anon_sym_union] = ACTIONS(1708), - [anon_sym_unsafe] = ACTIONS(1708), - [anon_sym_use] = ACTIONS(1708), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_extern] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_COLON_COLON] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_DOT_DOT] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_yield] = ACTIONS(1708), - [anon_sym_move] = ACTIONS(1708), - [sym_integer_literal] = ACTIONS(1706), - [aux_sym_string_literal_token1] = ACTIONS(1706), - [sym_char_literal] = ACTIONS(1706), - [anon_sym_true] = ACTIONS(1708), - [anon_sym_false] = ACTIONS(1708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1708), - [sym_super] = ACTIONS(1708), - [sym_crate] = ACTIONS(1708), - [sym_metavariable] = ACTIONS(1706), - [sym_raw_string_literal] = ACTIONS(1706), - [sym_float_literal] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1696), + [sym_identifier] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_macro_rules_BANG] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_u8] = ACTIONS(1698), + [anon_sym_i8] = ACTIONS(1698), + [anon_sym_u16] = ACTIONS(1698), + [anon_sym_i16] = ACTIONS(1698), + [anon_sym_u32] = ACTIONS(1698), + [anon_sym_i32] = ACTIONS(1698), + [anon_sym_u64] = ACTIONS(1698), + [anon_sym_i64] = ACTIONS(1698), + [anon_sym_u128] = ACTIONS(1698), + [anon_sym_i128] = ACTIONS(1698), + [anon_sym_isize] = ACTIONS(1698), + [anon_sym_usize] = ACTIONS(1698), + [anon_sym_f32] = ACTIONS(1698), + [anon_sym_f64] = ACTIONS(1698), + [anon_sym_bool] = ACTIONS(1698), + [anon_sym_str] = ACTIONS(1698), + [anon_sym_char] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(1698), + [anon_sym_fn] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_impl] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_loop] = ACTIONS(1698), + [anon_sym_match] = ACTIONS(1698), + [anon_sym_mod] = ACTIONS(1698), + [anon_sym_pub] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_struct] = ACTIONS(1698), + [anon_sym_trait] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_union] = ACTIONS(1698), + [anon_sym_unsafe] = ACTIONS(1698), + [anon_sym_use] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1696), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_yield] = ACTIONS(1698), + [anon_sym_move] = ACTIONS(1698), + [sym_integer_literal] = ACTIONS(1696), + [aux_sym_string_literal_token1] = ACTIONS(1696), + [sym_char_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1698), + [anon_sym_false] = ACTIONS(1698), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1698), + [sym_super] = ACTIONS(1698), + [sym_crate] = ACTIONS(1698), + [sym_metavariable] = ACTIONS(1696), + [sym_raw_string_literal] = ACTIONS(1696), + [sym_float_literal] = ACTIONS(1696), [sym_block_comment] = ACTIONS(3), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [anon_sym_SEMI] = ACTIONS(1710), - [anon_sym_macro_rules_BANG] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_RBRACE] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_async] = ACTIONS(1712), - [anon_sym_break] = ACTIONS(1712), - [anon_sym_const] = ACTIONS(1712), - [anon_sym_continue] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1712), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_for] = ACTIONS(1712), - [anon_sym_if] = ACTIONS(1712), - [anon_sym_impl] = ACTIONS(1712), - [anon_sym_let] = ACTIONS(1712), - [anon_sym_loop] = ACTIONS(1712), - [anon_sym_match] = ACTIONS(1712), - [anon_sym_mod] = ACTIONS(1712), - [anon_sym_pub] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1712), - [anon_sym_struct] = ACTIONS(1712), - [anon_sym_trait] = ACTIONS(1712), - [anon_sym_type] = ACTIONS(1712), - [anon_sym_union] = ACTIONS(1712), - [anon_sym_unsafe] = ACTIONS(1712), - [anon_sym_use] = ACTIONS(1712), - [anon_sym_while] = ACTIONS(1712), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_extern] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(1710), - [anon_sym_COLON_COLON] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_DOT_DOT] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_yield] = ACTIONS(1712), - [anon_sym_move] = ACTIONS(1712), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1710), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1712), - [anon_sym_false] = ACTIONS(1712), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1712), - [sym_super] = ACTIONS(1712), - [sym_crate] = ACTIONS(1712), - [sym_metavariable] = ACTIONS(1710), - [sym_raw_string_literal] = ACTIONS(1710), - [sym_float_literal] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(1700), + [sym_identifier] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_macro_rules_BANG] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_u8] = ACTIONS(1702), + [anon_sym_i8] = ACTIONS(1702), + [anon_sym_u16] = ACTIONS(1702), + [anon_sym_i16] = ACTIONS(1702), + [anon_sym_u32] = ACTIONS(1702), + [anon_sym_i32] = ACTIONS(1702), + [anon_sym_u64] = ACTIONS(1702), + [anon_sym_i64] = ACTIONS(1702), + [anon_sym_u128] = ACTIONS(1702), + [anon_sym_i128] = ACTIONS(1702), + [anon_sym_isize] = ACTIONS(1702), + [anon_sym_usize] = ACTIONS(1702), + [anon_sym_f32] = ACTIONS(1702), + [anon_sym_f64] = ACTIONS(1702), + [anon_sym_bool] = ACTIONS(1702), + [anon_sym_str] = ACTIONS(1702), + [anon_sym_char] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_async] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_continue] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_enum] = ACTIONS(1702), + [anon_sym_fn] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_impl] = ACTIONS(1702), + [anon_sym_let] = ACTIONS(1702), + [anon_sym_loop] = ACTIONS(1702), + [anon_sym_match] = ACTIONS(1702), + [anon_sym_mod] = ACTIONS(1702), + [anon_sym_pub] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1702), + [anon_sym_struct] = ACTIONS(1702), + [anon_sym_trait] = ACTIONS(1702), + [anon_sym_type] = ACTIONS(1702), + [anon_sym_union] = ACTIONS(1702), + [anon_sym_unsafe] = ACTIONS(1702), + [anon_sym_use] = ACTIONS(1702), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_DOT_DOT] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_yield] = ACTIONS(1702), + [anon_sym_move] = ACTIONS(1702), + [sym_integer_literal] = ACTIONS(1700), + [aux_sym_string_literal_token1] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1702), + [anon_sym_false] = ACTIONS(1702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1702), + [sym_super] = ACTIONS(1702), + [sym_crate] = ACTIONS(1702), + [sym_metavariable] = ACTIONS(1700), + [sym_raw_string_literal] = ACTIONS(1700), + [sym_float_literal] = ACTIONS(1700), [sym_block_comment] = ACTIONS(3), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(1714), - [sym_identifier] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_macro_rules_BANG] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_u8] = ACTIONS(1716), - [anon_sym_i8] = ACTIONS(1716), - [anon_sym_u16] = ACTIONS(1716), - [anon_sym_i16] = ACTIONS(1716), - [anon_sym_u32] = ACTIONS(1716), - [anon_sym_i32] = ACTIONS(1716), - [anon_sym_u64] = ACTIONS(1716), - [anon_sym_i64] = ACTIONS(1716), - [anon_sym_u128] = ACTIONS(1716), - [anon_sym_i128] = ACTIONS(1716), - [anon_sym_isize] = ACTIONS(1716), - [anon_sym_usize] = ACTIONS(1716), - [anon_sym_f32] = ACTIONS(1716), - [anon_sym_f64] = ACTIONS(1716), - [anon_sym_bool] = ACTIONS(1716), - [anon_sym_str] = ACTIONS(1716), - [anon_sym_char] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(1716), - [anon_sym_async] = ACTIONS(1716), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_default] = ACTIONS(1716), - [anon_sym_enum] = ACTIONS(1716), - [anon_sym_fn] = ACTIONS(1716), - [anon_sym_for] = ACTIONS(1716), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_impl] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1716), - [anon_sym_loop] = ACTIONS(1716), - [anon_sym_match] = ACTIONS(1716), - [anon_sym_mod] = ACTIONS(1716), - [anon_sym_pub] = ACTIONS(1716), - [anon_sym_return] = ACTIONS(1716), - [anon_sym_static] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1716), - [anon_sym_trait] = ACTIONS(1716), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_union] = ACTIONS(1716), - [anon_sym_unsafe] = ACTIONS(1716), - [anon_sym_use] = ACTIONS(1716), - [anon_sym_while] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_extern] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_DOT_DOT] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_yield] = ACTIONS(1716), - [anon_sym_move] = ACTIONS(1716), - [sym_integer_literal] = ACTIONS(1714), - [aux_sym_string_literal_token1] = ACTIONS(1714), - [sym_char_literal] = ACTIONS(1714), - [anon_sym_true] = ACTIONS(1716), - [anon_sym_false] = ACTIONS(1716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1714), - [sym_raw_string_literal] = ACTIONS(1714), - [sym_float_literal] = ACTIONS(1714), + [ts_builtin_sym_end] = ACTIONS(1704), + [sym_identifier] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_macro_rules_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_u8] = ACTIONS(1706), + [anon_sym_i8] = ACTIONS(1706), + [anon_sym_u16] = ACTIONS(1706), + [anon_sym_i16] = ACTIONS(1706), + [anon_sym_u32] = ACTIONS(1706), + [anon_sym_i32] = ACTIONS(1706), + [anon_sym_u64] = ACTIONS(1706), + [anon_sym_i64] = ACTIONS(1706), + [anon_sym_u128] = ACTIONS(1706), + [anon_sym_i128] = ACTIONS(1706), + [anon_sym_isize] = ACTIONS(1706), + [anon_sym_usize] = ACTIONS(1706), + [anon_sym_f32] = ACTIONS(1706), + [anon_sym_f64] = ACTIONS(1706), + [anon_sym_bool] = ACTIONS(1706), + [anon_sym_str] = ACTIONS(1706), + [anon_sym_char] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_fn] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_impl] = ACTIONS(1706), + [anon_sym_let] = ACTIONS(1706), + [anon_sym_loop] = ACTIONS(1706), + [anon_sym_match] = ACTIONS(1706), + [anon_sym_mod] = ACTIONS(1706), + [anon_sym_pub] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_trait] = ACTIONS(1706), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_unsafe] = ACTIONS(1706), + [anon_sym_use] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_COLON_COLON] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1706), + [anon_sym_move] = ACTIONS(1706), + [sym_integer_literal] = ACTIONS(1704), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1704), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1706), + [sym_super] = ACTIONS(1706), + [sym_crate] = ACTIONS(1706), + [sym_metavariable] = ACTIONS(1704), + [sym_raw_string_literal] = ACTIONS(1704), + [sym_float_literal] = ACTIONS(1704), [sym_block_comment] = ACTIONS(3), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1718), - [sym_identifier] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_macro_rules_BANG] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_RBRACE] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_u8] = ACTIONS(1720), - [anon_sym_i8] = ACTIONS(1720), - [anon_sym_u16] = ACTIONS(1720), - [anon_sym_i16] = ACTIONS(1720), - [anon_sym_u32] = ACTIONS(1720), - [anon_sym_i32] = ACTIONS(1720), - [anon_sym_u64] = ACTIONS(1720), - [anon_sym_i64] = ACTIONS(1720), - [anon_sym_u128] = ACTIONS(1720), - [anon_sym_i128] = ACTIONS(1720), - [anon_sym_isize] = ACTIONS(1720), - [anon_sym_usize] = ACTIONS(1720), - [anon_sym_f32] = ACTIONS(1720), - [anon_sym_f64] = ACTIONS(1720), - [anon_sym_bool] = ACTIONS(1720), - [anon_sym_str] = ACTIONS(1720), - [anon_sym_char] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(1720), - [anon_sym_continue] = ACTIONS(1720), - [anon_sym_default] = ACTIONS(1720), - [anon_sym_enum] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(1720), - [anon_sym_for] = ACTIONS(1720), - [anon_sym_if] = ACTIONS(1720), - [anon_sym_impl] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1720), - [anon_sym_loop] = ACTIONS(1720), - [anon_sym_match] = ACTIONS(1720), - [anon_sym_mod] = ACTIONS(1720), - [anon_sym_pub] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_trait] = ACTIONS(1720), - [anon_sym_type] = ACTIONS(1720), - [anon_sym_union] = ACTIONS(1720), - [anon_sym_unsafe] = ACTIONS(1720), - [anon_sym_use] = ACTIONS(1720), - [anon_sym_while] = ACTIONS(1720), - [anon_sym_POUND] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1718), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_COLON_COLON] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_yield] = ACTIONS(1720), - [anon_sym_move] = ACTIONS(1720), - [sym_integer_literal] = ACTIONS(1718), - [aux_sym_string_literal_token1] = ACTIONS(1718), - [sym_char_literal] = ACTIONS(1718), - [anon_sym_true] = ACTIONS(1720), - [anon_sym_false] = ACTIONS(1720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1720), - [sym_super] = ACTIONS(1720), - [sym_crate] = ACTIONS(1720), - [sym_metavariable] = ACTIONS(1718), - [sym_raw_string_literal] = ACTIONS(1718), - [sym_float_literal] = ACTIONS(1718), + [ts_builtin_sym_end] = ACTIONS(1708), + [sym_identifier] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_macro_rules_BANG] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_u8] = ACTIONS(1710), + [anon_sym_i8] = ACTIONS(1710), + [anon_sym_u16] = ACTIONS(1710), + [anon_sym_i16] = ACTIONS(1710), + [anon_sym_u32] = ACTIONS(1710), + [anon_sym_i32] = ACTIONS(1710), + [anon_sym_u64] = ACTIONS(1710), + [anon_sym_i64] = ACTIONS(1710), + [anon_sym_u128] = ACTIONS(1710), + [anon_sym_i128] = ACTIONS(1710), + [anon_sym_isize] = ACTIONS(1710), + [anon_sym_usize] = ACTIONS(1710), + [anon_sym_f32] = ACTIONS(1710), + [anon_sym_f64] = ACTIONS(1710), + [anon_sym_bool] = ACTIONS(1710), + [anon_sym_str] = ACTIONS(1710), + [anon_sym_char] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_default] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1710), + [anon_sym_fn] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_impl] = ACTIONS(1710), + [anon_sym_let] = ACTIONS(1710), + [anon_sym_loop] = ACTIONS(1710), + [anon_sym_match] = ACTIONS(1710), + [anon_sym_mod] = ACTIONS(1710), + [anon_sym_pub] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_trait] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1710), + [anon_sym_union] = ACTIONS(1710), + [anon_sym_unsafe] = ACTIONS(1710), + [anon_sym_use] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1710), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_COLON_COLON] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_yield] = ACTIONS(1710), + [anon_sym_move] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1708), + [aux_sym_string_literal_token1] = ACTIONS(1708), + [sym_char_literal] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1710), + [anon_sym_false] = ACTIONS(1710), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1710), + [sym_super] = ACTIONS(1710), + [sym_crate] = ACTIONS(1710), + [sym_metavariable] = ACTIONS(1708), + [sym_raw_string_literal] = ACTIONS(1708), + [sym_float_literal] = ACTIONS(1708), [sym_block_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1722), - [anon_sym_macro_rules_BANG] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_RBRACE] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_u8] = ACTIONS(1724), - [anon_sym_i8] = ACTIONS(1724), - [anon_sym_u16] = ACTIONS(1724), - [anon_sym_i16] = ACTIONS(1724), - [anon_sym_u32] = ACTIONS(1724), - [anon_sym_i32] = ACTIONS(1724), - [anon_sym_u64] = ACTIONS(1724), - [anon_sym_i64] = ACTIONS(1724), - [anon_sym_u128] = ACTIONS(1724), - [anon_sym_i128] = ACTIONS(1724), - [anon_sym_isize] = ACTIONS(1724), - [anon_sym_usize] = ACTIONS(1724), - [anon_sym_f32] = ACTIONS(1724), - [anon_sym_f64] = ACTIONS(1724), - [anon_sym_bool] = ACTIONS(1724), - [anon_sym_str] = ACTIONS(1724), - [anon_sym_char] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_async] = ACTIONS(1724), - [anon_sym_break] = ACTIONS(1724), - [anon_sym_const] = ACTIONS(1724), - [anon_sym_continue] = ACTIONS(1724), - [anon_sym_default] = ACTIONS(1724), - [anon_sym_enum] = ACTIONS(1724), - [anon_sym_fn] = ACTIONS(1724), - [anon_sym_for] = ACTIONS(1724), - [anon_sym_if] = ACTIONS(1724), - [anon_sym_impl] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(1724), - [anon_sym_loop] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(1724), - [anon_sym_mod] = ACTIONS(1724), - [anon_sym_pub] = ACTIONS(1724), - [anon_sym_return] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1724), - [anon_sym_struct] = ACTIONS(1724), - [anon_sym_trait] = ACTIONS(1724), - [anon_sym_type] = ACTIONS(1724), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1724), - [anon_sym_use] = ACTIONS(1724), - [anon_sym_while] = ACTIONS(1724), - [anon_sym_POUND] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_COLON_COLON] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_DOT_DOT] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_yield] = ACTIONS(1724), - [anon_sym_move] = ACTIONS(1724), - [sym_integer_literal] = ACTIONS(1722), - [aux_sym_string_literal_token1] = ACTIONS(1722), - [sym_char_literal] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1724), - [anon_sym_false] = ACTIONS(1724), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1724), - [sym_super] = ACTIONS(1724), - [sym_crate] = ACTIONS(1724), - [sym_metavariable] = ACTIONS(1722), - [sym_raw_string_literal] = ACTIONS(1722), - [sym_float_literal] = ACTIONS(1722), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_macro_rules_BANG] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_u8] = ACTIONS(1714), + [anon_sym_i8] = ACTIONS(1714), + [anon_sym_u16] = ACTIONS(1714), + [anon_sym_i16] = ACTIONS(1714), + [anon_sym_u32] = ACTIONS(1714), + [anon_sym_i32] = ACTIONS(1714), + [anon_sym_u64] = ACTIONS(1714), + [anon_sym_i64] = ACTIONS(1714), + [anon_sym_u128] = ACTIONS(1714), + [anon_sym_i128] = ACTIONS(1714), + [anon_sym_isize] = ACTIONS(1714), + [anon_sym_usize] = ACTIONS(1714), + [anon_sym_f32] = ACTIONS(1714), + [anon_sym_f64] = ACTIONS(1714), + [anon_sym_bool] = ACTIONS(1714), + [anon_sym_str] = ACTIONS(1714), + [anon_sym_char] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [anon_sym_fn] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_impl] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_loop] = ACTIONS(1714), + [anon_sym_match] = ACTIONS(1714), + [anon_sym_mod] = ACTIONS(1714), + [anon_sym_pub] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_struct] = ACTIONS(1714), + [anon_sym_trait] = ACTIONS(1714), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_union] = ACTIONS(1714), + [anon_sym_unsafe] = ACTIONS(1714), + [anon_sym_use] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1712), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_DOT_DOT] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_yield] = ACTIONS(1714), + [anon_sym_move] = ACTIONS(1714), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1712), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1714), + [anon_sym_false] = ACTIONS(1714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_crate] = ACTIONS(1714), + [sym_metavariable] = ACTIONS(1712), + [sym_raw_string_literal] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1712), [sym_block_comment] = ACTIONS(3), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(1726), - [sym_identifier] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_macro_rules_BANG] = ACTIONS(1726), - [anon_sym_LPAREN] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_u8] = ACTIONS(1728), - [anon_sym_i8] = ACTIONS(1728), - [anon_sym_u16] = ACTIONS(1728), - [anon_sym_i16] = ACTIONS(1728), - [anon_sym_u32] = ACTIONS(1728), - [anon_sym_i32] = ACTIONS(1728), - [anon_sym_u64] = ACTIONS(1728), - [anon_sym_i64] = ACTIONS(1728), - [anon_sym_u128] = ACTIONS(1728), - [anon_sym_i128] = ACTIONS(1728), - [anon_sym_isize] = ACTIONS(1728), - [anon_sym_usize] = ACTIONS(1728), - [anon_sym_f32] = ACTIONS(1728), - [anon_sym_f64] = ACTIONS(1728), - [anon_sym_bool] = ACTIONS(1728), - [anon_sym_str] = ACTIONS(1728), - [anon_sym_char] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_async] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_fn] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_impl] = ACTIONS(1728), - [anon_sym_let] = ACTIONS(1728), - [anon_sym_loop] = ACTIONS(1728), - [anon_sym_match] = ACTIONS(1728), - [anon_sym_mod] = ACTIONS(1728), - [anon_sym_pub] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(1728), - [anon_sym_trait] = ACTIONS(1728), - [anon_sym_type] = ACTIONS(1728), - [anon_sym_union] = ACTIONS(1728), - [anon_sym_unsafe] = ACTIONS(1728), - [anon_sym_use] = ACTIONS(1728), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_DOT_DOT] = ACTIONS(1726), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_yield] = ACTIONS(1728), - [anon_sym_move] = ACTIONS(1728), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1726), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1728), - [anon_sym_false] = ACTIONS(1728), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1726), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_macro_rules_BANG] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_u8] = ACTIONS(1718), + [anon_sym_i8] = ACTIONS(1718), + [anon_sym_u16] = ACTIONS(1718), + [anon_sym_i16] = ACTIONS(1718), + [anon_sym_u32] = ACTIONS(1718), + [anon_sym_i32] = ACTIONS(1718), + [anon_sym_u64] = ACTIONS(1718), + [anon_sym_i64] = ACTIONS(1718), + [anon_sym_u128] = ACTIONS(1718), + [anon_sym_i128] = ACTIONS(1718), + [anon_sym_isize] = ACTIONS(1718), + [anon_sym_usize] = ACTIONS(1718), + [anon_sym_f32] = ACTIONS(1718), + [anon_sym_f64] = ACTIONS(1718), + [anon_sym_bool] = ACTIONS(1718), + [anon_sym_str] = ACTIONS(1718), + [anon_sym_char] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), + [anon_sym_fn] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_impl] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_loop] = ACTIONS(1718), + [anon_sym_match] = ACTIONS(1718), + [anon_sym_mod] = ACTIONS(1718), + [anon_sym_pub] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_struct] = ACTIONS(1718), + [anon_sym_trait] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_union] = ACTIONS(1718), + [anon_sym_unsafe] = ACTIONS(1718), + [anon_sym_use] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_COLON_COLON] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_yield] = ACTIONS(1718), + [anon_sym_move] = ACTIONS(1718), + [sym_integer_literal] = ACTIONS(1716), + [aux_sym_string_literal_token1] = ACTIONS(1716), + [sym_char_literal] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1716), + [sym_raw_string_literal] = ACTIONS(1716), + [sym_float_literal] = ACTIONS(1716), [sym_block_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1730), - [sym_identifier] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_macro_rules_BANG] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_default] = ACTIONS(1732), - [anon_sym_enum] = ACTIONS(1732), - [anon_sym_fn] = ACTIONS(1732), - [anon_sym_for] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_impl] = ACTIONS(1732), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_loop] = ACTIONS(1732), - [anon_sym_match] = ACTIONS(1732), - [anon_sym_mod] = ACTIONS(1732), - [anon_sym_pub] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_struct] = ACTIONS(1732), - [anon_sym_trait] = ACTIONS(1732), - [anon_sym_type] = ACTIONS(1732), - [anon_sym_union] = ACTIONS(1732), - [anon_sym_unsafe] = ACTIONS(1732), - [anon_sym_use] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_POUND] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_COLON_COLON] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_DOT_DOT] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_yield] = ACTIONS(1732), - [anon_sym_move] = ACTIONS(1732), - [sym_integer_literal] = ACTIONS(1730), - [aux_sym_string_literal_token1] = ACTIONS(1730), - [sym_char_literal] = ACTIONS(1730), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1732), - [sym_super] = ACTIONS(1732), - [sym_crate] = ACTIONS(1732), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1730), - [sym_float_literal] = ACTIONS(1730), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_macro_rules_BANG] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1720), + [anon_sym_u8] = ACTIONS(1722), + [anon_sym_i8] = ACTIONS(1722), + [anon_sym_u16] = ACTIONS(1722), + [anon_sym_i16] = ACTIONS(1722), + [anon_sym_u32] = ACTIONS(1722), + [anon_sym_i32] = ACTIONS(1722), + [anon_sym_u64] = ACTIONS(1722), + [anon_sym_i64] = ACTIONS(1722), + [anon_sym_u128] = ACTIONS(1722), + [anon_sym_i128] = ACTIONS(1722), + [anon_sym_isize] = ACTIONS(1722), + [anon_sym_usize] = ACTIONS(1722), + [anon_sym_f32] = ACTIONS(1722), + [anon_sym_f64] = ACTIONS(1722), + [anon_sym_bool] = ACTIONS(1722), + [anon_sym_str] = ACTIONS(1722), + [anon_sym_char] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [anon_sym_fn] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_impl] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_loop] = ACTIONS(1722), + [anon_sym_match] = ACTIONS(1722), + [anon_sym_mod] = ACTIONS(1722), + [anon_sym_pub] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_struct] = ACTIONS(1722), + [anon_sym_trait] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_union] = ACTIONS(1722), + [anon_sym_unsafe] = ACTIONS(1722), + [anon_sym_use] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_POUND] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_move] = ACTIONS(1722), + [sym_integer_literal] = ACTIONS(1720), + [aux_sym_string_literal_token1] = ACTIONS(1720), + [sym_char_literal] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1722), + [anon_sym_false] = ACTIONS(1722), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_crate] = ACTIONS(1722), + [sym_metavariable] = ACTIONS(1720), + [sym_raw_string_literal] = ACTIONS(1720), + [sym_float_literal] = ACTIONS(1720), [sym_block_comment] = ACTIONS(3), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_macro_rules_BANG] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_u8] = ACTIONS(1736), - [anon_sym_i8] = ACTIONS(1736), - [anon_sym_u16] = ACTIONS(1736), - [anon_sym_i16] = ACTIONS(1736), - [anon_sym_u32] = ACTIONS(1736), - [anon_sym_i32] = ACTIONS(1736), - [anon_sym_u64] = ACTIONS(1736), - [anon_sym_i64] = ACTIONS(1736), - [anon_sym_u128] = ACTIONS(1736), - [anon_sym_i128] = ACTIONS(1736), - [anon_sym_isize] = ACTIONS(1736), - [anon_sym_usize] = ACTIONS(1736), - [anon_sym_f32] = ACTIONS(1736), - [anon_sym_f64] = ACTIONS(1736), - [anon_sym_bool] = ACTIONS(1736), - [anon_sym_str] = ACTIONS(1736), - [anon_sym_char] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_async] = ACTIONS(1736), - [anon_sym_break] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_default] = ACTIONS(1736), - [anon_sym_enum] = ACTIONS(1736), - [anon_sym_fn] = ACTIONS(1736), - [anon_sym_for] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1736), - [anon_sym_impl] = ACTIONS(1736), - [anon_sym_let] = ACTIONS(1736), - [anon_sym_loop] = ACTIONS(1736), - [anon_sym_match] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_pub] = ACTIONS(1736), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_struct] = ACTIONS(1736), - [anon_sym_trait] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_union] = ACTIONS(1736), - [anon_sym_unsafe] = ACTIONS(1736), - [anon_sym_use] = ACTIONS(1736), - [anon_sym_while] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_yield] = ACTIONS(1736), - [anon_sym_move] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [aux_sym_string_literal_token1] = ACTIONS(1734), - [sym_char_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1736), - [anon_sym_false] = ACTIONS(1736), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1736), - [sym_super] = ACTIONS(1736), - [sym_crate] = ACTIONS(1736), - [sym_metavariable] = ACTIONS(1734), - [sym_raw_string_literal] = ACTIONS(1734), - [sym_float_literal] = ACTIONS(1734), + [ts_builtin_sym_end] = ACTIONS(1724), + [sym_identifier] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_macro_rules_BANG] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_u8] = ACTIONS(1726), + [anon_sym_i8] = ACTIONS(1726), + [anon_sym_u16] = ACTIONS(1726), + [anon_sym_i16] = ACTIONS(1726), + [anon_sym_u32] = ACTIONS(1726), + [anon_sym_i32] = ACTIONS(1726), + [anon_sym_u64] = ACTIONS(1726), + [anon_sym_i64] = ACTIONS(1726), + [anon_sym_u128] = ACTIONS(1726), + [anon_sym_i128] = ACTIONS(1726), + [anon_sym_isize] = ACTIONS(1726), + [anon_sym_usize] = ACTIONS(1726), + [anon_sym_f32] = ACTIONS(1726), + [anon_sym_f64] = ACTIONS(1726), + [anon_sym_bool] = ACTIONS(1726), + [anon_sym_str] = ACTIONS(1726), + [anon_sym_char] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_async] = ACTIONS(1726), + [anon_sym_break] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1726), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_default] = ACTIONS(1726), + [anon_sym_enum] = ACTIONS(1726), + [anon_sym_fn] = ACTIONS(1726), + [anon_sym_for] = ACTIONS(1726), + [anon_sym_if] = ACTIONS(1726), + [anon_sym_impl] = ACTIONS(1726), + [anon_sym_let] = ACTIONS(1726), + [anon_sym_loop] = ACTIONS(1726), + [anon_sym_match] = ACTIONS(1726), + [anon_sym_mod] = ACTIONS(1726), + [anon_sym_pub] = ACTIONS(1726), + [anon_sym_return] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(1726), + [anon_sym_trait] = ACTIONS(1726), + [anon_sym_type] = ACTIONS(1726), + [anon_sym_union] = ACTIONS(1726), + [anon_sym_unsafe] = ACTIONS(1726), + [anon_sym_use] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_yield] = ACTIONS(1726), + [anon_sym_move] = ACTIONS(1726), + [sym_integer_literal] = ACTIONS(1724), + [aux_sym_string_literal_token1] = ACTIONS(1724), + [sym_char_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1726), + [anon_sym_false] = ACTIONS(1726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1726), + [sym_super] = ACTIONS(1726), + [sym_crate] = ACTIONS(1726), + [sym_metavariable] = ACTIONS(1724), + [sym_raw_string_literal] = ACTIONS(1724), + [sym_float_literal] = ACTIONS(1724), [sym_block_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1738), - [sym_identifier] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_macro_rules_BANG] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_u8] = ACTIONS(1740), - [anon_sym_i8] = ACTIONS(1740), - [anon_sym_u16] = ACTIONS(1740), - [anon_sym_i16] = ACTIONS(1740), - [anon_sym_u32] = ACTIONS(1740), - [anon_sym_i32] = ACTIONS(1740), - [anon_sym_u64] = ACTIONS(1740), - [anon_sym_i64] = ACTIONS(1740), - [anon_sym_u128] = ACTIONS(1740), - [anon_sym_i128] = ACTIONS(1740), - [anon_sym_isize] = ACTIONS(1740), - [anon_sym_usize] = ACTIONS(1740), - [anon_sym_f32] = ACTIONS(1740), - [anon_sym_f64] = ACTIONS(1740), - [anon_sym_bool] = ACTIONS(1740), - [anon_sym_str] = ACTIONS(1740), - [anon_sym_char] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_async] = ACTIONS(1740), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_const] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1740), - [anon_sym_default] = ACTIONS(1740), - [anon_sym_enum] = ACTIONS(1740), - [anon_sym_fn] = ACTIONS(1740), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_if] = ACTIONS(1740), - [anon_sym_impl] = ACTIONS(1740), - [anon_sym_let] = ACTIONS(1740), - [anon_sym_loop] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1740), - [anon_sym_mod] = ACTIONS(1740), - [anon_sym_pub] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1740), - [anon_sym_struct] = ACTIONS(1740), - [anon_sym_trait] = ACTIONS(1740), - [anon_sym_type] = ACTIONS(1740), - [anon_sym_union] = ACTIONS(1740), - [anon_sym_unsafe] = ACTIONS(1740), - [anon_sym_use] = ACTIONS(1740), - [anon_sym_while] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_COLON_COLON] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_yield] = ACTIONS(1740), - [anon_sym_move] = ACTIONS(1740), - [sym_integer_literal] = ACTIONS(1738), - [aux_sym_string_literal_token1] = ACTIONS(1738), - [sym_char_literal] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1740), - [sym_super] = ACTIONS(1740), - [sym_crate] = ACTIONS(1740), - [sym_metavariable] = ACTIONS(1738), - [sym_raw_string_literal] = ACTIONS(1738), - [sym_float_literal] = ACTIONS(1738), + [ts_builtin_sym_end] = ACTIONS(1728), + [sym_identifier] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_macro_rules_BANG] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_fn] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_impl] = ACTIONS(1730), + [anon_sym_let] = ACTIONS(1730), + [anon_sym_loop] = ACTIONS(1730), + [anon_sym_match] = ACTIONS(1730), + [anon_sym_mod] = ACTIONS(1730), + [anon_sym_pub] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1730), + [anon_sym_trait] = ACTIONS(1730), + [anon_sym_type] = ACTIONS(1730), + [anon_sym_union] = ACTIONS(1730), + [anon_sym_unsafe] = ACTIONS(1730), + [anon_sym_use] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1730), + [anon_sym_move] = ACTIONS(1730), + [sym_integer_literal] = ACTIONS(1728), + [aux_sym_string_literal_token1] = ACTIONS(1728), + [sym_char_literal] = ACTIONS(1728), + [anon_sym_true] = ACTIONS(1730), + [anon_sym_false] = ACTIONS(1730), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1730), + [sym_super] = ACTIONS(1730), + [sym_crate] = ACTIONS(1730), + [sym_metavariable] = ACTIONS(1728), + [sym_raw_string_literal] = ACTIONS(1728), + [sym_float_literal] = ACTIONS(1728), [sym_block_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(1742), - [sym_identifier] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_macro_rules_BANG] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_u8] = ACTIONS(1744), - [anon_sym_i8] = ACTIONS(1744), - [anon_sym_u16] = ACTIONS(1744), - [anon_sym_i16] = ACTIONS(1744), - [anon_sym_u32] = ACTIONS(1744), - [anon_sym_i32] = ACTIONS(1744), - [anon_sym_u64] = ACTIONS(1744), - [anon_sym_i64] = ACTIONS(1744), - [anon_sym_u128] = ACTIONS(1744), - [anon_sym_i128] = ACTIONS(1744), - [anon_sym_isize] = ACTIONS(1744), - [anon_sym_usize] = ACTIONS(1744), - [anon_sym_f32] = ACTIONS(1744), - [anon_sym_f64] = ACTIONS(1744), - [anon_sym_bool] = ACTIONS(1744), - [anon_sym_str] = ACTIONS(1744), - [anon_sym_char] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_default] = ACTIONS(1744), - [anon_sym_enum] = ACTIONS(1744), - [anon_sym_fn] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_impl] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_mod] = ACTIONS(1744), - [anon_sym_pub] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_struct] = ACTIONS(1744), - [anon_sym_trait] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1744), - [anon_sym_union] = ACTIONS(1744), - [anon_sym_unsafe] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_COLON_COLON] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_yield] = ACTIONS(1744), - [anon_sym_move] = ACTIONS(1744), - [sym_integer_literal] = ACTIONS(1742), - [aux_sym_string_literal_token1] = ACTIONS(1742), - [sym_char_literal] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(1744), - [anon_sym_false] = ACTIONS(1744), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1744), - [sym_super] = ACTIONS(1744), - [sym_crate] = ACTIONS(1744), - [sym_metavariable] = ACTIONS(1742), - [sym_raw_string_literal] = ACTIONS(1742), - [sym_float_literal] = ACTIONS(1742), + [ts_builtin_sym_end] = ACTIONS(1732), + [sym_identifier] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_macro_rules_BANG] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_u8] = ACTIONS(1734), + [anon_sym_i8] = ACTIONS(1734), + [anon_sym_u16] = ACTIONS(1734), + [anon_sym_i16] = ACTIONS(1734), + [anon_sym_u32] = ACTIONS(1734), + [anon_sym_i32] = ACTIONS(1734), + [anon_sym_u64] = ACTIONS(1734), + [anon_sym_i64] = ACTIONS(1734), + [anon_sym_u128] = ACTIONS(1734), + [anon_sym_i128] = ACTIONS(1734), + [anon_sym_isize] = ACTIONS(1734), + [anon_sym_usize] = ACTIONS(1734), + [anon_sym_f32] = ACTIONS(1734), + [anon_sym_f64] = ACTIONS(1734), + [anon_sym_bool] = ACTIONS(1734), + [anon_sym_str] = ACTIONS(1734), + [anon_sym_char] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_enum] = ACTIONS(1734), + [anon_sym_fn] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_impl] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1734), + [anon_sym_loop] = ACTIONS(1734), + [anon_sym_match] = ACTIONS(1734), + [anon_sym_mod] = ACTIONS(1734), + [anon_sym_pub] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_struct] = ACTIONS(1734), + [anon_sym_trait] = ACTIONS(1734), + [anon_sym_type] = ACTIONS(1734), + [anon_sym_union] = ACTIONS(1734), + [anon_sym_unsafe] = ACTIONS(1734), + [anon_sym_use] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1734), + [anon_sym_move] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [aux_sym_string_literal_token1] = ACTIONS(1732), + [sym_char_literal] = ACTIONS(1732), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1734), + [sym_super] = ACTIONS(1734), + [sym_crate] = ACTIONS(1734), + [sym_metavariable] = ACTIONS(1732), + [sym_raw_string_literal] = ACTIONS(1732), + [sym_float_literal] = ACTIONS(1732), [sym_block_comment] = ACTIONS(3), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_macro_rules_BANG] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_u8] = ACTIONS(1748), - [anon_sym_i8] = ACTIONS(1748), - [anon_sym_u16] = ACTIONS(1748), - [anon_sym_i16] = ACTIONS(1748), - [anon_sym_u32] = ACTIONS(1748), - [anon_sym_i32] = ACTIONS(1748), - [anon_sym_u64] = ACTIONS(1748), - [anon_sym_i64] = ACTIONS(1748), - [anon_sym_u128] = ACTIONS(1748), - [anon_sym_i128] = ACTIONS(1748), - [anon_sym_isize] = ACTIONS(1748), - [anon_sym_usize] = ACTIONS(1748), - [anon_sym_f32] = ACTIONS(1748), - [anon_sym_f64] = ACTIONS(1748), - [anon_sym_bool] = ACTIONS(1748), - [anon_sym_str] = ACTIONS(1748), - [anon_sym_char] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_async] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_continue] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1748), - [anon_sym_enum] = ACTIONS(1748), - [anon_sym_fn] = ACTIONS(1748), - [anon_sym_for] = ACTIONS(1748), - [anon_sym_if] = ACTIONS(1748), - [anon_sym_impl] = ACTIONS(1748), - [anon_sym_let] = ACTIONS(1748), - [anon_sym_loop] = ACTIONS(1748), - [anon_sym_match] = ACTIONS(1748), - [anon_sym_mod] = ACTIONS(1748), - [anon_sym_pub] = ACTIONS(1748), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_struct] = ACTIONS(1748), - [anon_sym_trait] = ACTIONS(1748), - [anon_sym_type] = ACTIONS(1748), - [anon_sym_union] = ACTIONS(1748), - [anon_sym_unsafe] = ACTIONS(1748), - [anon_sym_use] = ACTIONS(1748), - [anon_sym_while] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_COLON_COLON] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_DOT_DOT] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_yield] = ACTIONS(1748), - [anon_sym_move] = ACTIONS(1748), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1746), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1748), - [sym_super] = ACTIONS(1748), - [sym_crate] = ACTIONS(1748), - [sym_metavariable] = ACTIONS(1746), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(1736), + [sym_identifier] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_macro_rules_BANG] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_async] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1738), + [anon_sym_enum] = ACTIONS(1738), + [anon_sym_fn] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_impl] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_mod] = ACTIONS(1738), + [anon_sym_pub] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1738), + [anon_sym_struct] = ACTIONS(1738), + [anon_sym_trait] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1738), + [anon_sym_union] = ACTIONS(1738), + [anon_sym_unsafe] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1736), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1736), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_yield] = ACTIONS(1738), + [anon_sym_move] = ACTIONS(1738), + [sym_integer_literal] = ACTIONS(1736), + [aux_sym_string_literal_token1] = ACTIONS(1736), + [sym_char_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1738), + [sym_super] = ACTIONS(1738), + [sym_crate] = ACTIONS(1738), + [sym_metavariable] = ACTIONS(1736), + [sym_raw_string_literal] = ACTIONS(1736), + [sym_float_literal] = ACTIONS(1736), [sym_block_comment] = ACTIONS(3), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_macro_rules_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_u8] = ACTIONS(1752), - [anon_sym_i8] = ACTIONS(1752), - [anon_sym_u16] = ACTIONS(1752), - [anon_sym_i16] = ACTIONS(1752), - [anon_sym_u32] = ACTIONS(1752), - [anon_sym_i32] = ACTIONS(1752), - [anon_sym_u64] = ACTIONS(1752), - [anon_sym_i64] = ACTIONS(1752), - [anon_sym_u128] = ACTIONS(1752), - [anon_sym_i128] = ACTIONS(1752), - [anon_sym_isize] = ACTIONS(1752), - [anon_sym_usize] = ACTIONS(1752), - [anon_sym_f32] = ACTIONS(1752), - [anon_sym_f64] = ACTIONS(1752), - [anon_sym_bool] = ACTIONS(1752), - [anon_sym_str] = ACTIONS(1752), - [anon_sym_char] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_async] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_loop] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_mod] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_union] = ACTIONS(1752), - [anon_sym_unsafe] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_COLON_COLON] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_DOT_DOT] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_move] = ACTIONS(1752), - [sym_integer_literal] = ACTIONS(1750), - [aux_sym_string_literal_token1] = ACTIONS(1750), - [sym_char_literal] = ACTIONS(1750), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1750), - [sym_raw_string_literal] = ACTIONS(1750), - [sym_float_literal] = ACTIONS(1750), + [ts_builtin_sym_end] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_macro_rules_BANG] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_u8] = ACTIONS(1742), + [anon_sym_i8] = ACTIONS(1742), + [anon_sym_u16] = ACTIONS(1742), + [anon_sym_i16] = ACTIONS(1742), + [anon_sym_u32] = ACTIONS(1742), + [anon_sym_i32] = ACTIONS(1742), + [anon_sym_u64] = ACTIONS(1742), + [anon_sym_i64] = ACTIONS(1742), + [anon_sym_u128] = ACTIONS(1742), + [anon_sym_i128] = ACTIONS(1742), + [anon_sym_isize] = ACTIONS(1742), + [anon_sym_usize] = ACTIONS(1742), + [anon_sym_f32] = ACTIONS(1742), + [anon_sym_f64] = ACTIONS(1742), + [anon_sym_bool] = ACTIONS(1742), + [anon_sym_str] = ACTIONS(1742), + [anon_sym_char] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_enum] = ACTIONS(1742), + [anon_sym_fn] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_impl] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_loop] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_mod] = ACTIONS(1742), + [anon_sym_pub] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1742), + [anon_sym_struct] = ACTIONS(1742), + [anon_sym_trait] = ACTIONS(1742), + [anon_sym_type] = ACTIONS(1742), + [anon_sym_union] = ACTIONS(1742), + [anon_sym_unsafe] = ACTIONS(1742), + [anon_sym_use] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_yield] = ACTIONS(1742), + [anon_sym_move] = ACTIONS(1742), + [sym_integer_literal] = ACTIONS(1740), + [aux_sym_string_literal_token1] = ACTIONS(1740), + [sym_char_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1740), + [sym_raw_string_literal] = ACTIONS(1740), + [sym_float_literal] = ACTIONS(1740), [sym_block_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1754), - [sym_identifier] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_macro_rules_BANG] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_u8] = ACTIONS(1756), - [anon_sym_i8] = ACTIONS(1756), - [anon_sym_u16] = ACTIONS(1756), - [anon_sym_i16] = ACTIONS(1756), - [anon_sym_u32] = ACTIONS(1756), - [anon_sym_i32] = ACTIONS(1756), - [anon_sym_u64] = ACTIONS(1756), - [anon_sym_i64] = ACTIONS(1756), - [anon_sym_u128] = ACTIONS(1756), - [anon_sym_i128] = ACTIONS(1756), - [anon_sym_isize] = ACTIONS(1756), - [anon_sym_usize] = ACTIONS(1756), - [anon_sym_f32] = ACTIONS(1756), - [anon_sym_f64] = ACTIONS(1756), - [anon_sym_bool] = ACTIONS(1756), - [anon_sym_str] = ACTIONS(1756), - [anon_sym_char] = ACTIONS(1756), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_async] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [anon_sym_fn] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_impl] = ACTIONS(1756), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_loop] = ACTIONS(1756), - [anon_sym_match] = ACTIONS(1756), - [anon_sym_mod] = ACTIONS(1756), - [anon_sym_pub] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1756), - [anon_sym_trait] = ACTIONS(1756), - [anon_sym_type] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_unsafe] = ACTIONS(1756), - [anon_sym_use] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_yield] = ACTIONS(1756), - [anon_sym_move] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1754), - [aux_sym_string_literal_token1] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_crate] = ACTIONS(1756), - [sym_metavariable] = ACTIONS(1754), - [sym_raw_string_literal] = ACTIONS(1754), - [sym_float_literal] = ACTIONS(1754), + [ts_builtin_sym_end] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_macro_rules_BANG] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_u8] = ACTIONS(1746), + [anon_sym_i8] = ACTIONS(1746), + [anon_sym_u16] = ACTIONS(1746), + [anon_sym_i16] = ACTIONS(1746), + [anon_sym_u32] = ACTIONS(1746), + [anon_sym_i32] = ACTIONS(1746), + [anon_sym_u64] = ACTIONS(1746), + [anon_sym_i64] = ACTIONS(1746), + [anon_sym_u128] = ACTIONS(1746), + [anon_sym_i128] = ACTIONS(1746), + [anon_sym_isize] = ACTIONS(1746), + [anon_sym_usize] = ACTIONS(1746), + [anon_sym_f32] = ACTIONS(1746), + [anon_sym_f64] = ACTIONS(1746), + [anon_sym_bool] = ACTIONS(1746), + [anon_sym_str] = ACTIONS(1746), + [anon_sym_char] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1746), + [anon_sym_default] = ACTIONS(1746), + [anon_sym_enum] = ACTIONS(1746), + [anon_sym_fn] = ACTIONS(1746), + [anon_sym_for] = ACTIONS(1746), + [anon_sym_if] = ACTIONS(1746), + [anon_sym_impl] = ACTIONS(1746), + [anon_sym_let] = ACTIONS(1746), + [anon_sym_loop] = ACTIONS(1746), + [anon_sym_match] = ACTIONS(1746), + [anon_sym_mod] = ACTIONS(1746), + [anon_sym_pub] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_struct] = ACTIONS(1746), + [anon_sym_trait] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1746), + [anon_sym_union] = ACTIONS(1746), + [anon_sym_unsafe] = ACTIONS(1746), + [anon_sym_use] = ACTIONS(1746), + [anon_sym_while] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_yield] = ACTIONS(1746), + [anon_sym_move] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [aux_sym_string_literal_token1] = ACTIONS(1744), + [sym_char_literal] = ACTIONS(1744), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1746), + [sym_super] = ACTIONS(1746), + [sym_crate] = ACTIONS(1746), + [sym_metavariable] = ACTIONS(1744), + [sym_raw_string_literal] = ACTIONS(1744), + [sym_float_literal] = ACTIONS(1744), [sym_block_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_macro_rules_BANG] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_u8] = ACTIONS(1760), - [anon_sym_i8] = ACTIONS(1760), - [anon_sym_u16] = ACTIONS(1760), - [anon_sym_i16] = ACTIONS(1760), - [anon_sym_u32] = ACTIONS(1760), - [anon_sym_i32] = ACTIONS(1760), - [anon_sym_u64] = ACTIONS(1760), - [anon_sym_i64] = ACTIONS(1760), - [anon_sym_u128] = ACTIONS(1760), - [anon_sym_i128] = ACTIONS(1760), - [anon_sym_isize] = ACTIONS(1760), - [anon_sym_usize] = ACTIONS(1760), - [anon_sym_f32] = ACTIONS(1760), - [anon_sym_f64] = ACTIONS(1760), - [anon_sym_bool] = ACTIONS(1760), - [anon_sym_str] = ACTIONS(1760), - [anon_sym_char] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_async] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_fn] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_impl] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_loop] = ACTIONS(1760), - [anon_sym_match] = ACTIONS(1760), - [anon_sym_mod] = ACTIONS(1760), - [anon_sym_pub] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_trait] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1760), - [anon_sym_union] = ACTIONS(1760), - [anon_sym_unsafe] = ACTIONS(1760), - [anon_sym_use] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_COLON_COLON] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_DOT_DOT] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_move] = ACTIONS(1760), - [sym_integer_literal] = ACTIONS(1758), - [aux_sym_string_literal_token1] = ACTIONS(1758), - [sym_char_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1760), - [sym_super] = ACTIONS(1760), - [sym_crate] = ACTIONS(1760), - [sym_metavariable] = ACTIONS(1758), - [sym_raw_string_literal] = ACTIONS(1758), - [sym_float_literal] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_macro_rules_BANG] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_u8] = ACTIONS(1750), + [anon_sym_i8] = ACTIONS(1750), + [anon_sym_u16] = ACTIONS(1750), + [anon_sym_i16] = ACTIONS(1750), + [anon_sym_u32] = ACTIONS(1750), + [anon_sym_i32] = ACTIONS(1750), + [anon_sym_u64] = ACTIONS(1750), + [anon_sym_i64] = ACTIONS(1750), + [anon_sym_u128] = ACTIONS(1750), + [anon_sym_i128] = ACTIONS(1750), + [anon_sym_isize] = ACTIONS(1750), + [anon_sym_usize] = ACTIONS(1750), + [anon_sym_f32] = ACTIONS(1750), + [anon_sym_f64] = ACTIONS(1750), + [anon_sym_bool] = ACTIONS(1750), + [anon_sym_str] = ACTIONS(1750), + [anon_sym_char] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [anon_sym_async] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_const] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1750), + [anon_sym_fn] = ACTIONS(1750), + [anon_sym_for] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_impl] = ACTIONS(1750), + [anon_sym_let] = ACTIONS(1750), + [anon_sym_loop] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(1750), + [anon_sym_mod] = ACTIONS(1750), + [anon_sym_pub] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_struct] = ACTIONS(1750), + [anon_sym_trait] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_unsafe] = ACTIONS(1750), + [anon_sym_use] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_COLON_COLON] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_DOT_DOT] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_yield] = ACTIONS(1750), + [anon_sym_move] = ACTIONS(1750), + [sym_integer_literal] = ACTIONS(1748), + [aux_sym_string_literal_token1] = ACTIONS(1748), + [sym_char_literal] = ACTIONS(1748), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1750), + [sym_super] = ACTIONS(1750), + [sym_crate] = ACTIONS(1750), + [sym_metavariable] = ACTIONS(1748), + [sym_raw_string_literal] = ACTIONS(1748), + [sym_float_literal] = ACTIONS(1748), [sym_block_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_macro_rules_BANG] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_u8] = ACTIONS(1764), - [anon_sym_i8] = ACTIONS(1764), - [anon_sym_u16] = ACTIONS(1764), - [anon_sym_i16] = ACTIONS(1764), - [anon_sym_u32] = ACTIONS(1764), - [anon_sym_i32] = ACTIONS(1764), - [anon_sym_u64] = ACTIONS(1764), - [anon_sym_i64] = ACTIONS(1764), - [anon_sym_u128] = ACTIONS(1764), - [anon_sym_i128] = ACTIONS(1764), - [anon_sym_isize] = ACTIONS(1764), - [anon_sym_usize] = ACTIONS(1764), - [anon_sym_f32] = ACTIONS(1764), - [anon_sym_f64] = ACTIONS(1764), - [anon_sym_bool] = ACTIONS(1764), - [anon_sym_str] = ACTIONS(1764), - [anon_sym_char] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_async] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_enum] = ACTIONS(1764), - [anon_sym_fn] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_impl] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_loop] = ACTIONS(1764), - [anon_sym_match] = ACTIONS(1764), - [anon_sym_mod] = ACTIONS(1764), - [anon_sym_pub] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_struct] = ACTIONS(1764), - [anon_sym_trait] = ACTIONS(1764), - [anon_sym_type] = ACTIONS(1764), - [anon_sym_union] = ACTIONS(1764), - [anon_sym_unsafe] = ACTIONS(1764), - [anon_sym_use] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_COLON_COLON] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_yield] = ACTIONS(1764), - [anon_sym_move] = ACTIONS(1764), - [sym_integer_literal] = ACTIONS(1762), - [aux_sym_string_literal_token1] = ACTIONS(1762), - [sym_char_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_crate] = ACTIONS(1764), - [sym_metavariable] = ACTIONS(1762), - [sym_raw_string_literal] = ACTIONS(1762), - [sym_float_literal] = ACTIONS(1762), + [ts_builtin_sym_end] = ACTIONS(1752), + [sym_identifier] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_macro_rules_BANG] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_u8] = ACTIONS(1754), + [anon_sym_i8] = ACTIONS(1754), + [anon_sym_u16] = ACTIONS(1754), + [anon_sym_i16] = ACTIONS(1754), + [anon_sym_u32] = ACTIONS(1754), + [anon_sym_i32] = ACTIONS(1754), + [anon_sym_u64] = ACTIONS(1754), + [anon_sym_i64] = ACTIONS(1754), + [anon_sym_u128] = ACTIONS(1754), + [anon_sym_i128] = ACTIONS(1754), + [anon_sym_isize] = ACTIONS(1754), + [anon_sym_usize] = ACTIONS(1754), + [anon_sym_f32] = ACTIONS(1754), + [anon_sym_f64] = ACTIONS(1754), + [anon_sym_bool] = ACTIONS(1754), + [anon_sym_str] = ACTIONS(1754), + [anon_sym_char] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_async] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_const] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_default] = ACTIONS(1754), + [anon_sym_enum] = ACTIONS(1754), + [anon_sym_fn] = ACTIONS(1754), + [anon_sym_for] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_impl] = ACTIONS(1754), + [anon_sym_let] = ACTIONS(1754), + [anon_sym_loop] = ACTIONS(1754), + [anon_sym_match] = ACTIONS(1754), + [anon_sym_mod] = ACTIONS(1754), + [anon_sym_pub] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1754), + [anon_sym_trait] = ACTIONS(1754), + [anon_sym_type] = ACTIONS(1754), + [anon_sym_union] = ACTIONS(1754), + [anon_sym_unsafe] = ACTIONS(1754), + [anon_sym_use] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_yield] = ACTIONS(1754), + [anon_sym_move] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [aux_sym_string_literal_token1] = ACTIONS(1752), + [sym_char_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1754), + [sym_super] = ACTIONS(1754), + [sym_crate] = ACTIONS(1754), + [sym_metavariable] = ACTIONS(1752), + [sym_raw_string_literal] = ACTIONS(1752), + [sym_float_literal] = ACTIONS(1752), [sym_block_comment] = ACTIONS(3), }, [416] = { - [sym_attribute_item] = STATE(527), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_macro_invocation] = STATE(2457), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1953), - [sym_match_arm] = STATE(476), - [sym_last_match_arm] = STATE(2392), - [sym_match_pattern] = STATE(2467), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_enum_variant_list_repeat1] = STATE(527), - [aux_sym_match_block_repeat1] = STATE(476), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [ts_builtin_sym_end] = ACTIONS(1756), + [sym_identifier] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_macro_rules_BANG] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_u8] = ACTIONS(1758), + [anon_sym_i8] = ACTIONS(1758), + [anon_sym_u16] = ACTIONS(1758), + [anon_sym_i16] = ACTIONS(1758), + [anon_sym_u32] = ACTIONS(1758), + [anon_sym_i32] = ACTIONS(1758), + [anon_sym_u64] = ACTIONS(1758), + [anon_sym_i64] = ACTIONS(1758), + [anon_sym_u128] = ACTIONS(1758), + [anon_sym_i128] = ACTIONS(1758), + [anon_sym_isize] = ACTIONS(1758), + [anon_sym_usize] = ACTIONS(1758), + [anon_sym_f32] = ACTIONS(1758), + [anon_sym_f64] = ACTIONS(1758), + [anon_sym_bool] = ACTIONS(1758), + [anon_sym_str] = ACTIONS(1758), + [anon_sym_char] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_async] = ACTIONS(1758), + [anon_sym_break] = ACTIONS(1758), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_continue] = ACTIONS(1758), + [anon_sym_default] = ACTIONS(1758), + [anon_sym_enum] = ACTIONS(1758), + [anon_sym_fn] = ACTIONS(1758), + [anon_sym_for] = ACTIONS(1758), + [anon_sym_if] = ACTIONS(1758), + [anon_sym_impl] = ACTIONS(1758), + [anon_sym_let] = ACTIONS(1758), + [anon_sym_loop] = ACTIONS(1758), + [anon_sym_match] = ACTIONS(1758), + [anon_sym_mod] = ACTIONS(1758), + [anon_sym_pub] = ACTIONS(1758), + [anon_sym_return] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1758), + [anon_sym_struct] = ACTIONS(1758), + [anon_sym_trait] = ACTIONS(1758), + [anon_sym_type] = ACTIONS(1758), + [anon_sym_union] = ACTIONS(1758), + [anon_sym_unsafe] = ACTIONS(1758), + [anon_sym_use] = ACTIONS(1758), + [anon_sym_while] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_yield] = ACTIONS(1758), + [anon_sym_move] = ACTIONS(1758), + [sym_integer_literal] = ACTIONS(1756), + [aux_sym_string_literal_token1] = ACTIONS(1756), + [sym_char_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1758), + [anon_sym_false] = ACTIONS(1758), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1758), + [sym_super] = ACTIONS(1758), + [sym_crate] = ACTIONS(1758), + [sym_metavariable] = ACTIONS(1756), + [sym_raw_string_literal] = ACTIONS(1756), + [sym_float_literal] = ACTIONS(1756), [sym_block_comment] = ACTIONS(3), }, [417] = { + [ts_builtin_sym_end] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_macro_rules_BANG] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_u8] = ACTIONS(1762), + [anon_sym_i8] = ACTIONS(1762), + [anon_sym_u16] = ACTIONS(1762), + [anon_sym_i16] = ACTIONS(1762), + [anon_sym_u32] = ACTIONS(1762), + [anon_sym_i32] = ACTIONS(1762), + [anon_sym_u64] = ACTIONS(1762), + [anon_sym_i64] = ACTIONS(1762), + [anon_sym_u128] = ACTIONS(1762), + [anon_sym_i128] = ACTIONS(1762), + [anon_sym_isize] = ACTIONS(1762), + [anon_sym_usize] = ACTIONS(1762), + [anon_sym_f32] = ACTIONS(1762), + [anon_sym_f64] = ACTIONS(1762), + [anon_sym_bool] = ACTIONS(1762), + [anon_sym_str] = ACTIONS(1762), + [anon_sym_char] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_async] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_fn] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_impl] = ACTIONS(1762), + [anon_sym_let] = ACTIONS(1762), + [anon_sym_loop] = ACTIONS(1762), + [anon_sym_match] = ACTIONS(1762), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_pub] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_struct] = ACTIONS(1762), + [anon_sym_trait] = ACTIONS(1762), + [anon_sym_type] = ACTIONS(1762), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_unsafe] = ACTIONS(1762), + [anon_sym_use] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_yield] = ACTIONS(1762), + [anon_sym_move] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [aux_sym_string_literal_token1] = ACTIONS(1760), + [sym_char_literal] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1762), + [sym_super] = ACTIONS(1762), + [sym_crate] = ACTIONS(1762), + [sym_metavariable] = ACTIONS(1760), + [sym_raw_string_literal] = ACTIONS(1760), + [sym_float_literal] = ACTIONS(1760), + [sym_block_comment] = ACTIONS(3), + }, + [418] = { + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_macro_rules_BANG] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_u8] = ACTIONS(1766), + [anon_sym_i8] = ACTIONS(1766), + [anon_sym_u16] = ACTIONS(1766), + [anon_sym_i16] = ACTIONS(1766), + [anon_sym_u32] = ACTIONS(1766), + [anon_sym_i32] = ACTIONS(1766), + [anon_sym_u64] = ACTIONS(1766), + [anon_sym_i64] = ACTIONS(1766), + [anon_sym_u128] = ACTIONS(1766), + [anon_sym_i128] = ACTIONS(1766), + [anon_sym_isize] = ACTIONS(1766), + [anon_sym_usize] = ACTIONS(1766), + [anon_sym_f32] = ACTIONS(1766), + [anon_sym_f64] = ACTIONS(1766), + [anon_sym_bool] = ACTIONS(1766), + [anon_sym_str] = ACTIONS(1766), + [anon_sym_char] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_fn] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_impl] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_mod] = ACTIONS(1766), + [anon_sym_pub] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_struct] = ACTIONS(1766), + [anon_sym_trait] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_union] = ACTIONS(1766), + [anon_sym_unsafe] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_DASH] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_move] = ACTIONS(1766), + [sym_integer_literal] = ACTIONS(1764), + [aux_sym_string_literal_token1] = ACTIONS(1764), + [sym_char_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_crate] = ACTIONS(1766), + [sym_metavariable] = ACTIONS(1764), + [sym_raw_string_literal] = ACTIONS(1764), + [sym_float_literal] = ACTIONS(1764), + [sym_block_comment] = ACTIONS(3), + }, + [419] = { [ts_builtin_sym_end] = ACTIONS(1768), [sym_identifier] = ACTIONS(1770), [anon_sym_SEMI] = ACTIONS(1768), @@ -53728,7 +54340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1768), [sym_block_comment] = ACTIONS(3), }, - [418] = { + [420] = { [ts_builtin_sym_end] = ACTIONS(1772), [sym_identifier] = ACTIONS(1774), [anon_sym_SEMI] = ACTIONS(1772), @@ -53805,7 +54417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1772), [sym_block_comment] = ACTIONS(3), }, - [419] = { + [421] = { [ts_builtin_sym_end] = ACTIONS(1776), [sym_identifier] = ACTIONS(1778), [anon_sym_SEMI] = ACTIONS(1776), @@ -53882,7 +54494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1776), [sym_block_comment] = ACTIONS(3), }, - [420] = { + [422] = { [ts_builtin_sym_end] = ACTIONS(1780), [sym_identifier] = ACTIONS(1782), [anon_sym_SEMI] = ACTIONS(1780), @@ -53959,7 +54571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1780), [sym_block_comment] = ACTIONS(3), }, - [421] = { + [423] = { [ts_builtin_sym_end] = ACTIONS(1784), [sym_identifier] = ACTIONS(1786), [anon_sym_SEMI] = ACTIONS(1784), @@ -54036,7 +54648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1784), [sym_block_comment] = ACTIONS(3), }, - [422] = { + [424] = { [ts_builtin_sym_end] = ACTIONS(1788), [sym_identifier] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1788), @@ -54113,7 +54725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1788), [sym_block_comment] = ACTIONS(3), }, - [423] = { + [425] = { [ts_builtin_sym_end] = ACTIONS(1792), [sym_identifier] = ACTIONS(1794), [anon_sym_SEMI] = ACTIONS(1792), @@ -54190,7 +54802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1792), [sym_block_comment] = ACTIONS(3), }, - [424] = { + [426] = { [ts_builtin_sym_end] = ACTIONS(1796), [sym_identifier] = ACTIONS(1798), [anon_sym_SEMI] = ACTIONS(1796), @@ -54267,7 +54879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1796), [sym_block_comment] = ACTIONS(3), }, - [425] = { + [427] = { [ts_builtin_sym_end] = ACTIONS(1800), [sym_identifier] = ACTIONS(1802), [anon_sym_SEMI] = ACTIONS(1800), @@ -54344,7 +54956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, - [426] = { + [428] = { [ts_builtin_sym_end] = ACTIONS(1804), [sym_identifier] = ACTIONS(1806), [anon_sym_SEMI] = ACTIONS(1804), @@ -54421,7 +55033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [429] = { [ts_builtin_sym_end] = ACTIONS(1808), [sym_identifier] = ACTIONS(1810), [anon_sym_SEMI] = ACTIONS(1808), @@ -54498,7 +55110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, - [428] = { + [430] = { [ts_builtin_sym_end] = ACTIONS(1812), [sym_identifier] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(1812), @@ -54575,7 +55187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, - [429] = { + [431] = { [ts_builtin_sym_end] = ACTIONS(1816), [sym_identifier] = ACTIONS(1818), [anon_sym_SEMI] = ACTIONS(1816), @@ -54652,7 +55264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, - [430] = { + [432] = { [ts_builtin_sym_end] = ACTIONS(1820), [sym_identifier] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(1820), @@ -54729,7 +55341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, - [431] = { + [433] = { [ts_builtin_sym_end] = ACTIONS(1824), [sym_identifier] = ACTIONS(1826), [anon_sym_SEMI] = ACTIONS(1824), @@ -54806,7 +55418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, - [432] = { + [434] = { [ts_builtin_sym_end] = ACTIONS(1828), [sym_identifier] = ACTIONS(1830), [anon_sym_SEMI] = ACTIONS(1828), @@ -54883,7 +55495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1828), [sym_block_comment] = ACTIONS(3), }, - [433] = { + [435] = { [ts_builtin_sym_end] = ACTIONS(1832), [sym_identifier] = ACTIONS(1834), [anon_sym_SEMI] = ACTIONS(1832), @@ -54960,7 +55572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1832), [sym_block_comment] = ACTIONS(3), }, - [434] = { + [436] = { [ts_builtin_sym_end] = ACTIONS(1836), [sym_identifier] = ACTIONS(1838), [anon_sym_SEMI] = ACTIONS(1836), @@ -55037,7 +55649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [437] = { [ts_builtin_sym_end] = ACTIONS(1840), [sym_identifier] = ACTIONS(1842), [anon_sym_SEMI] = ACTIONS(1840), @@ -55114,7 +55726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1840), [sym_block_comment] = ACTIONS(3), }, - [436] = { + [438] = { [ts_builtin_sym_end] = ACTIONS(1844), [sym_identifier] = ACTIONS(1846), [anon_sym_SEMI] = ACTIONS(1844), @@ -55191,7 +55803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, - [437] = { + [439] = { [ts_builtin_sym_end] = ACTIONS(1848), [sym_identifier] = ACTIONS(1850), [anon_sym_SEMI] = ACTIONS(1848), @@ -55268,7 +55880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, - [438] = { + [440] = { [ts_builtin_sym_end] = ACTIONS(1852), [sym_identifier] = ACTIONS(1854), [anon_sym_SEMI] = ACTIONS(1852), @@ -55345,7 +55957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, - [439] = { + [441] = { [ts_builtin_sym_end] = ACTIONS(1856), [sym_identifier] = ACTIONS(1858), [anon_sym_SEMI] = ACTIONS(1856), @@ -55422,7 +56034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, - [440] = { + [442] = { [ts_builtin_sym_end] = ACTIONS(1860), [sym_identifier] = ACTIONS(1862), [anon_sym_SEMI] = ACTIONS(1860), @@ -55499,7 +56111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, - [441] = { + [443] = { [ts_builtin_sym_end] = ACTIONS(1864), [sym_identifier] = ACTIONS(1866), [anon_sym_SEMI] = ACTIONS(1864), @@ -55576,7 +56188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1864), [sym_block_comment] = ACTIONS(3), }, - [442] = { + [444] = { [ts_builtin_sym_end] = ACTIONS(1868), [sym_identifier] = ACTIONS(1870), [anon_sym_SEMI] = ACTIONS(1868), @@ -55653,7 +56265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1868), [sym_block_comment] = ACTIONS(3), }, - [443] = { + [445] = { [ts_builtin_sym_end] = ACTIONS(1872), [sym_identifier] = ACTIONS(1874), [anon_sym_SEMI] = ACTIONS(1872), @@ -55730,7 +56342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1872), [sym_block_comment] = ACTIONS(3), }, - [444] = { + [446] = { [ts_builtin_sym_end] = ACTIONS(1876), [sym_identifier] = ACTIONS(1878), [anon_sym_SEMI] = ACTIONS(1876), @@ -55807,7 +56419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1876), [sym_block_comment] = ACTIONS(3), }, - [445] = { + [447] = { [ts_builtin_sym_end] = ACTIONS(1880), [sym_identifier] = ACTIONS(1882), [anon_sym_SEMI] = ACTIONS(1880), @@ -55884,7 +56496,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1880), [sym_block_comment] = ACTIONS(3), }, - [446] = { + [448] = { + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_macro_rules_BANG] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(556), + [anon_sym_i8] = ACTIONS(556), + [anon_sym_u16] = ACTIONS(556), + [anon_sym_i16] = ACTIONS(556), + [anon_sym_u32] = ACTIONS(556), + [anon_sym_i32] = ACTIONS(556), + [anon_sym_u64] = ACTIONS(556), + [anon_sym_i64] = ACTIONS(556), + [anon_sym_u128] = ACTIONS(556), + [anon_sym_i128] = ACTIONS(556), + [anon_sym_isize] = ACTIONS(556), + [anon_sym_usize] = ACTIONS(556), + [anon_sym_f32] = ACTIONS(556), + [anon_sym_f64] = ACTIONS(556), + [anon_sym_bool] = ACTIONS(556), + [anon_sym_str] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_async] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_enum] = ACTIONS(556), + [anon_sym_fn] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_impl] = ACTIONS(556), + [anon_sym_let] = ACTIONS(556), + [anon_sym_loop] = ACTIONS(556), + [anon_sym_match] = ACTIONS(556), + [anon_sym_mod] = ACTIONS(556), + [anon_sym_pub] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_struct] = ACTIONS(556), + [anon_sym_trait] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_union] = ACTIONS(556), + [anon_sym_unsafe] = ACTIONS(556), + [anon_sym_use] = ACTIONS(556), + [anon_sym_while] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_extern] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_DOT_DOT] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(554), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(554), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(556), + [anon_sym_false] = ACTIONS(556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_crate] = ACTIONS(556), + [sym_metavariable] = ACTIONS(554), + [sym_raw_string_literal] = ACTIONS(554), + [sym_float_literal] = ACTIONS(554), + [sym_block_comment] = ACTIONS(3), + }, + [449] = { [ts_builtin_sym_end] = ACTIONS(1884), [sym_identifier] = ACTIONS(1886), [anon_sym_SEMI] = ACTIONS(1884), @@ -55961,7 +56650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1884), [sym_block_comment] = ACTIONS(3), }, - [447] = { + [450] = { [ts_builtin_sym_end] = ACTIONS(1888), [sym_identifier] = ACTIONS(1890), [anon_sym_SEMI] = ACTIONS(1888), @@ -56038,7 +56727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1888), [sym_block_comment] = ACTIONS(3), }, - [448] = { + [451] = { [ts_builtin_sym_end] = ACTIONS(1892), [sym_identifier] = ACTIONS(1894), [anon_sym_SEMI] = ACTIONS(1892), @@ -56115,7 +56804,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1892), [sym_block_comment] = ACTIONS(3), }, - [449] = { + [452] = { + [ts_builtin_sym_end] = ACTIONS(540), + [sym_identifier] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_macro_rules_BANG] = ACTIONS(540), + [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_u8] = ACTIONS(542), + [anon_sym_i8] = ACTIONS(542), + [anon_sym_u16] = ACTIONS(542), + [anon_sym_i16] = ACTIONS(542), + [anon_sym_u32] = ACTIONS(542), + [anon_sym_i32] = ACTIONS(542), + [anon_sym_u64] = ACTIONS(542), + [anon_sym_i64] = ACTIONS(542), + [anon_sym_u128] = ACTIONS(542), + [anon_sym_i128] = ACTIONS(542), + [anon_sym_isize] = ACTIONS(542), + [anon_sym_usize] = ACTIONS(542), + [anon_sym_f32] = ACTIONS(542), + [anon_sym_f64] = ACTIONS(542), + [anon_sym_bool] = ACTIONS(542), + [anon_sym_str] = ACTIONS(542), + [anon_sym_char] = ACTIONS(542), + [anon_sym_SQUOTE] = ACTIONS(542), + [anon_sym_async] = ACTIONS(542), + [anon_sym_break] = ACTIONS(542), + [anon_sym_const] = ACTIONS(542), + [anon_sym_continue] = ACTIONS(542), + [anon_sym_default] = ACTIONS(542), + [anon_sym_enum] = ACTIONS(542), + [anon_sym_fn] = ACTIONS(542), + [anon_sym_for] = ACTIONS(542), + [anon_sym_if] = ACTIONS(542), + [anon_sym_impl] = ACTIONS(542), + [anon_sym_let] = ACTIONS(542), + [anon_sym_loop] = ACTIONS(542), + [anon_sym_match] = ACTIONS(542), + [anon_sym_mod] = ACTIONS(542), + [anon_sym_pub] = ACTIONS(542), + [anon_sym_return] = ACTIONS(542), + [anon_sym_static] = ACTIONS(542), + [anon_sym_struct] = ACTIONS(542), + [anon_sym_trait] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_union] = ACTIONS(542), + [anon_sym_unsafe] = ACTIONS(542), + [anon_sym_use] = ACTIONS(542), + [anon_sym_while] = ACTIONS(542), + [anon_sym_POUND] = ACTIONS(540), + [anon_sym_BANG] = ACTIONS(540), + [anon_sym_extern] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_COLON_COLON] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_PIPE] = ACTIONS(540), + [anon_sym_yield] = ACTIONS(542), + [anon_sym_move] = ACTIONS(542), + [sym_integer_literal] = ACTIONS(540), + [aux_sym_string_literal_token1] = ACTIONS(540), + [sym_char_literal] = ACTIONS(540), + [anon_sym_true] = ACTIONS(542), + [anon_sym_false] = ACTIONS(542), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(542), + [sym_super] = ACTIONS(542), + [sym_crate] = ACTIONS(542), + [sym_metavariable] = ACTIONS(540), + [sym_raw_string_literal] = ACTIONS(540), + [sym_float_literal] = ACTIONS(540), + [sym_block_comment] = ACTIONS(3), + }, + [453] = { [ts_builtin_sym_end] = ACTIONS(1896), [sym_identifier] = ACTIONS(1898), [anon_sym_SEMI] = ACTIONS(1896), @@ -56192,7 +56958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1896), [sym_block_comment] = ACTIONS(3), }, - [450] = { + [454] = { [ts_builtin_sym_end] = ACTIONS(1900), [sym_identifier] = ACTIONS(1902), [anon_sym_SEMI] = ACTIONS(1900), @@ -56269,7 +57035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1900), [sym_block_comment] = ACTIONS(3), }, - [451] = { + [455] = { [ts_builtin_sym_end] = ACTIONS(1904), [sym_identifier] = ACTIONS(1906), [anon_sym_SEMI] = ACTIONS(1904), @@ -56346,7 +57112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, - [452] = { + [456] = { [ts_builtin_sym_end] = ACTIONS(1908), [sym_identifier] = ACTIONS(1910), [anon_sym_SEMI] = ACTIONS(1908), @@ -56423,7 +57189,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, - [453] = { + [457] = { + [ts_builtin_sym_end] = ACTIONS(530), + [sym_identifier] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_macro_rules_BANG] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_u8] = ACTIONS(532), + [anon_sym_i8] = ACTIONS(532), + [anon_sym_u16] = ACTIONS(532), + [anon_sym_i16] = ACTIONS(532), + [anon_sym_u32] = ACTIONS(532), + [anon_sym_i32] = ACTIONS(532), + [anon_sym_u64] = ACTIONS(532), + [anon_sym_i64] = ACTIONS(532), + [anon_sym_u128] = ACTIONS(532), + [anon_sym_i128] = ACTIONS(532), + [anon_sym_isize] = ACTIONS(532), + [anon_sym_usize] = ACTIONS(532), + [anon_sym_f32] = ACTIONS(532), + [anon_sym_f64] = ACTIONS(532), + [anon_sym_bool] = ACTIONS(532), + [anon_sym_str] = ACTIONS(532), + [anon_sym_char] = ACTIONS(532), + [anon_sym_SQUOTE] = ACTIONS(532), + [anon_sym_async] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_default] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_fn] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_impl] = ACTIONS(532), + [anon_sym_let] = ACTIONS(532), + [anon_sym_loop] = ACTIONS(532), + [anon_sym_match] = ACTIONS(532), + [anon_sym_mod] = ACTIONS(532), + [anon_sym_pub] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_trait] = ACTIONS(532), + [anon_sym_type] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [anon_sym_unsafe] = ACTIONS(532), + [anon_sym_use] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_POUND] = ACTIONS(530), + [anon_sym_BANG] = ACTIONS(530), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(530), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(530), + [anon_sym_yield] = ACTIONS(532), + [anon_sym_move] = ACTIONS(532), + [sym_integer_literal] = ACTIONS(530), + [aux_sym_string_literal_token1] = ACTIONS(530), + [sym_char_literal] = ACTIONS(530), + [anon_sym_true] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(532), + [sym_super] = ACTIONS(532), + [sym_crate] = ACTIONS(532), + [sym_metavariable] = ACTIONS(530), + [sym_raw_string_literal] = ACTIONS(530), + [sym_float_literal] = ACTIONS(530), + [sym_block_comment] = ACTIONS(3), + }, + [458] = { [ts_builtin_sym_end] = ACTIONS(1912), [sym_identifier] = ACTIONS(1914), [anon_sym_SEMI] = ACTIONS(1912), @@ -56500,7 +57343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1912), [sym_block_comment] = ACTIONS(3), }, - [454] = { + [459] = { [ts_builtin_sym_end] = ACTIONS(1916), [sym_identifier] = ACTIONS(1918), [anon_sym_SEMI] = ACTIONS(1916), @@ -56577,7 +57420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1916), [sym_block_comment] = ACTIONS(3), }, - [455] = { + [460] = { [ts_builtin_sym_end] = ACTIONS(1920), [sym_identifier] = ACTIONS(1922), [anon_sym_SEMI] = ACTIONS(1920), @@ -56654,7 +57497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1920), [sym_block_comment] = ACTIONS(3), }, - [456] = { + [461] = { [ts_builtin_sym_end] = ACTIONS(1924), [sym_identifier] = ACTIONS(1926), [anon_sym_SEMI] = ACTIONS(1924), @@ -56731,7 +57574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1924), [sym_block_comment] = ACTIONS(3), }, - [457] = { + [462] = { [ts_builtin_sym_end] = ACTIONS(1928), [sym_identifier] = ACTIONS(1930), [anon_sym_SEMI] = ACTIONS(1928), @@ -56808,7 +57651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1928), [sym_block_comment] = ACTIONS(3), }, - [458] = { + [463] = { [ts_builtin_sym_end] = ACTIONS(1932), [sym_identifier] = ACTIONS(1934), [anon_sym_SEMI] = ACTIONS(1932), @@ -56885,7 +57728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1932), [sym_block_comment] = ACTIONS(3), }, - [459] = { + [464] = { [ts_builtin_sym_end] = ACTIONS(1936), [sym_identifier] = ACTIONS(1938), [anon_sym_SEMI] = ACTIONS(1936), @@ -56962,7 +57805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1936), [sym_block_comment] = ACTIONS(3), }, - [460] = { + [465] = { [ts_builtin_sym_end] = ACTIONS(1940), [sym_identifier] = ACTIONS(1942), [anon_sym_SEMI] = ACTIONS(1940), @@ -57039,7 +57882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1940), [sym_block_comment] = ACTIONS(3), }, - [461] = { + [466] = { [ts_builtin_sym_end] = ACTIONS(1944), [sym_identifier] = ACTIONS(1946), [anon_sym_SEMI] = ACTIONS(1944), @@ -57116,7 +57959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1944), [sym_block_comment] = ACTIONS(3), }, - [462] = { + [467] = { [ts_builtin_sym_end] = ACTIONS(1948), [sym_identifier] = ACTIONS(1950), [anon_sym_SEMI] = ACTIONS(1948), @@ -57193,7 +58036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1948), [sym_block_comment] = ACTIONS(3), }, - [463] = { + [468] = { [ts_builtin_sym_end] = ACTIONS(1952), [sym_identifier] = ACTIONS(1954), [anon_sym_SEMI] = ACTIONS(1952), @@ -57270,7 +58113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1952), [sym_block_comment] = ACTIONS(3), }, - [464] = { + [469] = { [ts_builtin_sym_end] = ACTIONS(1956), [sym_identifier] = ACTIONS(1958), [anon_sym_SEMI] = ACTIONS(1956), @@ -57347,7 +58190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1956), [sym_block_comment] = ACTIONS(3), }, - [465] = { + [470] = { [ts_builtin_sym_end] = ACTIONS(1960), [sym_identifier] = ACTIONS(1962), [anon_sym_SEMI] = ACTIONS(1960), @@ -57424,7 +58267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1960), [sym_block_comment] = ACTIONS(3), }, - [466] = { + [471] = { [ts_builtin_sym_end] = ACTIONS(1964), [sym_identifier] = ACTIONS(1966), [anon_sym_SEMI] = ACTIONS(1964), @@ -57501,7 +58344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1964), [sym_block_comment] = ACTIONS(3), }, - [467] = { + [472] = { [ts_builtin_sym_end] = ACTIONS(1968), [sym_identifier] = ACTIONS(1970), [anon_sym_SEMI] = ACTIONS(1968), @@ -57578,7 +58421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1968), [sym_block_comment] = ACTIONS(3), }, - [468] = { + [473] = { [ts_builtin_sym_end] = ACTIONS(1972), [sym_identifier] = ACTIONS(1974), [anon_sym_SEMI] = ACTIONS(1972), @@ -57655,7 +58498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1972), [sym_block_comment] = ACTIONS(3), }, - [469] = { + [474] = { [ts_builtin_sym_end] = ACTIONS(1976), [sym_identifier] = ACTIONS(1978), [anon_sym_SEMI] = ACTIONS(1976), @@ -57732,7 +58575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1976), [sym_block_comment] = ACTIONS(3), }, - [470] = { + [475] = { [ts_builtin_sym_end] = ACTIONS(1980), [sym_identifier] = ACTIONS(1982), [anon_sym_SEMI] = ACTIONS(1980), @@ -57809,7 +58652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1980), [sym_block_comment] = ACTIONS(3), }, - [471] = { + [476] = { [ts_builtin_sym_end] = ACTIONS(1984), [sym_identifier] = ACTIONS(1986), [anon_sym_SEMI] = ACTIONS(1984), @@ -57886,7 +58729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1984), [sym_block_comment] = ACTIONS(3), }, - [472] = { + [477] = { [ts_builtin_sym_end] = ACTIONS(1988), [sym_identifier] = ACTIONS(1990), [anon_sym_SEMI] = ACTIONS(1988), @@ -57963,7 +58806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1988), [sym_block_comment] = ACTIONS(3), }, - [473] = { + [478] = { [ts_builtin_sym_end] = ACTIONS(1992), [sym_identifier] = ACTIONS(1994), [anon_sym_SEMI] = ACTIONS(1992), @@ -58040,7 +58883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1992), [sym_block_comment] = ACTIONS(3), }, - [474] = { + [479] = { [ts_builtin_sym_end] = ACTIONS(1996), [sym_identifier] = ACTIONS(1998), [anon_sym_SEMI] = ACTIONS(1996), @@ -58117,7 +58960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1996), [sym_block_comment] = ACTIONS(3), }, - [475] = { + [480] = { [ts_builtin_sym_end] = ACTIONS(2000), [sym_identifier] = ACTIONS(2002), [anon_sym_SEMI] = ACTIONS(2000), @@ -58194,1085 +59037,934 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [476] = { - [sym_attribute_item] = STATE(527), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_macro_invocation] = STATE(2457), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1953), - [sym_match_arm] = STATE(494), - [sym_last_match_arm] = STATE(2390), - [sym_match_pattern] = STATE(2467), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_enum_variant_list_repeat1] = STATE(527), - [aux_sym_match_block_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [477] = { - [sym__token_pattern] = STATE(481), - [sym_token_tree_pattern] = STATE(481), - [sym_token_binding_pattern] = STATE(481), - [sym_token_repetition_pattern] = STATE(481), - [sym__literal] = STATE(481), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(481), - [sym_identifier] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2012), - [anon_sym_DOLLAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2004), - [anon_sym_i8] = ACTIONS(2004), - [anon_sym_u16] = ACTIONS(2004), - [anon_sym_i16] = ACTIONS(2004), - [anon_sym_u32] = ACTIONS(2004), - [anon_sym_i32] = ACTIONS(2004), - [anon_sym_u64] = ACTIONS(2004), - [anon_sym_i64] = ACTIONS(2004), - [anon_sym_u128] = ACTIONS(2004), - [anon_sym_i128] = ACTIONS(2004), - [anon_sym_isize] = ACTIONS(2004), - [anon_sym_usize] = ACTIONS(2004), - [anon_sym_f32] = ACTIONS(2004), - [anon_sym_f64] = ACTIONS(2004), - [anon_sym_bool] = ACTIONS(2004), - [anon_sym_str] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [aux_sym__non_special_token_token1] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_as] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_await] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_fn] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_impl] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_mod] = ACTIONS(2004), - [anon_sym_pub] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_trait] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsafe] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_where] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [sym_mutable_specifier] = ACTIONS(2004), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, - [478] = { - [sym__token_pattern] = STATE(480), - [sym_token_tree_pattern] = STATE(480), - [sym_token_binding_pattern] = STATE(480), - [sym_token_repetition_pattern] = STATE(480), - [sym__literal] = STATE(480), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(2024), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2024), - [anon_sym_i8] = ACTIONS(2024), - [anon_sym_u16] = ACTIONS(2024), - [anon_sym_i16] = ACTIONS(2024), - [anon_sym_u32] = ACTIONS(2024), - [anon_sym_i32] = ACTIONS(2024), - [anon_sym_u64] = ACTIONS(2024), - [anon_sym_i64] = ACTIONS(2024), - [anon_sym_u128] = ACTIONS(2024), - [anon_sym_i128] = ACTIONS(2024), - [anon_sym_isize] = ACTIONS(2024), - [anon_sym_usize] = ACTIONS(2024), - [anon_sym_f32] = ACTIONS(2024), - [anon_sym_f64] = ACTIONS(2024), - [anon_sym_bool] = ACTIONS(2024), - [anon_sym_str] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [aux_sym__non_special_token_token1] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_as] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_await] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_fn] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_impl] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_loop] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_mod] = ACTIONS(2024), - [anon_sym_pub] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_trait] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_unsafe] = ACTIONS(2024), - [anon_sym_use] = ACTIONS(2024), - [anon_sym_where] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [sym_mutable_specifier] = ACTIONS(2024), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, - [479] = { - [sym__token_pattern] = STATE(244), - [sym_token_tree_pattern] = STATE(244), - [sym_token_binding_pattern] = STATE(244), - [sym_token_repetition_pattern] = STATE(244), - [sym__literal] = STATE(244), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), - [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(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, - [480] = { - [sym__token_pattern] = STATE(244), - [sym_token_tree_pattern] = STATE(244), - [sym_token_binding_pattern] = STATE(244), - [sym_token_repetition_pattern] = STATE(244), - [sym__literal] = STATE(244), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), - [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(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, [481] = { - [sym__token_pattern] = STATE(244), - [sym_token_tree_pattern] = STATE(244), - [sym_token_binding_pattern] = STATE(244), - [sym_token_repetition_pattern] = STATE(244), - [sym__literal] = STATE(244), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2014), - [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(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [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_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), }, [482] = { - [sym_attribute_item] = STATE(527), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_macro_invocation] = STATE(2457), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1953), - [sym_match_arm] = STATE(494), - [sym_last_match_arm] = STATE(2517), - [sym_match_pattern] = STATE(2467), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_enum_variant_list_repeat1] = STATE(527), - [aux_sym_match_block_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym__token_pattern] = STATE(496), + [sym_token_tree_pattern] = STATE(496), + [sym_token_binding_pattern] = STATE(496), + [sym_token_repetition_pattern] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2008), + [anon_sym_i8] = ACTIONS(2008), + [anon_sym_u16] = ACTIONS(2008), + [anon_sym_i16] = ACTIONS(2008), + [anon_sym_u32] = ACTIONS(2008), + [anon_sym_i32] = ACTIONS(2008), + [anon_sym_u64] = ACTIONS(2008), + [anon_sym_i64] = ACTIONS(2008), + [anon_sym_u128] = ACTIONS(2008), + [anon_sym_i128] = ACTIONS(2008), + [anon_sym_isize] = ACTIONS(2008), + [anon_sym_usize] = ACTIONS(2008), + [anon_sym_f32] = ACTIONS(2008), + [anon_sym_f64] = ACTIONS(2008), + [anon_sym_bool] = ACTIONS(2008), + [anon_sym_str] = ACTIONS(2008), + [anon_sym_char] = ACTIONS(2008), + [aux_sym__non_special_token_token1] = ACTIONS(2008), + [anon_sym_SQUOTE] = ACTIONS(2008), + [anon_sym_as] = ACTIONS(2008), + [anon_sym_async] = ACTIONS(2008), + [anon_sym_await] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_fn] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_impl] = ACTIONS(2008), + [anon_sym_let] = ACTIONS(2008), + [anon_sym_loop] = ACTIONS(2008), + [anon_sym_match] = ACTIONS(2008), + [anon_sym_mod] = ACTIONS(2008), + [anon_sym_pub] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_trait] = ACTIONS(2008), + [anon_sym_type] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_unsafe] = ACTIONS(2008), + [anon_sym_use] = ACTIONS(2008), + [anon_sym_where] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [sym_mutable_specifier] = ACTIONS(2008), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2008), + [sym_super] = ACTIONS(2008), + [sym_crate] = ACTIONS(2008), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [483] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_RBRACK] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_u8] = ACTIONS(2030), - [anon_sym_i8] = ACTIONS(2030), - [anon_sym_u16] = ACTIONS(2030), - [anon_sym_i16] = ACTIONS(2030), - [anon_sym_u32] = ACTIONS(2030), - [anon_sym_i32] = ACTIONS(2030), - [anon_sym_u64] = ACTIONS(2030), - [anon_sym_i64] = ACTIONS(2030), - [anon_sym_u128] = ACTIONS(2030), - [anon_sym_i128] = ACTIONS(2030), - [anon_sym_isize] = ACTIONS(2030), - [anon_sym_usize] = ACTIONS(2030), - [anon_sym_f32] = ACTIONS(2030), - [anon_sym_f64] = ACTIONS(2030), - [anon_sym_bool] = ACTIONS(2030), - [anon_sym_str] = ACTIONS(2030), - [anon_sym_char] = ACTIONS(2030), - [aux_sym__non_special_token_token1] = ACTIONS(2030), - [anon_sym_SQUOTE] = ACTIONS(2030), - [anon_sym_as] = ACTIONS(2030), - [anon_sym_async] = ACTIONS(2030), - [anon_sym_await] = ACTIONS(2030), - [anon_sym_break] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(2030), - [anon_sym_continue] = ACTIONS(2030), - [anon_sym_default] = ACTIONS(2030), - [anon_sym_enum] = ACTIONS(2030), - [anon_sym_fn] = ACTIONS(2030), - [anon_sym_for] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2030), - [anon_sym_impl] = ACTIONS(2030), - [anon_sym_let] = ACTIONS(2030), - [anon_sym_loop] = ACTIONS(2030), - [anon_sym_match] = ACTIONS(2030), - [anon_sym_mod] = ACTIONS(2030), - [anon_sym_pub] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2030), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_struct] = ACTIONS(2030), - [anon_sym_trait] = ACTIONS(2030), - [anon_sym_type] = ACTIONS(2030), - [anon_sym_union] = ACTIONS(2030), - [anon_sym_unsafe] = ACTIONS(2030), - [anon_sym_use] = ACTIONS(2030), - [anon_sym_where] = ACTIONS(2030), - [anon_sym_while] = ACTIONS(2030), - [sym_mutable_specifier] = ACTIONS(2030), - [sym_integer_literal] = ACTIONS(2047), - [aux_sym_string_literal_token1] = ACTIONS(2050), - [sym_char_literal] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2030), - [sym_super] = ACTIONS(2030), - [sym_crate] = ACTIONS(2030), - [sym_metavariable] = ACTIONS(2056), - [sym_raw_string_literal] = ACTIONS(2047), - [sym_float_literal] = ACTIONS(2047), + [sym__token_pattern] = STATE(484), + [sym_token_tree_pattern] = STATE(484), + [sym_token_binding_pattern] = STATE(484), + [sym_token_repetition_pattern] = STATE(484), + [sym__literal] = STATE(484), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(484), + [sym_identifier] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2028), + [anon_sym_i8] = ACTIONS(2028), + [anon_sym_u16] = ACTIONS(2028), + [anon_sym_i16] = ACTIONS(2028), + [anon_sym_u32] = ACTIONS(2028), + [anon_sym_i32] = ACTIONS(2028), + [anon_sym_u64] = ACTIONS(2028), + [anon_sym_i64] = ACTIONS(2028), + [anon_sym_u128] = ACTIONS(2028), + [anon_sym_i128] = ACTIONS(2028), + [anon_sym_isize] = ACTIONS(2028), + [anon_sym_usize] = ACTIONS(2028), + [anon_sym_f32] = ACTIONS(2028), + [anon_sym_f64] = ACTIONS(2028), + [anon_sym_bool] = ACTIONS(2028), + [anon_sym_str] = ACTIONS(2028), + [anon_sym_char] = ACTIONS(2028), + [aux_sym__non_special_token_token1] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_await] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_fn] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_impl] = ACTIONS(2028), + [anon_sym_let] = ACTIONS(2028), + [anon_sym_loop] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_mod] = ACTIONS(2028), + [anon_sym_pub] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_trait] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_unsafe] = ACTIONS(2028), + [anon_sym_use] = ACTIONS(2028), + [anon_sym_where] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [sym_mutable_specifier] = ACTIONS(2028), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_crate] = ACTIONS(2028), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [484] = { - [sym__token_pattern] = STATE(244), - [sym_token_tree_pattern] = STATE(244), - [sym_token_binding_pattern] = STATE(244), - [sym_token_repetition_pattern] = STATE(244), - [sym__literal] = STATE(244), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), - [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(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym__token_pattern] = STATE(251), + [sym_token_tree_pattern] = STATE(251), + [sym_token_binding_pattern] = STATE(251), + [sym_token_repetition_pattern] = STATE(251), + [sym__literal] = STATE(251), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2032), + [anon_sym_i8] = ACTIONS(2032), + [anon_sym_u16] = ACTIONS(2032), + [anon_sym_i16] = ACTIONS(2032), + [anon_sym_u32] = ACTIONS(2032), + [anon_sym_i32] = ACTIONS(2032), + [anon_sym_u64] = ACTIONS(2032), + [anon_sym_i64] = ACTIONS(2032), + [anon_sym_u128] = ACTIONS(2032), + [anon_sym_i128] = ACTIONS(2032), + [anon_sym_isize] = ACTIONS(2032), + [anon_sym_usize] = ACTIONS(2032), + [anon_sym_f32] = ACTIONS(2032), + [anon_sym_f64] = ACTIONS(2032), + [anon_sym_bool] = ACTIONS(2032), + [anon_sym_str] = ACTIONS(2032), + [anon_sym_char] = ACTIONS(2032), + [aux_sym__non_special_token_token1] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_as] = ACTIONS(2032), + [anon_sym_async] = ACTIONS(2032), + [anon_sym_await] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_impl] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_mod] = ACTIONS(2032), + [anon_sym_pub] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_trait] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_unsafe] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_where] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [sym_mutable_specifier] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [485] = { - [sym__token_pattern] = STATE(244), - [sym_token_tree_pattern] = STATE(244), - [sym_token_binding_pattern] = STATE(244), - [sym_token_repetition_pattern] = STATE(244), - [sym__literal] = STATE(244), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2014), - [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(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym__token_pattern] = STATE(251), + [sym_token_tree_pattern] = STATE(251), + [sym_token_binding_pattern] = STATE(251), + [sym_token_repetition_pattern] = STATE(251), + [sym__literal] = STATE(251), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2032), + [anon_sym_i8] = ACTIONS(2032), + [anon_sym_u16] = ACTIONS(2032), + [anon_sym_i16] = ACTIONS(2032), + [anon_sym_u32] = ACTIONS(2032), + [anon_sym_i32] = ACTIONS(2032), + [anon_sym_u64] = ACTIONS(2032), + [anon_sym_i64] = ACTIONS(2032), + [anon_sym_u128] = ACTIONS(2032), + [anon_sym_i128] = ACTIONS(2032), + [anon_sym_isize] = ACTIONS(2032), + [anon_sym_usize] = ACTIONS(2032), + [anon_sym_f32] = ACTIONS(2032), + [anon_sym_f64] = ACTIONS(2032), + [anon_sym_bool] = ACTIONS(2032), + [anon_sym_str] = ACTIONS(2032), + [anon_sym_char] = ACTIONS(2032), + [aux_sym__non_special_token_token1] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_as] = ACTIONS(2032), + [anon_sym_async] = ACTIONS(2032), + [anon_sym_await] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_impl] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_mod] = ACTIONS(2032), + [anon_sym_pub] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_trait] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_unsafe] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_where] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [sym_mutable_specifier] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [486] = { - [sym__token_pattern] = STATE(244), - [sym_token_tree_pattern] = STATE(244), - [sym_token_binding_pattern] = STATE(244), - [sym_token_repetition_pattern] = STATE(244), - [sym__literal] = STATE(244), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), - [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(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym__token_pattern] = STATE(251), + [sym_token_tree_pattern] = STATE(251), + [sym_token_binding_pattern] = STATE(251), + [sym_token_repetition_pattern] = STATE(251), + [sym__literal] = STATE(251), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2032), + [anon_sym_i8] = ACTIONS(2032), + [anon_sym_u16] = ACTIONS(2032), + [anon_sym_i16] = ACTIONS(2032), + [anon_sym_u32] = ACTIONS(2032), + [anon_sym_i32] = ACTIONS(2032), + [anon_sym_u64] = ACTIONS(2032), + [anon_sym_i64] = ACTIONS(2032), + [anon_sym_u128] = ACTIONS(2032), + [anon_sym_i128] = ACTIONS(2032), + [anon_sym_isize] = ACTIONS(2032), + [anon_sym_usize] = ACTIONS(2032), + [anon_sym_f32] = ACTIONS(2032), + [anon_sym_f64] = ACTIONS(2032), + [anon_sym_bool] = ACTIONS(2032), + [anon_sym_str] = ACTIONS(2032), + [anon_sym_char] = ACTIONS(2032), + [aux_sym__non_special_token_token1] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_as] = ACTIONS(2032), + [anon_sym_async] = ACTIONS(2032), + [anon_sym_await] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_impl] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_mod] = ACTIONS(2032), + [anon_sym_pub] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_trait] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_unsafe] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_where] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [sym_mutable_specifier] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [487] = { - [sym__token_pattern] = STATE(244), - [sym_token_tree_pattern] = STATE(244), - [sym_token_binding_pattern] = STATE(244), - [sym_token_repetition_pattern] = STATE(244), - [sym__literal] = STATE(244), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), - [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(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym__token_pattern] = STATE(251), + [sym_token_tree_pattern] = STATE(251), + [sym_token_binding_pattern] = STATE(251), + [sym_token_repetition_pattern] = STATE(251), + [sym__literal] = STATE(251), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2032), + [anon_sym_i8] = ACTIONS(2032), + [anon_sym_u16] = ACTIONS(2032), + [anon_sym_i16] = ACTIONS(2032), + [anon_sym_u32] = ACTIONS(2032), + [anon_sym_i32] = ACTIONS(2032), + [anon_sym_u64] = ACTIONS(2032), + [anon_sym_i64] = ACTIONS(2032), + [anon_sym_u128] = ACTIONS(2032), + [anon_sym_i128] = ACTIONS(2032), + [anon_sym_isize] = ACTIONS(2032), + [anon_sym_usize] = ACTIONS(2032), + [anon_sym_f32] = ACTIONS(2032), + [anon_sym_f64] = ACTIONS(2032), + [anon_sym_bool] = ACTIONS(2032), + [anon_sym_str] = ACTIONS(2032), + [anon_sym_char] = ACTIONS(2032), + [aux_sym__non_special_token_token1] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_as] = ACTIONS(2032), + [anon_sym_async] = ACTIONS(2032), + [anon_sym_await] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_impl] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_mod] = ACTIONS(2032), + [anon_sym_pub] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_trait] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_unsafe] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_where] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [sym_mutable_specifier] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [488] = { - [sym__token_pattern] = STATE(479), - [sym_token_tree_pattern] = STATE(479), - [sym_token_binding_pattern] = STATE(479), - [sym_token_repetition_pattern] = STATE(479), - [sym__literal] = STATE(479), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2063), - [anon_sym_i8] = ACTIONS(2063), - [anon_sym_u16] = ACTIONS(2063), - [anon_sym_i16] = ACTIONS(2063), - [anon_sym_u32] = ACTIONS(2063), - [anon_sym_i32] = ACTIONS(2063), - [anon_sym_u64] = ACTIONS(2063), - [anon_sym_i64] = ACTIONS(2063), - [anon_sym_u128] = ACTIONS(2063), - [anon_sym_i128] = ACTIONS(2063), - [anon_sym_isize] = ACTIONS(2063), - [anon_sym_usize] = ACTIONS(2063), - [anon_sym_f32] = ACTIONS(2063), - [anon_sym_f64] = ACTIONS(2063), - [anon_sym_bool] = ACTIONS(2063), - [anon_sym_str] = ACTIONS(2063), - [anon_sym_char] = ACTIONS(2063), - [aux_sym__non_special_token_token1] = ACTIONS(2063), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_await] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_default] = ACTIONS(2063), - [anon_sym_enum] = ACTIONS(2063), - [anon_sym_fn] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_impl] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_mod] = ACTIONS(2063), - [anon_sym_pub] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_static] = ACTIONS(2063), - [anon_sym_struct] = ACTIONS(2063), - [anon_sym_trait] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2063), - [anon_sym_union] = ACTIONS(2063), - [anon_sym_unsafe] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_where] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [sym_mutable_specifier] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_attribute_item] = STATE(533), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_macro_invocation] = STATE(2345), + [sym_scoped_identifier] = STATE(1557), + [sym_scoped_type_identifier] = STATE(1913), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2397), + [sym_match_pattern] = STATE(2358), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1933), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(533), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [489] = { - [sym__token_pattern] = STATE(485), - [sym_token_tree_pattern] = STATE(485), - [sym_token_binding_pattern] = STATE(485), - [sym_token_repetition_pattern] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2065), - [anon_sym_i8] = ACTIONS(2065), - [anon_sym_u16] = ACTIONS(2065), - [anon_sym_i16] = ACTIONS(2065), - [anon_sym_u32] = ACTIONS(2065), - [anon_sym_i32] = ACTIONS(2065), - [anon_sym_u64] = ACTIONS(2065), - [anon_sym_i64] = ACTIONS(2065), - [anon_sym_u128] = ACTIONS(2065), - [anon_sym_i128] = ACTIONS(2065), - [anon_sym_isize] = ACTIONS(2065), - [anon_sym_usize] = ACTIONS(2065), - [anon_sym_f32] = ACTIONS(2065), - [anon_sym_f64] = ACTIONS(2065), - [anon_sym_bool] = ACTIONS(2065), - [anon_sym_str] = ACTIONS(2065), - [anon_sym_char] = ACTIONS(2065), - [aux_sym__non_special_token_token1] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(2065), - [anon_sym_as] = ACTIONS(2065), - [anon_sym_async] = ACTIONS(2065), - [anon_sym_await] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_default] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_fn] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_impl] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_loop] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2065), - [anon_sym_mod] = ACTIONS(2065), - [anon_sym_pub] = ACTIONS(2065), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_static] = ACTIONS(2065), - [anon_sym_struct] = ACTIONS(2065), - [anon_sym_trait] = ACTIONS(2065), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_union] = ACTIONS(2065), - [anon_sym_unsafe] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [sym_mutable_specifier] = ACTIONS(2065), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2065), - [sym_super] = ACTIONS(2065), - [sym_crate] = ACTIONS(2065), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_attribute_item] = STATE(533), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_macro_invocation] = STATE(2345), + [sym_scoped_identifier] = STATE(1557), + [sym_scoped_type_identifier] = STATE(1913), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2519), + [sym_match_pattern] = STATE(2358), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1933), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(533), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [490] = { - [sym__token_pattern] = STATE(486), - [sym_token_tree_pattern] = STATE(486), - [sym_token_binding_pattern] = STATE(486), - [sym_token_repetition_pattern] = STATE(486), - [sym__literal] = STATE(486), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(486), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_RBRACK] = ACTIONS(2044), + [anon_sym_DOLLAR] = ACTIONS(2052), + [anon_sym_u8] = ACTIONS(2038), + [anon_sym_i8] = ACTIONS(2038), + [anon_sym_u16] = ACTIONS(2038), + [anon_sym_i16] = ACTIONS(2038), + [anon_sym_u32] = ACTIONS(2038), + [anon_sym_i32] = ACTIONS(2038), + [anon_sym_u64] = ACTIONS(2038), + [anon_sym_i64] = ACTIONS(2038), + [anon_sym_u128] = ACTIONS(2038), + [anon_sym_i128] = ACTIONS(2038), + [anon_sym_isize] = ACTIONS(2038), + [anon_sym_usize] = ACTIONS(2038), + [anon_sym_f32] = ACTIONS(2038), + [anon_sym_f64] = ACTIONS(2038), + [anon_sym_bool] = ACTIONS(2038), + [anon_sym_str] = ACTIONS(2038), + [anon_sym_char] = ACTIONS(2038), + [aux_sym__non_special_token_token1] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_await] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_fn] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_impl] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_mod] = ACTIONS(2038), + [anon_sym_pub] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2038), + [anon_sym_trait] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_union] = ACTIONS(2038), + [anon_sym_unsafe] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_where] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [sym_mutable_specifier] = ACTIONS(2038), + [sym_integer_literal] = ACTIONS(2055), + [aux_sym_string_literal_token1] = ACTIONS(2058), + [sym_char_literal] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2064), + [sym_raw_string_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_block_comment] = ACTIONS(3), + }, + [491] = { + [sym_attribute_item] = STATE(533), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_macro_invocation] = STATE(2345), + [sym_scoped_identifier] = STATE(1557), + [sym_scoped_type_identifier] = STATE(1913), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2422), + [sym_match_pattern] = STATE(2358), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1933), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(533), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [492] = { + [sym__token_pattern] = STATE(499), + [sym_token_tree_pattern] = STATE(499), + [sym_token_binding_pattern] = STATE(499), + [sym_token_repetition_pattern] = STATE(499), + [sym__literal] = STATE(499), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2067), + [anon_sym_i8] = ACTIONS(2067), + [anon_sym_u16] = ACTIONS(2067), + [anon_sym_i16] = ACTIONS(2067), + [anon_sym_u32] = ACTIONS(2067), + [anon_sym_i32] = ACTIONS(2067), + [anon_sym_u64] = ACTIONS(2067), + [anon_sym_i64] = ACTIONS(2067), + [anon_sym_u128] = ACTIONS(2067), + [anon_sym_i128] = ACTIONS(2067), + [anon_sym_isize] = ACTIONS(2067), + [anon_sym_usize] = ACTIONS(2067), + [anon_sym_f32] = ACTIONS(2067), + [anon_sym_f64] = ACTIONS(2067), + [anon_sym_bool] = ACTIONS(2067), + [anon_sym_str] = ACTIONS(2067), + [anon_sym_char] = ACTIONS(2067), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [anon_sym_fn] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_impl] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_loop] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_mod] = ACTIONS(2067), + [anon_sym_pub] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_trait] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_union] = ACTIONS(2067), + [anon_sym_unsafe] = ACTIONS(2067), + [anon_sym_use] = ACTIONS(2067), + [anon_sym_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [493] = { + [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(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(494), [sym_identifier] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2018), [anon_sym_u8] = ACTIONS(2069), [anon_sym_i8] = ACTIONS(2069), [anon_sym_u16] = ACTIONS(2069), @@ -59320,187 +60012,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2069), [anon_sym_while] = ACTIONS(2069), [sym_mutable_specifier] = ACTIONS(2069), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2069), [sym_super] = ACTIONS(2069), [sym_crate] = ACTIONS(2069), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [491] = { - [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(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2071), - [anon_sym_i8] = ACTIONS(2071), - [anon_sym_u16] = ACTIONS(2071), - [anon_sym_i16] = ACTIONS(2071), - [anon_sym_u32] = ACTIONS(2071), - [anon_sym_i32] = ACTIONS(2071), - [anon_sym_u64] = ACTIONS(2071), - [anon_sym_i64] = ACTIONS(2071), - [anon_sym_u128] = ACTIONS(2071), - [anon_sym_i128] = ACTIONS(2071), - [anon_sym_isize] = ACTIONS(2071), - [anon_sym_usize] = ACTIONS(2071), - [anon_sym_f32] = ACTIONS(2071), - [anon_sym_f64] = ACTIONS(2071), - [anon_sym_bool] = ACTIONS(2071), - [anon_sym_str] = ACTIONS(2071), - [anon_sym_char] = ACTIONS(2071), - [aux_sym__non_special_token_token1] = ACTIONS(2071), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_default] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_impl] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_loop] = ACTIONS(2071), - [anon_sym_match] = ACTIONS(2071), - [anon_sym_mod] = ACTIONS(2071), - [anon_sym_pub] = ACTIONS(2071), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_struct] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_union] = ACTIONS(2071), - [anon_sym_unsafe] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_where] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [sym_mutable_specifier] = ACTIONS(2071), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2071), - [sym_super] = ACTIONS(2071), - [sym_crate] = ACTIONS(2071), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, - [492] = { - [sym_attribute_item] = STATE(527), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_macro_invocation] = STATE(2457), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1953), - [sym_match_arm] = STATE(494), - [sym_last_match_arm] = STATE(2400), - [sym_match_pattern] = STATE(2467), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_enum_variant_list_repeat1] = STATE(527), - [aux_sym_match_block_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [494] = { + [sym__token_pattern] = STATE(251), + [sym_token_tree_pattern] = STATE(251), + [sym_token_binding_pattern] = STATE(251), + [sym_token_repetition_pattern] = STATE(251), + [sym__literal] = STATE(251), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2032), + [anon_sym_i8] = ACTIONS(2032), + [anon_sym_u16] = ACTIONS(2032), + [anon_sym_i16] = ACTIONS(2032), + [anon_sym_u32] = ACTIONS(2032), + [anon_sym_i32] = ACTIONS(2032), + [anon_sym_u64] = ACTIONS(2032), + [anon_sym_i64] = ACTIONS(2032), + [anon_sym_u128] = ACTIONS(2032), + [anon_sym_i128] = ACTIONS(2032), + [anon_sym_isize] = ACTIONS(2032), + [anon_sym_usize] = ACTIONS(2032), + [anon_sym_f32] = ACTIONS(2032), + [anon_sym_f64] = ACTIONS(2032), + [anon_sym_bool] = ACTIONS(2032), + [anon_sym_str] = ACTIONS(2032), + [anon_sym_char] = ACTIONS(2032), + [aux_sym__non_special_token_token1] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_as] = ACTIONS(2032), + [anon_sym_async] = ACTIONS(2032), + [anon_sym_await] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_impl] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_mod] = ACTIONS(2032), + [anon_sym_pub] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_trait] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_unsafe] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_where] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [sym_mutable_specifier] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [493] = { - [sym__token_pattern] = STATE(484), - [sym_token_tree_pattern] = STATE(484), - [sym_token_binding_pattern] = STATE(484), - [sym_token_repetition_pattern] = STATE(484), - [sym__literal] = STATE(484), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_pattern_repeat1] = STATE(484), + [495] = { + [sym__token_pattern] = STATE(485), + [sym_token_tree_pattern] = STATE(485), + [sym_token_binding_pattern] = STATE(485), + [sym_token_repetition_pattern] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(485), [sym_identifier] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2010), [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), [anon_sym_u8] = ACTIONS(2073), [anon_sym_i8] = ACTIONS(2073), [anon_sym_u16] = ACTIONS(2073), @@ -59548,996 +60164,1078 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2073), [anon_sym_while] = ACTIONS(2073), [sym_mutable_specifier] = ACTIONS(2073), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2073), [sym_super] = ACTIONS(2073), [sym_crate] = ACTIONS(2073), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, - [494] = { - [sym_attribute_item] = STATE(528), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_macro_invocation] = STATE(2457), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1953), - [sym_match_arm] = STATE(494), - [sym_match_pattern] = STATE(2457), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_enum_variant_list_repeat1] = STATE(528), - [aux_sym_match_block_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2086), - [anon_sym_i8] = ACTIONS(2086), - [anon_sym_u16] = ACTIONS(2086), - [anon_sym_i16] = ACTIONS(2086), - [anon_sym_u32] = ACTIONS(2086), - [anon_sym_i32] = ACTIONS(2086), - [anon_sym_u64] = ACTIONS(2086), - [anon_sym_i64] = ACTIONS(2086), - [anon_sym_u128] = ACTIONS(2086), - [anon_sym_i128] = ACTIONS(2086), - [anon_sym_isize] = ACTIONS(2086), - [anon_sym_usize] = ACTIONS(2086), - [anon_sym_f32] = ACTIONS(2086), - [anon_sym_f64] = ACTIONS(2086), - [anon_sym_bool] = ACTIONS(2086), - [anon_sym_str] = ACTIONS(2086), - [anon_sym_char] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_default] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(2095), - [anon_sym_ref] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym__] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2110), - [sym_mutable_specifier] = ACTIONS(2113), - [anon_sym_DOT_DOT] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2119), - [sym_integer_literal] = ACTIONS(2122), - [aux_sym_string_literal_token1] = ACTIONS(2125), - [sym_char_literal] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2131), - [sym_super] = ACTIONS(2131), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(2134), - [sym_raw_string_literal] = ACTIONS(2122), - [sym_float_literal] = ACTIONS(2122), - [sym_block_comment] = ACTIONS(3), - }, - [495] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [496] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym__token_pattern] = STATE(251), + [sym_token_tree_pattern] = STATE(251), + [sym_token_binding_pattern] = STATE(251), + [sym_token_repetition_pattern] = STATE(251), + [sym__literal] = STATE(251), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2032), + [anon_sym_i8] = ACTIONS(2032), + [anon_sym_u16] = ACTIONS(2032), + [anon_sym_i16] = ACTIONS(2032), + [anon_sym_u32] = ACTIONS(2032), + [anon_sym_i32] = ACTIONS(2032), + [anon_sym_u64] = ACTIONS(2032), + [anon_sym_i64] = ACTIONS(2032), + [anon_sym_u128] = ACTIONS(2032), + [anon_sym_i128] = ACTIONS(2032), + [anon_sym_isize] = ACTIONS(2032), + [anon_sym_usize] = ACTIONS(2032), + [anon_sym_f32] = ACTIONS(2032), + [anon_sym_f64] = ACTIONS(2032), + [anon_sym_bool] = ACTIONS(2032), + [anon_sym_str] = ACTIONS(2032), + [anon_sym_char] = ACTIONS(2032), + [aux_sym__non_special_token_token1] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_as] = ACTIONS(2032), + [anon_sym_async] = ACTIONS(2032), + [anon_sym_await] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_impl] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_mod] = ACTIONS(2032), + [anon_sym_pub] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_trait] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_unsafe] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_where] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [sym_mutable_specifier] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [497] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2153), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym__token_pattern] = STATE(486), + [sym_token_tree_pattern] = STATE(486), + [sym_token_binding_pattern] = STATE(486), + [sym_token_repetition_pattern] = STATE(486), + [sym__literal] = STATE(486), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(486), + [sym_identifier] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [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(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [498] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [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(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2079), + [anon_sym_i8] = ACTIONS(2079), + [anon_sym_u16] = ACTIONS(2079), + [anon_sym_i16] = ACTIONS(2079), + [anon_sym_u32] = ACTIONS(2079), + [anon_sym_i32] = ACTIONS(2079), + [anon_sym_u64] = ACTIONS(2079), + [anon_sym_i64] = ACTIONS(2079), + [anon_sym_u128] = ACTIONS(2079), + [anon_sym_i128] = ACTIONS(2079), + [anon_sym_isize] = ACTIONS(2079), + [anon_sym_usize] = ACTIONS(2079), + [anon_sym_f32] = ACTIONS(2079), + [anon_sym_f64] = ACTIONS(2079), + [anon_sym_bool] = ACTIONS(2079), + [anon_sym_str] = ACTIONS(2079), + [anon_sym_char] = ACTIONS(2079), + [aux_sym__non_special_token_token1] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_await] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_default] = ACTIONS(2079), + [anon_sym_enum] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_impl] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_mod] = ACTIONS(2079), + [anon_sym_pub] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_static] = ACTIONS(2079), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_trait] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_union] = ACTIONS(2079), + [anon_sym_unsafe] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_where] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [sym_mutable_specifier] = ACTIONS(2079), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2079), + [sym_super] = ACTIONS(2079), + [sym_crate] = ACTIONS(2079), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [499] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym__token_pattern] = STATE(251), + [sym_token_tree_pattern] = STATE(251), + [sym_token_binding_pattern] = STATE(251), + [sym_token_repetition_pattern] = STATE(251), + [sym__literal] = STATE(251), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_pattern_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2032), + [anon_sym_i8] = ACTIONS(2032), + [anon_sym_u16] = ACTIONS(2032), + [anon_sym_i16] = ACTIONS(2032), + [anon_sym_u32] = ACTIONS(2032), + [anon_sym_i32] = ACTIONS(2032), + [anon_sym_u64] = ACTIONS(2032), + [anon_sym_i64] = ACTIONS(2032), + [anon_sym_u128] = ACTIONS(2032), + [anon_sym_i128] = ACTIONS(2032), + [anon_sym_isize] = ACTIONS(2032), + [anon_sym_usize] = ACTIONS(2032), + [anon_sym_f32] = ACTIONS(2032), + [anon_sym_f64] = ACTIONS(2032), + [anon_sym_bool] = ACTIONS(2032), + [anon_sym_str] = ACTIONS(2032), + [anon_sym_char] = ACTIONS(2032), + [aux_sym__non_special_token_token1] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_as] = ACTIONS(2032), + [anon_sym_async] = ACTIONS(2032), + [anon_sym_await] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_impl] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_mod] = ACTIONS(2032), + [anon_sym_pub] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_trait] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_unsafe] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_where] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [sym_mutable_specifier] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [500] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_attribute_item] = STATE(534), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_macro_invocation] = STATE(2345), + [sym_scoped_identifier] = STATE(1557), + [sym_scoped_type_identifier] = STATE(1913), + [sym_match_arm] = STATE(500), + [sym_match_pattern] = STATE(2345), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1933), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(534), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_u8] = ACTIONS(2090), + [anon_sym_i8] = ACTIONS(2090), + [anon_sym_u16] = ACTIONS(2090), + [anon_sym_i16] = ACTIONS(2090), + [anon_sym_u32] = ACTIONS(2090), + [anon_sym_i32] = ACTIONS(2090), + [anon_sym_u64] = ACTIONS(2090), + [anon_sym_i64] = ACTIONS(2090), + [anon_sym_u128] = ACTIONS(2090), + [anon_sym_i128] = ACTIONS(2090), + [anon_sym_isize] = ACTIONS(2090), + [anon_sym_usize] = ACTIONS(2090), + [anon_sym_f32] = ACTIONS(2090), + [anon_sym_f64] = ACTIONS(2090), + [anon_sym_bool] = ACTIONS(2090), + [anon_sym_str] = ACTIONS(2090), + [anon_sym_char] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_ref] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_COLON_COLON] = ACTIONS(2108), + [anon_sym__] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2114), + [sym_mutable_specifier] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2123), + [sym_integer_literal] = ACTIONS(2126), + [aux_sym_string_literal_token1] = ACTIONS(2129), + [sym_char_literal] = ACTIONS(2126), + [anon_sym_true] = ACTIONS(2132), + [anon_sym_false] = ACTIONS(2132), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2135), + [sym_super] = ACTIONS(2135), + [sym_crate] = ACTIONS(2135), + [sym_metavariable] = ACTIONS(2138), + [sym_raw_string_literal] = ACTIONS(2126), + [sym_float_literal] = ACTIONS(2126), [sym_block_comment] = ACTIONS(3), }, [501] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [502] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [503] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2159), - [anon_sym_i8] = ACTIONS(2159), - [anon_sym_u16] = ACTIONS(2159), - [anon_sym_i16] = ACTIONS(2159), - [anon_sym_u32] = ACTIONS(2159), - [anon_sym_i32] = ACTIONS(2159), - [anon_sym_u64] = ACTIONS(2159), - [anon_sym_i64] = ACTIONS(2159), - [anon_sym_u128] = ACTIONS(2159), - [anon_sym_i128] = ACTIONS(2159), - [anon_sym_isize] = ACTIONS(2159), - [anon_sym_usize] = ACTIONS(2159), - [anon_sym_f32] = ACTIONS(2159), - [anon_sym_f64] = ACTIONS(2159), - [anon_sym_bool] = ACTIONS(2159), - [anon_sym_str] = ACTIONS(2159), - [anon_sym_char] = ACTIONS(2159), - [aux_sym__non_special_token_token1] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_impl] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_loop] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_mod] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_trait] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_use] = ACTIONS(2159), - [anon_sym_where] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [sym_mutable_specifier] = ACTIONS(2159), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_crate] = ACTIONS(2159), - [sym_metavariable] = ACTIONS(2163), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_token_tree] = STATE(507), + [sym_token_repetition] = STATE(507), + [sym__literal] = STATE(507), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2157), + [anon_sym_i8] = ACTIONS(2157), + [anon_sym_u16] = ACTIONS(2157), + [anon_sym_i16] = ACTIONS(2157), + [anon_sym_u32] = ACTIONS(2157), + [anon_sym_i32] = ACTIONS(2157), + [anon_sym_u64] = ACTIONS(2157), + [anon_sym_i64] = ACTIONS(2157), + [anon_sym_u128] = ACTIONS(2157), + [anon_sym_i128] = ACTIONS(2157), + [anon_sym_isize] = ACTIONS(2157), + [anon_sym_usize] = ACTIONS(2157), + [anon_sym_f32] = ACTIONS(2157), + [anon_sym_f64] = ACTIONS(2157), + [anon_sym_bool] = ACTIONS(2157), + [anon_sym_str] = ACTIONS(2157), + [anon_sym_char] = ACTIONS(2157), + [aux_sym__non_special_token_token1] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(2157), + [anon_sym_as] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_default] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_fn] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_impl] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_mod] = ACTIONS(2157), + [anon_sym_pub] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_union] = ACTIONS(2157), + [anon_sym_unsafe] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [sym_mutable_specifier] = ACTIONS(2157), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2157), + [sym_super] = ACTIONS(2157), + [sym_crate] = ACTIONS(2157), + [sym_metavariable] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [504] = { - [sym_token_tree] = STATE(499), - [sym_token_repetition] = STATE(499), - [sym__literal] = STATE(499), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(499), - [sym_identifier] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2165), - [anon_sym_i8] = ACTIONS(2165), - [anon_sym_u16] = ACTIONS(2165), - [anon_sym_i16] = ACTIONS(2165), - [anon_sym_u32] = ACTIONS(2165), - [anon_sym_i32] = ACTIONS(2165), - [anon_sym_u64] = ACTIONS(2165), - [anon_sym_i64] = ACTIONS(2165), - [anon_sym_u128] = ACTIONS(2165), - [anon_sym_i128] = ACTIONS(2165), - [anon_sym_isize] = ACTIONS(2165), - [anon_sym_usize] = ACTIONS(2165), - [anon_sym_f32] = ACTIONS(2165), - [anon_sym_f64] = ACTIONS(2165), - [anon_sym_bool] = ACTIONS(2165), - [anon_sym_str] = ACTIONS(2165), - [anon_sym_char] = ACTIONS(2165), - [aux_sym__non_special_token_token1] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2165), - [anon_sym_await] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_fn] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_impl] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_mod] = ACTIONS(2165), - [anon_sym_pub] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_trait] = ACTIONS(2165), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_unsafe] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_where] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [sym_mutable_specifier] = ACTIONS(2165), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2165), - [sym_super] = ACTIONS(2165), - [sym_crate] = ACTIONS(2165), - [sym_metavariable] = ACTIONS(2167), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_token_tree] = STATE(508), + [sym_token_repetition] = STATE(508), + [sym__literal] = STATE(508), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2163), + [anon_sym_i8] = ACTIONS(2163), + [anon_sym_u16] = ACTIONS(2163), + [anon_sym_i16] = ACTIONS(2163), + [anon_sym_u32] = ACTIONS(2163), + [anon_sym_i32] = ACTIONS(2163), + [anon_sym_u64] = ACTIONS(2163), + [anon_sym_i64] = ACTIONS(2163), + [anon_sym_u128] = ACTIONS(2163), + [anon_sym_i128] = ACTIONS(2163), + [anon_sym_isize] = ACTIONS(2163), + [anon_sym_usize] = ACTIONS(2163), + [anon_sym_f32] = ACTIONS(2163), + [anon_sym_f64] = ACTIONS(2163), + [anon_sym_bool] = ACTIONS(2163), + [anon_sym_str] = ACTIONS(2163), + [anon_sym_char] = ACTIONS(2163), + [aux_sym__non_special_token_token1] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_impl] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_loop] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_mod] = ACTIONS(2163), + [anon_sym_pub] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_trait] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_use] = ACTIONS(2163), + [anon_sym_where] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [sym_mutable_specifier] = ACTIONS(2163), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_crate] = ACTIONS(2163), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [505] = { - [sym_token_tree] = STATE(510), - [sym_token_repetition] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2171), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2169), - [anon_sym_i8] = ACTIONS(2169), - [anon_sym_u16] = ACTIONS(2169), - [anon_sym_i16] = ACTIONS(2169), - [anon_sym_u32] = ACTIONS(2169), - [anon_sym_i32] = ACTIONS(2169), - [anon_sym_u64] = ACTIONS(2169), - [anon_sym_i64] = ACTIONS(2169), - [anon_sym_u128] = ACTIONS(2169), - [anon_sym_i128] = ACTIONS(2169), - [anon_sym_isize] = ACTIONS(2169), - [anon_sym_usize] = ACTIONS(2169), - [anon_sym_f32] = ACTIONS(2169), - [anon_sym_f64] = ACTIONS(2169), - [anon_sym_bool] = ACTIONS(2169), - [anon_sym_str] = ACTIONS(2169), - [anon_sym_char] = ACTIONS(2169), - [aux_sym__non_special_token_token1] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2169), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_async] = ACTIONS(2169), - [anon_sym_await] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_fn] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_impl] = ACTIONS(2169), - [anon_sym_let] = ACTIONS(2169), - [anon_sym_loop] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_mod] = ACTIONS(2169), - [anon_sym_pub] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_trait] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_unsafe] = ACTIONS(2169), - [anon_sym_use] = ACTIONS(2169), - [anon_sym_where] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [sym_mutable_specifier] = ACTIONS(2169), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2169), - [sym_super] = ACTIONS(2169), - [sym_crate] = ACTIONS(2169), - [sym_metavariable] = ACTIONS(2173), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_token_tree] = STATE(509), + [sym_token_repetition] = STATE(509), + [sym__literal] = STATE(509), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2159), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2167), + [anon_sym_i8] = ACTIONS(2167), + [anon_sym_u16] = ACTIONS(2167), + [anon_sym_i16] = ACTIONS(2167), + [anon_sym_u32] = ACTIONS(2167), + [anon_sym_i32] = ACTIONS(2167), + [anon_sym_u64] = ACTIONS(2167), + [anon_sym_i64] = ACTIONS(2167), + [anon_sym_u128] = ACTIONS(2167), + [anon_sym_i128] = ACTIONS(2167), + [anon_sym_isize] = ACTIONS(2167), + [anon_sym_usize] = ACTIONS(2167), + [anon_sym_f32] = ACTIONS(2167), + [anon_sym_f64] = ACTIONS(2167), + [anon_sym_bool] = ACTIONS(2167), + [anon_sym_str] = ACTIONS(2167), + [anon_sym_char] = ACTIONS(2167), + [aux_sym__non_special_token_token1] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_impl] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_mod] = ACTIONS(2167), + [anon_sym_pub] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_trait] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_where] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [sym_mutable_specifier] = ACTIONS(2167), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_crate] = ACTIONS(2167), + [sym_metavariable] = ACTIONS(2169), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [506] = { [sym_token_tree] = STATE(501), [sym_token_repetition] = STATE(501), [sym__literal] = STATE(501), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2175), - [anon_sym_i8] = ACTIONS(2175), - [anon_sym_u16] = ACTIONS(2175), - [anon_sym_i16] = ACTIONS(2175), - [anon_sym_u32] = ACTIONS(2175), - [anon_sym_i32] = ACTIONS(2175), - [anon_sym_u64] = ACTIONS(2175), - [anon_sym_i64] = ACTIONS(2175), - [anon_sym_u128] = ACTIONS(2175), - [anon_sym_i128] = ACTIONS(2175), - [anon_sym_isize] = ACTIONS(2175), - [anon_sym_usize] = ACTIONS(2175), - [anon_sym_f32] = ACTIONS(2175), - [anon_sym_f64] = ACTIONS(2175), - [anon_sym_bool] = ACTIONS(2175), - [anon_sym_str] = ACTIONS(2175), - [anon_sym_char] = ACTIONS(2175), - [aux_sym__non_special_token_token1] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [anon_sym_fn] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_impl] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_mod] = ACTIONS(2175), - [anon_sym_pub] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2175), - [anon_sym_trait] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_unsafe] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_where] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [sym_mutable_specifier] = ACTIONS(2175), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_crate] = ACTIONS(2175), - [sym_metavariable] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2171), + [anon_sym_i8] = ACTIONS(2171), + [anon_sym_u16] = ACTIONS(2171), + [anon_sym_i16] = ACTIONS(2171), + [anon_sym_u32] = ACTIONS(2171), + [anon_sym_i32] = ACTIONS(2171), + [anon_sym_u64] = ACTIONS(2171), + [anon_sym_i64] = ACTIONS(2171), + [anon_sym_u128] = ACTIONS(2171), + [anon_sym_i128] = ACTIONS(2171), + [anon_sym_isize] = ACTIONS(2171), + [anon_sym_usize] = ACTIONS(2171), + [anon_sym_f32] = ACTIONS(2171), + [anon_sym_f64] = ACTIONS(2171), + [anon_sym_bool] = ACTIONS(2171), + [anon_sym_str] = ACTIONS(2171), + [anon_sym_char] = ACTIONS(2171), + [aux_sym__non_special_token_token1] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_async] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_impl] = ACTIONS(2171), + [anon_sym_let] = ACTIONS(2171), + [anon_sym_loop] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_mod] = ACTIONS(2171), + [anon_sym_pub] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2171), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_trait] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_use] = ACTIONS(2171), + [anon_sym_where] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [sym_mutable_specifier] = ACTIONS(2171), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2171), + [sym_super] = ACTIONS(2171), + [sym_crate] = ACTIONS(2171), + [sym_metavariable] = ACTIONS(2175), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [507] = { - [sym_token_tree] = STATE(498), - [sym_token_repetition] = STATE(498), - [sym__literal] = STATE(498), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(498), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [508] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [509] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [510] = { + [sym_token_tree] = STATE(515), + [sym_token_repetition] = STATE(515), + [sym__literal] = STATE(515), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(515), [sym_identifier] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), [anon_sym_u8] = ACTIONS(2179), [anon_sym_i8] = ACTIONS(2179), [anon_sym_u16] = ACTIONS(2179), @@ -60585,33 +61283,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2179), [anon_sym_while] = ACTIONS(2179), [sym_mutable_specifier] = ACTIONS(2179), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2179), [sym_super] = ACTIONS(2179), [sym_crate] = ACTIONS(2179), [sym_metavariable] = ACTIONS(2181), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [508] = { - [sym_token_tree] = STATE(512), - [sym_token_repetition] = STATE(512), - [sym__literal] = STATE(512), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(512), + [511] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(516), [sym_identifier] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2151), [anon_sym_u8] = ACTIONS(2183), [anon_sym_i8] = ACTIONS(2183), [anon_sym_u16] = ACTIONS(2183), @@ -60659,329 +61357,699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2183), [anon_sym_while] = ACTIONS(2183), [sym_mutable_specifier] = ACTIONS(2183), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2183), [sym_super] = ACTIONS(2183), [sym_crate] = ACTIONS(2183), - [sym_metavariable] = ACTIONS(2187), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_metavariable] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [509] = { - [sym_token_tree] = STATE(523), - [sym_token_repetition] = STATE(523), - [sym__literal] = STATE(523), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(523), - [sym_identifier] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2189), - [anon_sym_i8] = ACTIONS(2189), - [anon_sym_u16] = ACTIONS(2189), - [anon_sym_i16] = ACTIONS(2189), - [anon_sym_u32] = ACTIONS(2189), - [anon_sym_i32] = ACTIONS(2189), - [anon_sym_u64] = ACTIONS(2189), - [anon_sym_i64] = ACTIONS(2189), - [anon_sym_u128] = ACTIONS(2189), - [anon_sym_i128] = ACTIONS(2189), - [anon_sym_isize] = ACTIONS(2189), - [anon_sym_usize] = ACTIONS(2189), - [anon_sym_f32] = ACTIONS(2189), - [anon_sym_f64] = ACTIONS(2189), - [anon_sym_bool] = ACTIONS(2189), - [anon_sym_str] = ACTIONS(2189), - [anon_sym_char] = ACTIONS(2189), - [aux_sym__non_special_token_token1] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_impl] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_loop] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_mod] = ACTIONS(2189), - [anon_sym_pub] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_trait] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_unsafe] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_where] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [sym_mutable_specifier] = ACTIONS(2189), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_crate] = ACTIONS(2189), - [sym_metavariable] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [512] = { + [sym_token_tree] = STATE(526), + [sym_token_repetition] = STATE(526), + [sym__literal] = STATE(526), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(526), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2187), + [anon_sym_i8] = ACTIONS(2187), + [anon_sym_u16] = ACTIONS(2187), + [anon_sym_i16] = ACTIONS(2187), + [anon_sym_u32] = ACTIONS(2187), + [anon_sym_i32] = ACTIONS(2187), + [anon_sym_u64] = ACTIONS(2187), + [anon_sym_i64] = ACTIONS(2187), + [anon_sym_u128] = ACTIONS(2187), + [anon_sym_i128] = ACTIONS(2187), + [anon_sym_isize] = ACTIONS(2187), + [anon_sym_usize] = ACTIONS(2187), + [anon_sym_f32] = ACTIONS(2187), + [anon_sym_f64] = ACTIONS(2187), + [anon_sym_bool] = ACTIONS(2187), + [anon_sym_str] = ACTIONS(2187), + [anon_sym_char] = ACTIONS(2187), + [aux_sym__non_special_token_token1] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_impl] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_mod] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_trait] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_where] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [sym_mutable_specifier] = ACTIONS(2187), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_crate] = ACTIONS(2187), + [sym_metavariable] = ACTIONS(2191), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [510] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2157), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [513] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2193), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [511] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [514] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [512] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), + [515] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [516] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2145), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [518] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [519] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [520] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [513] = { - [sym_token_tree] = STATE(502), - [sym_token_repetition] = STATE(502), - [sym__literal] = STATE(502), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(502), + [521] = { + [sym_token_tree] = STATE(513), + [sym_token_repetition] = STATE(513), + [sym__literal] = STATE(513), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(513), [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2151), [anon_sym_u8] = ACTIONS(2197), [anon_sym_i8] = ACTIONS(2197), [anon_sym_u16] = ACTIONS(2197), @@ -61029,921 +62097,699 @@ 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(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2197), [sym_super] = ACTIONS(2197), [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2199), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_metavariable] = ACTIONS(2201), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [514] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [522] = { + [sym_token_tree] = STATE(518), + [sym_token_repetition] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(518), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2205), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [515] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2201), - [anon_sym_i8] = ACTIONS(2201), - [anon_sym_u16] = ACTIONS(2201), - [anon_sym_i16] = ACTIONS(2201), - [anon_sym_u32] = ACTIONS(2201), - [anon_sym_i32] = ACTIONS(2201), - [anon_sym_u64] = ACTIONS(2201), - [anon_sym_i64] = ACTIONS(2201), - [anon_sym_u128] = ACTIONS(2201), - [anon_sym_i128] = ACTIONS(2201), - [anon_sym_isize] = ACTIONS(2201), - [anon_sym_usize] = ACTIONS(2201), - [anon_sym_f32] = ACTIONS(2201), - [anon_sym_f64] = ACTIONS(2201), - [anon_sym_bool] = ACTIONS(2201), - [anon_sym_str] = ACTIONS(2201), - [anon_sym_char] = ACTIONS(2201), - [aux_sym__non_special_token_token1] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_await] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_default] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_impl] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_mod] = ACTIONS(2201), - [anon_sym_pub] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_where] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [sym_mutable_specifier] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_metavariable] = ACTIONS(2203), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [523] = { + [sym_token_tree] = STATE(519), + [sym_token_repetition] = STATE(519), + [sym__literal] = STATE(519), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2207), + [anon_sym_i8] = ACTIONS(2207), + [anon_sym_u16] = ACTIONS(2207), + [anon_sym_i16] = ACTIONS(2207), + [anon_sym_u32] = ACTIONS(2207), + [anon_sym_i32] = ACTIONS(2207), + [anon_sym_u64] = ACTIONS(2207), + [anon_sym_i64] = ACTIONS(2207), + [anon_sym_u128] = ACTIONS(2207), + [anon_sym_i128] = ACTIONS(2207), + [anon_sym_isize] = ACTIONS(2207), + [anon_sym_usize] = ACTIONS(2207), + [anon_sym_f32] = ACTIONS(2207), + [anon_sym_f64] = ACTIONS(2207), + [anon_sym_bool] = ACTIONS(2207), + [anon_sym_str] = ACTIONS(2207), + [anon_sym_char] = ACTIONS(2207), + [aux_sym__non_special_token_token1] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_async] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(2207), + [anon_sym_enum] = ACTIONS(2207), + [anon_sym_fn] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_impl] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_mod] = ACTIONS(2207), + [anon_sym_pub] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_static] = ACTIONS(2207), + [anon_sym_struct] = ACTIONS(2207), + [anon_sym_trait] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2207), + [anon_sym_union] = ACTIONS(2207), + [anon_sym_unsafe] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_where] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [sym_mutable_specifier] = ACTIONS(2207), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2207), + [sym_super] = ACTIONS(2207), + [sym_crate] = ACTIONS(2207), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [516] = { + [524] = { [sym_token_tree] = STATE(514), [sym_token_repetition] = STATE(514), [sym__literal] = STATE(514), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2191), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2205), - [anon_sym_i8] = ACTIONS(2205), - [anon_sym_u16] = ACTIONS(2205), - [anon_sym_i16] = ACTIONS(2205), - [anon_sym_u32] = ACTIONS(2205), - [anon_sym_i32] = ACTIONS(2205), - [anon_sym_u64] = ACTIONS(2205), - [anon_sym_i64] = ACTIONS(2205), - [anon_sym_u128] = ACTIONS(2205), - [anon_sym_i128] = ACTIONS(2205), - [anon_sym_isize] = ACTIONS(2205), - [anon_sym_usize] = ACTIONS(2205), - [anon_sym_f32] = ACTIONS(2205), - [anon_sym_f64] = ACTIONS(2205), - [anon_sym_bool] = ACTIONS(2205), - [anon_sym_str] = ACTIONS(2205), - [anon_sym_char] = ACTIONS(2205), - [aux_sym__non_special_token_token1] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_impl] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_loop] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_mod] = ACTIONS(2205), - [anon_sym_pub] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_union] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_where] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [sym_mutable_specifier] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_crate] = ACTIONS(2205), - [sym_metavariable] = ACTIONS(2207), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, - [517] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, - [518] = { - [sym_token_tree] = STATE(525), - [sym_token_repetition] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2209), - [anon_sym_i8] = ACTIONS(2209), - [anon_sym_u16] = ACTIONS(2209), - [anon_sym_i16] = ACTIONS(2209), - [anon_sym_u32] = ACTIONS(2209), - [anon_sym_i32] = ACTIONS(2209), - [anon_sym_u64] = ACTIONS(2209), - [anon_sym_i64] = ACTIONS(2209), - [anon_sym_u128] = ACTIONS(2209), - [anon_sym_i128] = ACTIONS(2209), - [anon_sym_isize] = ACTIONS(2209), - [anon_sym_usize] = ACTIONS(2209), - [anon_sym_f32] = ACTIONS(2209), - [anon_sym_f64] = ACTIONS(2209), - [anon_sym_bool] = ACTIONS(2209), - [anon_sym_str] = ACTIONS(2209), - [anon_sym_char] = ACTIONS(2209), - [aux_sym__non_special_token_token1] = ACTIONS(2209), - [anon_sym_SQUOTE] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_fn] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_impl] = ACTIONS(2209), - [anon_sym_let] = ACTIONS(2209), - [anon_sym_loop] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_mod] = ACTIONS(2209), - [anon_sym_pub] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_trait] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_union] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_where] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [sym_mutable_specifier] = ACTIONS(2209), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2209), - [sym_super] = ACTIONS(2209), - [sym_crate] = ACTIONS(2209), - [sym_metavariable] = ACTIONS(2213), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, - [519] = { - [sym_token_tree] = STATE(496), - [sym_token_repetition] = STATE(496), - [sym__literal] = STATE(496), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2215), - [anon_sym_i8] = ACTIONS(2215), - [anon_sym_u16] = ACTIONS(2215), - [anon_sym_i16] = ACTIONS(2215), - [anon_sym_u32] = ACTIONS(2215), - [anon_sym_i32] = ACTIONS(2215), - [anon_sym_u64] = ACTIONS(2215), - [anon_sym_i64] = ACTIONS(2215), - [anon_sym_u128] = ACTIONS(2215), - [anon_sym_i128] = ACTIONS(2215), - [anon_sym_isize] = ACTIONS(2215), - [anon_sym_usize] = ACTIONS(2215), - [anon_sym_f32] = ACTIONS(2215), - [anon_sym_f64] = ACTIONS(2215), - [anon_sym_bool] = ACTIONS(2215), - [anon_sym_str] = ACTIONS(2215), - [anon_sym_char] = ACTIONS(2215), - [aux_sym__non_special_token_token1] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2215), - [anon_sym_enum] = ACTIONS(2215), - [anon_sym_fn] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_impl] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_mod] = ACTIONS(2215), - [anon_sym_pub] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_static] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2215), - [anon_sym_trait] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2215), - [anon_sym_union] = ACTIONS(2215), - [anon_sym_unsafe] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_where] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [sym_mutable_specifier] = ACTIONS(2215), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_crate] = ACTIONS(2215), - [sym_metavariable] = ACTIONS(2219), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { - [sym_token_tree] = STATE(522), - [sym_token_repetition] = STATE(522), - [sym__literal] = STATE(522), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2221), - [anon_sym_i8] = ACTIONS(2221), - [anon_sym_u16] = ACTIONS(2221), - [anon_sym_i16] = ACTIONS(2221), - [anon_sym_u32] = ACTIONS(2221), - [anon_sym_i32] = ACTIONS(2221), - [anon_sym_u64] = ACTIONS(2221), - [anon_sym_i64] = ACTIONS(2221), - [anon_sym_u128] = ACTIONS(2221), - [anon_sym_i128] = ACTIONS(2221), - [anon_sym_isize] = ACTIONS(2221), - [anon_sym_usize] = ACTIONS(2221), - [anon_sym_f32] = ACTIONS(2221), - [anon_sym_f64] = ACTIONS(2221), - [anon_sym_bool] = ACTIONS(2221), - [anon_sym_str] = ACTIONS(2221), - [anon_sym_char] = ACTIONS(2221), - [aux_sym__non_special_token_token1] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_impl] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_mod] = ACTIONS(2221), - [anon_sym_pub] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_where] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [sym_mutable_specifier] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_crate] = ACTIONS(2221), - [sym_metavariable] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2211), + [anon_sym_i8] = ACTIONS(2211), + [anon_sym_u16] = ACTIONS(2211), + [anon_sym_i16] = ACTIONS(2211), + [anon_sym_u32] = ACTIONS(2211), + [anon_sym_i32] = ACTIONS(2211), + [anon_sym_u64] = ACTIONS(2211), + [anon_sym_i64] = ACTIONS(2211), + [anon_sym_u128] = ACTIONS(2211), + [anon_sym_i128] = ACTIONS(2211), + [anon_sym_isize] = ACTIONS(2211), + [anon_sym_usize] = ACTIONS(2211), + [anon_sym_f32] = ACTIONS(2211), + [anon_sym_f64] = ACTIONS(2211), + [anon_sym_bool] = ACTIONS(2211), + [anon_sym_str] = ACTIONS(2211), + [anon_sym_char] = ACTIONS(2211), + [aux_sym__non_special_token_token1] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_default] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_impl] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_mod] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_trait] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_where] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [sym_mutable_specifier] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [521] = { + [525] = { [sym_token_tree] = STATE(517), [sym_token_repetition] = STATE(517), [sym__literal] = STATE(517), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), [aux_sym_token_tree_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2147), - [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(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_crate] = ACTIONS(2225), - [sym_metavariable] = ACTIONS(2227), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2217), + [anon_sym_i8] = ACTIONS(2217), + [anon_sym_u16] = ACTIONS(2217), + [anon_sym_i16] = ACTIONS(2217), + [anon_sym_u32] = ACTIONS(2217), + [anon_sym_i32] = ACTIONS(2217), + [anon_sym_u64] = ACTIONS(2217), + [anon_sym_i64] = ACTIONS(2217), + [anon_sym_u128] = ACTIONS(2217), + [anon_sym_i128] = ACTIONS(2217), + [anon_sym_isize] = ACTIONS(2217), + [anon_sym_usize] = ACTIONS(2217), + [anon_sym_f32] = ACTIONS(2217), + [anon_sym_f64] = ACTIONS(2217), + [anon_sym_bool] = ACTIONS(2217), + [anon_sym_str] = ACTIONS(2217), + [anon_sym_char] = ACTIONS(2217), + [aux_sym__non_special_token_token1] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_as] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_await] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_default] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_impl] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_mod] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [sym_mutable_specifier] = ACTIONS(2217), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_crate] = ACTIONS(2217), + [sym_metavariable] = ACTIONS(2219), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [522] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [526] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [523] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [527] = { + [sym_token_tree] = STATE(520), + [sym_token_repetition] = STATE(520), + [sym__literal] = STATE(520), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(520), + [sym_identifier] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [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(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_crate] = ACTIONS(2223), + [sym_metavariable] = ACTIONS(2225), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [524] = { - [sym_token_tree] = STATE(511), - [sym_token_repetition] = STATE(511), - [sym__literal] = STATE(511), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(511), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2229), - [anon_sym_i8] = ACTIONS(2229), - [anon_sym_u16] = ACTIONS(2229), - [anon_sym_i16] = ACTIONS(2229), - [anon_sym_u32] = ACTIONS(2229), - [anon_sym_i32] = ACTIONS(2229), - [anon_sym_u64] = ACTIONS(2229), - [anon_sym_i64] = ACTIONS(2229), - [anon_sym_u128] = ACTIONS(2229), - [anon_sym_i128] = ACTIONS(2229), - [anon_sym_isize] = ACTIONS(2229), - [anon_sym_usize] = ACTIONS(2229), - [anon_sym_f32] = ACTIONS(2229), - [anon_sym_f64] = ACTIONS(2229), - [anon_sym_bool] = ACTIONS(2229), - [anon_sym_str] = ACTIONS(2229), - [anon_sym_char] = ACTIONS(2229), - [aux_sym__non_special_token_token1] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_impl] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_mod] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_where] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [sym_mutable_specifier] = ACTIONS(2229), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_crate] = ACTIONS(2229), + [528] = { + [sym_token_tree] = STATE(530), + [sym_token_repetition] = STATE(530), + [sym__literal] = STATE(530), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(530), + [sym_identifier] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [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(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), [sym_metavariable] = ACTIONS(2231), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [525] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), + [529] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [530] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), [anon_sym_RPAREN] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [aux_sym__non_special_token_token1] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_where] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [sym_mutable_specifier] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [526] = { - [sym_token_tree] = STATE(500), - [sym_token_repetition] = STATE(500), - [sym__literal] = STATE(500), - [sym_string_literal] = STATE(548), - [sym_boolean_literal] = STATE(548), - [aux_sym_token_tree_repeat1] = STATE(500), + [531] = { + [sym_token_tree] = STATE(502), + [sym_token_repetition] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(502), [sym_identifier] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2151), [anon_sym_u8] = ACTIONS(2233), [anon_sym_i8] = ACTIONS(2233), [anon_sym_u16] = ACTIONS(2233), @@ -61991,181 +62837,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2233), [anon_sym_while] = ACTIONS(2233), [sym_mutable_specifier] = ACTIONS(2233), - [sym_integer_literal] = ACTIONS(2016), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(998), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2233), [sym_super] = ACTIONS(2233), [sym_crate] = ACTIONS(2233), [sym_metavariable] = ACTIONS(2235), - [sym_raw_string_literal] = ACTIONS(2016), - [sym_float_literal] = ACTIONS(2016), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [527] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_macro_invocation] = STATE(2386), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1953), - [sym_match_pattern] = STATE(2537), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_enum_variant_list_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), + [532] = { + [sym_token_tree] = STATE(529), + [sym_token_repetition] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(556), + [sym_boolean_literal] = STATE(556), + [aux_sym_token_tree_repeat1] = STATE(529), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { + [sym_attribute_item] = STATE(594), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(1557), + [sym_scoped_type_identifier] = STATE(1913), + [sym_match_pattern] = STATE(2419), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1933), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [528] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_macro_invocation] = STATE(2386), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1953), - [sym_match_pattern] = STATE(2386), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [aux_sym_enum_variant_list_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), + [534] = { + [sym_attribute_item] = STATE(594), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(1557), + [sym_scoped_type_identifier] = STATE(1913), + [sym_match_pattern] = STATE(2409), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1933), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [529] = { - [sym_attribute_item] = STATE(537), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(688), - [sym__type] = STATE(1805), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [535] = { + [sym_attribute_item] = STATE(545), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(686), + [sym__type] = STATE(1769), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62173,72 +63093,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(537), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(2247), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(545), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(2251), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [530] = { - [sym_attribute_item] = STATE(538), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(719), - [sym__type] = STATE(1942), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [536] = { + [sym_attribute_item] = STATE(543), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(638), + [sym__type] = STATE(1950), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62246,71 +63166,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(543), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [531] = { - [sym_attribute_item] = STATE(538), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(719), - [sym__type] = STATE(1942), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [537] = { + [sym_attribute_item] = STATE(543), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(638), + [sym__type] = STATE(1950), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62318,71 +63238,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(543), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [532] = { - [sym_attribute_item] = STATE(538), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(719), - [sym__type] = STATE(1942), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [538] = { + [sym_attribute_item] = STATE(543), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(638), + [sym__type] = STATE(1950), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62390,71 +63310,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(543), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [533] = { - [sym_attribute_item] = STATE(538), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(719), - [sym__type] = STATE(1942), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [539] = { + [sym_attribute_item] = STATE(543), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(638), + [sym__type] = STATE(1950), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62462,71 +63382,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(543), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [534] = { - [sym_attribute_item] = STATE(538), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(719), - [sym__type] = STATE(1942), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [540] = { + [sym_attribute_item] = STATE(543), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(638), + [sym__type] = STATE(1950), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62534,71 +63454,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(543), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [535] = { - [sym_attribute_item] = STATE(538), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(719), - [sym__type] = STATE(1942), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [541] = { + [sym_attribute_item] = STATE(543), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(638), + [sym__type] = STATE(1950), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62606,71 +63526,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(543), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [536] = { - [sym_attribute_item] = STATE(538), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(719), - [sym__type] = STATE(1942), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [542] = { + [sym_identifier] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_RBRACK] = ACTIONS(2269), + [anon_sym_COLON] = ACTIONS(2271), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2267), + [anon_sym_i8] = ACTIONS(2267), + [anon_sym_u16] = ACTIONS(2267), + [anon_sym_i16] = ACTIONS(2267), + [anon_sym_u32] = ACTIONS(2267), + [anon_sym_i32] = ACTIONS(2267), + [anon_sym_u64] = ACTIONS(2267), + [anon_sym_i64] = ACTIONS(2267), + [anon_sym_u128] = ACTIONS(2267), + [anon_sym_i128] = ACTIONS(2267), + [anon_sym_isize] = ACTIONS(2267), + [anon_sym_usize] = ACTIONS(2267), + [anon_sym_f32] = ACTIONS(2267), + [anon_sym_f64] = ACTIONS(2267), + [anon_sym_bool] = ACTIONS(2267), + [anon_sym_str] = ACTIONS(2267), + [anon_sym_char] = ACTIONS(2267), + [aux_sym__non_special_token_token1] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_async] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2267), + [anon_sym_continue] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(2267), + [anon_sym_enum] = ACTIONS(2267), + [anon_sym_fn] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_impl] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_loop] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2267), + [anon_sym_mod] = ACTIONS(2267), + [anon_sym_pub] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2267), + [anon_sym_trait] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2267), + [anon_sym_union] = ACTIONS(2267), + [anon_sym_unsafe] = ACTIONS(2267), + [anon_sym_use] = ACTIONS(2267), + [anon_sym_where] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [sym_mutable_specifier] = ACTIONS(2267), + [sym_integer_literal] = ACTIONS(2269), + [aux_sym_string_literal_token1] = ACTIONS(2269), + [sym_char_literal] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(2267), + [anon_sym_false] = ACTIONS(2267), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2267), + [sym_super] = ACTIONS(2267), + [sym_crate] = ACTIONS(2267), + [sym_metavariable] = ACTIONS(2269), + [sym_raw_string_literal] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), + [sym_block_comment] = ACTIONS(3), + }, + [543] = { + [sym_attribute_item] = STATE(1058), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(688), + [sym__type] = STATE(1890), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62678,70 +63669,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [537] = { - [sym_attribute_item] = STATE(1079), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(623), - [sym__type] = STATE(1825), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [544] = { + [sym_attribute_item] = STATE(543), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(638), + [sym__type] = STATE(1950), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62749,70 +63740,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(543), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [538] = { - [sym_attribute_item] = STATE(1079), - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(630), - [sym__type] = STATE(2025), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [545] = { + [sym_attribute_item] = STATE(1058), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym_visibility_modifier] = STATE(642), + [sym__type] = STATE(1847), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -62820,197 +63811,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(904), - [sym_block_comment] = ACTIONS(3), - }, - [539] = { - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(2265), - [anon_sym_COLON] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2263), - [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(2265), - [aux_sym_string_literal_token1] = ACTIONS(2265), - [sym_char_literal] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2263), - [anon_sym_false] = ACTIONS(2263), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2263), - [sym_super] = ACTIONS(2263), - [sym_crate] = ACTIONS(2263), - [sym_metavariable] = ACTIONS(2265), - [sym_raw_string_literal] = ACTIONS(2265), - [sym_float_literal] = ACTIONS(2265), - [sym_block_comment] = ACTIONS(3), - }, - [540] = { - [sym_identifier] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_RBRACK] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_u8] = ACTIONS(2269), - [anon_sym_i8] = ACTIONS(2269), - [anon_sym_u16] = ACTIONS(2269), - [anon_sym_i16] = ACTIONS(2269), - [anon_sym_u32] = ACTIONS(2269), - [anon_sym_i32] = ACTIONS(2269), - [anon_sym_u64] = ACTIONS(2269), - [anon_sym_i64] = ACTIONS(2269), - [anon_sym_u128] = ACTIONS(2269), - [anon_sym_i128] = ACTIONS(2269), - [anon_sym_isize] = ACTIONS(2269), - [anon_sym_usize] = ACTIONS(2269), - [anon_sym_f32] = ACTIONS(2269), - [anon_sym_f64] = ACTIONS(2269), - [anon_sym_bool] = ACTIONS(2269), - [anon_sym_str] = ACTIONS(2269), - [anon_sym_char] = ACTIONS(2269), - [aux_sym__non_special_token_token1] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_impl] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_loop] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_mod] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_where] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [sym_mutable_specifier] = ACTIONS(2269), - [sym_integer_literal] = ACTIONS(2271), - [aux_sym_string_literal_token1] = ACTIONS(2271), - [sym_char_literal] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2269), - [sym_super] = ACTIONS(2269), - [sym_crate] = ACTIONS(2269), - [sym_metavariable] = ACTIONS(2271), - [sym_raw_string_literal] = ACTIONS(2271), - [sym_float_literal] = ACTIONS(2271), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [541] = { + [546] = { [sym_identifier] = ACTIONS(2273), [anon_sym_LPAREN] = ACTIONS(2275), [anon_sym_RPAREN] = ACTIONS(2275), @@ -63071,7 +63921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2275), [anon_sym_true] = ACTIONS(2273), [anon_sym_false] = ACTIONS(2273), - [sym_line_comment] = ACTIONS(998), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2273), [sym_super] = ACTIONS(2273), [sym_crate] = ACTIONS(2273), @@ -63080,7 +63930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2275), [sym_block_comment] = ACTIONS(3), }, - [542] = { + [547] = { [sym_identifier] = ACTIONS(2277), [anon_sym_LPAREN] = ACTIONS(2279), [anon_sym_RPAREN] = ACTIONS(2279), @@ -63141,7 +63991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2279), [anon_sym_true] = ACTIONS(2277), [anon_sym_false] = ACTIONS(2277), - [sym_line_comment] = ACTIONS(998), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2277), [sym_super] = ACTIONS(2277), [sym_crate] = ACTIONS(2277), @@ -63150,427 +64000,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2279), [sym_block_comment] = ACTIONS(3), }, - [543] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1803), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [548] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1792), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_COMMA] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_RBRACK] = ACTIONS(810), + [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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [544] = { - [sym_identifier] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_RPAREN] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_RBRACK] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2289), - [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(2291), - [aux_sym_string_literal_token1] = ACTIONS(2291), - [sym_char_literal] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2289), - [sym_super] = ACTIONS(2289), - [sym_crate] = ACTIONS(2289), - [sym_metavariable] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2291), - [sym_float_literal] = ACTIONS(2291), + [549] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(2285), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [545] = { - [sym_identifier] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_RPAREN] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_RBRACK] = ACTIONS(2295), - [anon_sym_DOLLAR] = ACTIONS(2293), - [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(2295), - [aux_sym_string_literal_token1] = ACTIONS(2295), - [sym_char_literal] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2293), - [sym_super] = ACTIONS(2293), - [sym_crate] = ACTIONS(2293), - [sym_metavariable] = ACTIONS(2295), - [sym_raw_string_literal] = ACTIONS(2295), - [sym_float_literal] = ACTIONS(2295), + [550] = { + [sym_identifier] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_RBRACK] = ACTIONS(602), + [anon_sym_DOLLAR] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(604), + [anon_sym_i8] = ACTIONS(604), + [anon_sym_u16] = ACTIONS(604), + [anon_sym_i16] = ACTIONS(604), + [anon_sym_u32] = ACTIONS(604), + [anon_sym_i32] = ACTIONS(604), + [anon_sym_u64] = ACTIONS(604), + [anon_sym_i64] = ACTIONS(604), + [anon_sym_u128] = ACTIONS(604), + [anon_sym_i128] = ACTIONS(604), + [anon_sym_isize] = ACTIONS(604), + [anon_sym_usize] = ACTIONS(604), + [anon_sym_f32] = ACTIONS(604), + [anon_sym_f64] = ACTIONS(604), + [anon_sym_bool] = ACTIONS(604), + [anon_sym_str] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [aux_sym__non_special_token_token1] = ACTIONS(604), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_as] = ACTIONS(604), + [anon_sym_async] = ACTIONS(604), + [anon_sym_await] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_const] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(604), + [anon_sym_fn] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_impl] = ACTIONS(604), + [anon_sym_let] = ACTIONS(604), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(604), + [anon_sym_mod] = ACTIONS(604), + [anon_sym_pub] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_static] = ACTIONS(604), + [anon_sym_struct] = ACTIONS(604), + [anon_sym_trait] = ACTIONS(604), + [anon_sym_type] = ACTIONS(604), + [anon_sym_union] = ACTIONS(604), + [anon_sym_unsafe] = ACTIONS(604), + [anon_sym_use] = ACTIONS(604), + [anon_sym_where] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [sym_mutable_specifier] = ACTIONS(604), + [sym_integer_literal] = ACTIONS(602), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_crate] = ACTIONS(604), + [sym_metavariable] = ACTIONS(602), + [sym_raw_string_literal] = ACTIONS(602), + [sym_float_literal] = ACTIONS(602), [sym_block_comment] = ACTIONS(3), }, - [546] = { - [sym_identifier] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_RBRACK] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2297), - [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(2299), - [aux_sym_string_literal_token1] = ACTIONS(2299), - [sym_char_literal] = ACTIONS(2299), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_crate] = ACTIONS(2297), - [sym_metavariable] = ACTIONS(2299), - [sym_raw_string_literal] = ACTIONS(2299), - [sym_float_literal] = ACTIONS(2299), + [551] = { + [sym_parameter] = STATE(1958), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1783), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(2289), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(2291), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [547] = { - [sym_identifier] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_RPAREN] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(610), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_async] = ACTIONS(610), - [anon_sym_await] = 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_where] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [sym_mutable_specifier] = 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(998), - [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), + [552] = { + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_RBRACK] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2295), + [anon_sym_u8] = ACTIONS(2295), + [anon_sym_i8] = ACTIONS(2295), + [anon_sym_u16] = ACTIONS(2295), + [anon_sym_i16] = ACTIONS(2295), + [anon_sym_u32] = ACTIONS(2295), + [anon_sym_i32] = ACTIONS(2295), + [anon_sym_u64] = ACTIONS(2295), + [anon_sym_i64] = ACTIONS(2295), + [anon_sym_u128] = ACTIONS(2295), + [anon_sym_i128] = ACTIONS(2295), + [anon_sym_isize] = ACTIONS(2295), + [anon_sym_usize] = ACTIONS(2295), + [anon_sym_f32] = ACTIONS(2295), + [anon_sym_f64] = ACTIONS(2295), + [anon_sym_bool] = ACTIONS(2295), + [anon_sym_str] = ACTIONS(2295), + [anon_sym_char] = ACTIONS(2295), + [aux_sym__non_special_token_token1] = ACTIONS(2295), + [anon_sym_SQUOTE] = ACTIONS(2295), + [anon_sym_as] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_default] = ACTIONS(2295), + [anon_sym_enum] = ACTIONS(2295), + [anon_sym_fn] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_impl] = ACTIONS(2295), + [anon_sym_let] = ACTIONS(2295), + [anon_sym_loop] = ACTIONS(2295), + [anon_sym_match] = ACTIONS(2295), + [anon_sym_mod] = ACTIONS(2295), + [anon_sym_pub] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2295), + [anon_sym_trait] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2295), + [anon_sym_union] = ACTIONS(2295), + [anon_sym_unsafe] = ACTIONS(2295), + [anon_sym_use] = ACTIONS(2295), + [anon_sym_where] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [sym_mutable_specifier] = ACTIONS(2295), + [sym_integer_literal] = ACTIONS(2297), + [aux_sym_string_literal_token1] = ACTIONS(2297), + [sym_char_literal] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2295), + [anon_sym_false] = ACTIONS(2295), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2295), + [sym_super] = ACTIONS(2295), + [sym_crate] = ACTIONS(2295), + [sym_metavariable] = ACTIONS(2297), + [sym_raw_string_literal] = ACTIONS(2297), + [sym_float_literal] = ACTIONS(2297), [sym_block_comment] = ACTIONS(3), }, - [548] = { - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_RPAREN] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_RBRACK] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2301), - [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), + [553] = { + [sym_function_modifiers] = STATE(2404), + [sym_const_parameter] = STATE(2111), + [sym_constrained_type_parameter] = STATE(1806), + [sym_optional_type_parameter] = STATE(2111), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1955), + [sym_bracketed_type] = STATE(2347), + [sym_qualified_type] = STATE(2328), + [sym_lifetime] = STATE(1671), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), [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(2303), - [aux_sym_string_literal_token1] = ACTIONS(2303), - [sym_char_literal] = ACTIONS(2303), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_crate] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(2303), - [sym_raw_string_literal] = ACTIONS(2303), - [sym_float_literal] = ACTIONS(2303), [sym_block_comment] = ACTIONS(3), }, - [549] = { + [554] = { [sym_identifier] = ACTIONS(2305), [anon_sym_LPAREN] = ACTIONS(2307), [anon_sym_RPAREN] = ACTIONS(2307), @@ -63631,7 +64481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2307), [anon_sym_true] = ACTIONS(2305), [anon_sym_false] = ACTIONS(2305), - [sym_line_comment] = ACTIONS(998), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2305), [sym_super] = ACTIONS(2305), [sym_crate] = ACTIONS(2305), @@ -63640,357 +64490,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2307), [sym_block_comment] = ACTIONS(3), }, - [550] = { - [sym_function_modifiers] = STATE(2315), - [sym_const_parameter] = STATE(1859), - [sym_constrained_type_parameter] = STATE(1804), - [sym_optional_type_parameter] = STATE(1859), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(2358), - [sym_qualified_type] = STATE(2410), - [sym_lifetime] = STATE(1639), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [555] = { [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(2311), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_RPAREN] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_RBRACK] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2309), + [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(2311), + [aux_sym_string_literal_token1] = ACTIONS(2311), + [sym_char_literal] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_crate] = ACTIONS(2309), + [sym_metavariable] = ACTIONS(2311), + [sym_raw_string_literal] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2311), [sym_block_comment] = ACTIONS(3), }, - [551] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1830), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_RBRACK] = ACTIONS(806), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [556] = { + [sym_identifier] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_RBRACK] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(2313), + [anon_sym_i8] = ACTIONS(2313), + [anon_sym_u16] = ACTIONS(2313), + [anon_sym_i16] = ACTIONS(2313), + [anon_sym_u32] = ACTIONS(2313), + [anon_sym_i32] = ACTIONS(2313), + [anon_sym_u64] = ACTIONS(2313), + [anon_sym_i64] = ACTIONS(2313), + [anon_sym_u128] = ACTIONS(2313), + [anon_sym_i128] = ACTIONS(2313), + [anon_sym_isize] = ACTIONS(2313), + [anon_sym_usize] = ACTIONS(2313), + [anon_sym_f32] = ACTIONS(2313), + [anon_sym_f64] = ACTIONS(2313), + [anon_sym_bool] = ACTIONS(2313), + [anon_sym_str] = ACTIONS(2313), + [anon_sym_char] = ACTIONS(2313), + [aux_sym__non_special_token_token1] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_fn] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_impl] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_mod] = ACTIONS(2313), + [anon_sym_pub] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_unsafe] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_where] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [sym_mutable_specifier] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2315), + [aux_sym_string_literal_token1] = ACTIONS(2315), + [sym_char_literal] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2313), + [sym_super] = ACTIONS(2313), + [sym_crate] = ACTIONS(2313), + [sym_metavariable] = ACTIONS(2315), + [sym_raw_string_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), [sym_block_comment] = ACTIONS(3), }, - [552] = { - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_RBRACK] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2315), - [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(2317), - [aux_sym_string_literal_token1] = ACTIONS(2317), - [sym_char_literal] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2315), - [anon_sym_false] = ACTIONS(2315), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2315), - [sym_super] = ACTIONS(2315), - [sym_crate] = ACTIONS(2315), - [sym_metavariable] = ACTIONS(2317), - [sym_raw_string_literal] = ACTIONS(2317), - [sym_float_literal] = ACTIONS(2317), + [557] = { + [sym_identifier] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_RPAREN] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_RBRACK] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [aux_sym__non_special_token_token1] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_async] = ACTIONS(588), + [anon_sym_await] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_fn] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(588), + [anon_sym_let] = ACTIONS(588), + [anon_sym_loop] = ACTIONS(588), + [anon_sym_match] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(588), + [anon_sym_pub] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_struct] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_use] = ACTIONS(588), + [anon_sym_where] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [sym_mutable_specifier] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), [sym_block_comment] = ACTIONS(3), }, - [553] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1832), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), + [558] = { + [sym_identifier] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2319), [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_COMMA] = ACTIONS(836), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [554] = { - [sym_identifier] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_RPAREN] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(630), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [aux_sym__non_special_token_token1] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_async] = ACTIONS(630), - [anon_sym_await] = ACTIONS(630), - [anon_sym_break] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_continue] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_enum] = ACTIONS(630), - [anon_sym_fn] = ACTIONS(630), - [anon_sym_for] = ACTIONS(630), - [anon_sym_if] = ACTIONS(630), - [anon_sym_impl] = ACTIONS(630), - [anon_sym_let] = ACTIONS(630), - [anon_sym_loop] = ACTIONS(630), - [anon_sym_match] = ACTIONS(630), - [anon_sym_mod] = ACTIONS(630), - [anon_sym_pub] = ACTIONS(630), - [anon_sym_return] = ACTIONS(630), - [anon_sym_static] = ACTIONS(630), - [anon_sym_struct] = ACTIONS(630), - [anon_sym_trait] = ACTIONS(630), - [anon_sym_type] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_unsafe] = ACTIONS(630), - [anon_sym_use] = ACTIONS(630), - [anon_sym_where] = ACTIONS(630), - [anon_sym_while] = ACTIONS(630), - [sym_mutable_specifier] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_RBRACK] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2317), + [anon_sym_u8] = ACTIONS(2317), + [anon_sym_i8] = ACTIONS(2317), + [anon_sym_u16] = ACTIONS(2317), + [anon_sym_i16] = ACTIONS(2317), + [anon_sym_u32] = ACTIONS(2317), + [anon_sym_i32] = ACTIONS(2317), + [anon_sym_u64] = ACTIONS(2317), + [anon_sym_i64] = ACTIONS(2317), + [anon_sym_u128] = ACTIONS(2317), + [anon_sym_i128] = ACTIONS(2317), + [anon_sym_isize] = ACTIONS(2317), + [anon_sym_usize] = ACTIONS(2317), + [anon_sym_f32] = ACTIONS(2317), + [anon_sym_f64] = ACTIONS(2317), + [anon_sym_bool] = ACTIONS(2317), + [anon_sym_str] = ACTIONS(2317), + [anon_sym_char] = ACTIONS(2317), + [aux_sym__non_special_token_token1] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_as] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_fn] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_impl] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_loop] = ACTIONS(2317), + [anon_sym_match] = ACTIONS(2317), + [anon_sym_mod] = ACTIONS(2317), + [anon_sym_pub] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_unsafe] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_where] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [sym_mutable_specifier] = ACTIONS(2317), + [sym_integer_literal] = ACTIONS(2319), + [aux_sym_string_literal_token1] = ACTIONS(2319), + [sym_char_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_crate] = ACTIONS(2317), + [sym_metavariable] = ACTIONS(2319), + [sym_raw_string_literal] = ACTIONS(2319), + [sym_float_literal] = ACTIONS(2319), [sym_block_comment] = ACTIONS(3), }, - [555] = { + [559] = { [sym_identifier] = ACTIONS(2321), [anon_sym_LPAREN] = ACTIONS(2323), [anon_sym_RPAREN] = ACTIONS(2323), @@ -64051,7 +64831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2323), [anon_sym_true] = ACTIONS(2321), [anon_sym_false] = ACTIONS(2321), - [sym_line_comment] = ACTIONS(998), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2321), [sym_super] = ACTIONS(2321), [sym_crate] = ACTIONS(2321), @@ -64060,77 +64840,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2323), [sym_block_comment] = ACTIONS(3), }, - [556] = { - [sym_parameter] = STATE(1985), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1854), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), + [560] = { + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_RBRACK] = ACTIONS(2327), + [anon_sym_DOLLAR] = ACTIONS(2325), + [anon_sym_u8] = ACTIONS(2325), + [anon_sym_i8] = ACTIONS(2325), + [anon_sym_u16] = ACTIONS(2325), + [anon_sym_i16] = ACTIONS(2325), + [anon_sym_u32] = ACTIONS(2325), + [anon_sym_i32] = ACTIONS(2325), + [anon_sym_u64] = ACTIONS(2325), + [anon_sym_i64] = ACTIONS(2325), + [anon_sym_u128] = ACTIONS(2325), + [anon_sym_i128] = ACTIONS(2325), + [anon_sym_isize] = ACTIONS(2325), + [anon_sym_usize] = ACTIONS(2325), + [anon_sym_f32] = ACTIONS(2325), + [anon_sym_f64] = ACTIONS(2325), + [anon_sym_bool] = ACTIONS(2325), + [anon_sym_str] = ACTIONS(2325), + [anon_sym_char] = ACTIONS(2325), + [aux_sym__non_special_token_token1] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_as] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_await] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), [anon_sym_default] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_fn] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_impl] = ACTIONS(2325), + [anon_sym_let] = ACTIONS(2325), + [anon_sym_loop] = ACTIONS(2325), + [anon_sym_match] = ACTIONS(2325), + [anon_sym_mod] = ACTIONS(2325), + [anon_sym_pub] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2325), [anon_sym_union] = ACTIONS(2325), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(2327), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_PIPE] = ACTIONS(2329), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2331), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_unsafe] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_where] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [sym_mutable_specifier] = ACTIONS(2325), + [sym_integer_literal] = ACTIONS(2327), + [aux_sym_string_literal_token1] = ACTIONS(2327), + [sym_char_literal] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2325), + [sym_super] = ACTIONS(2325), + [sym_crate] = ACTIONS(2325), + [sym_metavariable] = ACTIONS(2327), + [sym_raw_string_literal] = ACTIONS(2327), + [sym_float_literal] = ACTIONS(2327), [sym_block_comment] = ACTIONS(3), }, - [557] = { + [561] = { + [sym_identifier] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_RBRACK] = ACTIONS(2331), + [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(2329), + [anon_sym_i8] = ACTIONS(2329), + [anon_sym_u16] = ACTIONS(2329), + [anon_sym_i16] = ACTIONS(2329), + [anon_sym_u32] = ACTIONS(2329), + [anon_sym_i32] = ACTIONS(2329), + [anon_sym_u64] = ACTIONS(2329), + [anon_sym_i64] = ACTIONS(2329), + [anon_sym_u128] = ACTIONS(2329), + [anon_sym_i128] = ACTIONS(2329), + [anon_sym_isize] = ACTIONS(2329), + [anon_sym_usize] = ACTIONS(2329), + [anon_sym_f32] = ACTIONS(2329), + [anon_sym_f64] = ACTIONS(2329), + [anon_sym_bool] = ACTIONS(2329), + [anon_sym_str] = ACTIONS(2329), + [anon_sym_char] = ACTIONS(2329), + [aux_sym__non_special_token_token1] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_impl] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_loop] = ACTIONS(2329), + [anon_sym_match] = ACTIONS(2329), + [anon_sym_mod] = ACTIONS(2329), + [anon_sym_pub] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_unsafe] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_where] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [sym_mutable_specifier] = ACTIONS(2329), + [sym_integer_literal] = ACTIONS(2331), + [aux_sym_string_literal_token1] = ACTIONS(2331), + [sym_char_literal] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2329), + [sym_super] = ACTIONS(2329), + [sym_crate] = ACTIONS(2329), + [sym_metavariable] = ACTIONS(2331), + [sym_raw_string_literal] = ACTIONS(2331), + [sym_float_literal] = ACTIONS(2331), + [sym_block_comment] = ACTIONS(3), + }, + [562] = { [sym_identifier] = ACTIONS(2333), [anon_sym_LPAREN] = ACTIONS(2335), [anon_sym_RPAREN] = ACTIONS(2335), @@ -64191,7 +65041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2335), [anon_sym_true] = ACTIONS(2333), [anon_sym_false] = ACTIONS(2333), - [sym_line_comment] = ACTIONS(998), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2333), [sym_super] = ACTIONS(2333), [sym_crate] = ACTIONS(2333), @@ -64200,77 +65050,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2335), [sym_block_comment] = ACTIONS(3), }, - [558] = { - [sym_identifier] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_RPAREN] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_RBRACK] = ACTIONS(2339), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_u8] = ACTIONS(2337), - [anon_sym_i8] = ACTIONS(2337), - [anon_sym_u16] = ACTIONS(2337), - [anon_sym_i16] = ACTIONS(2337), - [anon_sym_u32] = ACTIONS(2337), - [anon_sym_i32] = ACTIONS(2337), - [anon_sym_u64] = ACTIONS(2337), - [anon_sym_i64] = ACTIONS(2337), - [anon_sym_u128] = ACTIONS(2337), - [anon_sym_i128] = ACTIONS(2337), - [anon_sym_isize] = ACTIONS(2337), - [anon_sym_usize] = ACTIONS(2337), - [anon_sym_f32] = ACTIONS(2337), - [anon_sym_f64] = ACTIONS(2337), - [anon_sym_bool] = ACTIONS(2337), - [anon_sym_str] = ACTIONS(2337), - [anon_sym_char] = ACTIONS(2337), - [aux_sym__non_special_token_token1] = ACTIONS(2337), - [anon_sym_SQUOTE] = ACTIONS(2337), - [anon_sym_as] = ACTIONS(2337), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_fn] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_impl] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_loop] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_mod] = ACTIONS(2337), - [anon_sym_pub] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_trait] = ACTIONS(2337), - [anon_sym_type] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_unsafe] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_where] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [sym_mutable_specifier] = ACTIONS(2337), - [sym_integer_literal] = ACTIONS(2339), - [aux_sym_string_literal_token1] = ACTIONS(2339), - [sym_char_literal] = ACTIONS(2339), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [sym_line_comment] = ACTIONS(998), - [sym_self] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(2339), - [sym_raw_string_literal] = ACTIONS(2339), - [sym_float_literal] = ACTIONS(2339), + [563] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1813), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(2339), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [559] = { + [564] = { [sym_identifier] = ACTIONS(2341), [anon_sym_LPAREN] = ACTIONS(2343), [anon_sym_RPAREN] = ACTIONS(2343), @@ -64331,7 +65181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2343), [anon_sym_true] = ACTIONS(2341), [anon_sym_false] = ACTIONS(2341), - [sym_line_comment] = ACTIONS(998), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2341), [sym_super] = ACTIONS(2341), [sym_crate] = ACTIONS(2341), @@ -64340,7 +65190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2343), [sym_block_comment] = ACTIONS(3), }, - [560] = { + [565] = { [sym_identifier] = ACTIONS(2345), [anon_sym_LPAREN] = ACTIONS(2347), [anon_sym_RPAREN] = ACTIONS(2347), @@ -64401,7 +65251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2347), [anon_sym_true] = ACTIONS(2345), [anon_sym_false] = ACTIONS(2345), - [sym_line_comment] = ACTIONS(998), + [sym_line_comment] = ACTIONS(1004), [sym_self] = ACTIONS(2345), [sym_super] = ACTIONS(2345), [sym_crate] = ACTIONS(2345), @@ -64410,159 +65260,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2347), [sym_block_comment] = ACTIONS(3), }, - [561] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1796), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [562] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1796), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), + [566] = { + [sym_identifier] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2351), [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2351), + [anon_sym_RBRACK] = ACTIONS(2351), + [anon_sym_DOLLAR] = ACTIONS(2349), + [anon_sym_u8] = ACTIONS(2349), + [anon_sym_i8] = ACTIONS(2349), + [anon_sym_u16] = ACTIONS(2349), + [anon_sym_i16] = ACTIONS(2349), + [anon_sym_u32] = ACTIONS(2349), + [anon_sym_i32] = ACTIONS(2349), + [anon_sym_u64] = ACTIONS(2349), + [anon_sym_i64] = ACTIONS(2349), + [anon_sym_u128] = ACTIONS(2349), + [anon_sym_i128] = ACTIONS(2349), + [anon_sym_isize] = ACTIONS(2349), + [anon_sym_usize] = ACTIONS(2349), + [anon_sym_f32] = ACTIONS(2349), + [anon_sym_f64] = ACTIONS(2349), + [anon_sym_bool] = ACTIONS(2349), + [anon_sym_str] = ACTIONS(2349), + [anon_sym_char] = ACTIONS(2349), + [aux_sym__non_special_token_token1] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(2349), + [anon_sym_as] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_await] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_fn] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_impl] = ACTIONS(2349), + [anon_sym_let] = ACTIONS(2349), + [anon_sym_loop] = ACTIONS(2349), + [anon_sym_match] = ACTIONS(2349), + [anon_sym_mod] = ACTIONS(2349), + [anon_sym_pub] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_unsafe] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_where] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [sym_mutable_specifier] = ACTIONS(2349), + [sym_integer_literal] = ACTIONS(2351), + [aux_sym_string_literal_token1] = ACTIONS(2351), + [sym_char_literal] = ACTIONS(2351), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [sym_line_comment] = ACTIONS(1004), + [sym_self] = ACTIONS(2349), + [sym_super] = ACTIONS(2349), + [sym_crate] = ACTIONS(2349), + [sym_metavariable] = ACTIONS(2351), + [sym_raw_string_literal] = ACTIONS(2351), + [sym_float_literal] = ACTIONS(2351), [sym_block_comment] = ACTIONS(3), }, - [563] = { - [sym_function_modifiers] = STATE(2315), - [sym_higher_ranked_trait_bound] = STATE(1537), - [sym_removed_trait_bound] = STATE(1537), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1536), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1532), + [567] = { + [sym_function_modifiers] = STATE(2404), + [sym_higher_ranked_trait_bound] = STATE(1571), + [sym_removed_trait_bound] = STATE(1571), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1575), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(1576), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -64570,275 +65352,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_QMARK] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(2355), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [564] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1796), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [568] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1842), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1200), [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [565] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1796), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [569] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1842), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1204), [anon_sym_RBRACK] = ACTIONS(2359), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [566] = { - [sym_parameter] = STATE(2160), - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2077), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [570] = { + [sym_parameter] = STATE(2307), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1946), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_union] = ACTIONS(2325), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(2327), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2331), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(2289), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [567] = { - [sym_function_modifiers] = STATE(2315), - [sym_higher_ranked_trait_bound] = STATE(1593), - [sym_removed_trait_bound] = STATE(1593), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1596), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1568), + [571] = { + [sym_function_modifiers] = STATE(2404), + [sym_higher_ranked_trait_bound] = STATE(1571), + [sym_removed_trait_bound] = STATE(1571), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1575), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(1573), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -64846,68 +65628,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_QMARK] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(2355), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [568] = { - [sym_function_modifiers] = STATE(2315), - [sym_higher_ranked_trait_bound] = STATE(1593), - [sym_removed_trait_bound] = STATE(1593), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1596), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1598), + [572] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1842), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [573] = { + [sym_function_modifiers] = STATE(2404), + [sym_higher_ranked_trait_bound] = STATE(1532), + [sym_removed_trait_bound] = STATE(1532), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1536), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(1537), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -64915,68 +65766,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_QMARK] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(2355), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [569] = { - [sym_function_modifiers] = STATE(2315), - [sym_higher_ranked_trait_bound] = STATE(1593), - [sym_removed_trait_bound] = STATE(1593), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1594), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(1568), + [574] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1842), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [575] = { + [sym_function_modifiers] = STATE(2404), + [sym_higher_ranked_trait_bound] = STATE(1571), + [sym_removed_trait_bound] = STATE(1571), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1572), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(1573), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -64984,544 +65904,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_QMARK] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(2355), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [570] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1796), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [576] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1842), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [571] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1796), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [577] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1842), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_RBRACK] = ACTIONS(2363), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_RBRACK] = ACTIONS(2367), + [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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [572] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1428), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [578] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1775), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(2369), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [573] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2141), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [579] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1463), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [574] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1799), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [580] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2150), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_union] = ACTIONS(2365), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2367), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [575] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1471), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [581] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1040), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(2325), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2381), + [anon_sym_i8] = ACTIONS(2381), + [anon_sym_u16] = ACTIONS(2381), + [anon_sym_i16] = ACTIONS(2381), + [anon_sym_u32] = ACTIONS(2381), + [anon_sym_i32] = ACTIONS(2381), + [anon_sym_u64] = ACTIONS(2381), + [anon_sym_i64] = ACTIONS(2381), + [anon_sym_u128] = ACTIONS(2381), + [anon_sym_i128] = ACTIONS(2381), + [anon_sym_isize] = ACTIONS(2381), + [anon_sym_usize] = ACTIONS(2381), + [anon_sym_f32] = ACTIONS(2381), + [anon_sym_f64] = ACTIONS(2381), + [anon_sym_bool] = ACTIONS(2381), + [anon_sym_str] = ACTIONS(2381), + [anon_sym_char] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(2393), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_dyn] = ACTIONS(2397), + [sym_mutable_specifier] = ACTIONS(2399), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2403), [sym_block_comment] = ACTIONS(3), }, - [576] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1796), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [582] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2152), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [577] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [583] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -65529,2039 +66449,1563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(2371), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2407), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2373), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [578] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), + [584] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), [sym__pattern] = STATE(2256), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [579] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2295), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [580] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2161), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [581] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1468), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [582] = { - [sym_attribute_item] = STATE(582), - [aux_sym_enum_variant_list_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_RBRACK] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_u8] = ACTIONS(2375), - [anon_sym_i8] = ACTIONS(2375), - [anon_sym_u16] = ACTIONS(2375), - [anon_sym_i16] = ACTIONS(2375), - [anon_sym_u32] = ACTIONS(2375), - [anon_sym_i32] = ACTIONS(2375), - [anon_sym_u64] = ACTIONS(2375), - [anon_sym_i64] = ACTIONS(2375), - [anon_sym_u128] = ACTIONS(2375), - [anon_sym_i128] = ACTIONS(2375), - [anon_sym_isize] = ACTIONS(2375), - [anon_sym_usize] = ACTIONS(2375), - [anon_sym_f32] = ACTIONS(2375), - [anon_sym_f64] = ACTIONS(2375), - [anon_sym_bool] = ACTIONS(2375), - [anon_sym_str] = ACTIONS(2375), - [anon_sym_char] = ACTIONS(2375), - [anon_sym_SQUOTE] = ACTIONS(2375), - [anon_sym_async] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_unsafe] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_POUND] = ACTIONS(2379), - [anon_sym_BANG] = ACTIONS(2377), - [anon_sym_COMMA] = ACTIONS(2377), - [anon_sym_ref] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym__] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [sym_mutable_specifier] = ACTIONS(2375), - [anon_sym_DOT_DOT] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2375), - [anon_sym_move] = 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(3), - [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), - }, - [583] = { - [sym_function_modifiers] = STATE(2362), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1041), - [sym_bracketed_type] = STATE(2453), - [sym_lifetime] = STATE(2343), - [sym_array_type] = STATE(1124), - [sym_for_lifetimes] = STATE(1238), - [sym_function_type] = STATE(1124), - [sym_tuple_type] = STATE(1124), - [sym_unit_type] = STATE(1124), - [sym_generic_type] = STATE(986), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_bounded_type] = STATE(1124), - [sym_reference_type] = STATE(1124), - [sym_pointer_type] = STATE(1124), - [sym_empty_type] = STATE(1124), - [sym_abstract_type] = STATE(1124), - [sym_dynamic_type] = STATE(1124), - [sym_macro_invocation] = STATE(1124), - [sym_scoped_identifier] = STATE(2275), - [sym_scoped_type_identifier] = STATE(749), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2386), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(2390), - [anon_sym_u8] = ACTIONS(2392), - [anon_sym_i8] = ACTIONS(2392), - [anon_sym_u16] = ACTIONS(2392), - [anon_sym_i16] = ACTIONS(2392), - [anon_sym_u32] = ACTIONS(2392), - [anon_sym_i32] = ACTIONS(2392), - [anon_sym_u64] = ACTIONS(2392), - [anon_sym_i64] = ACTIONS(2392), - [anon_sym_u128] = ACTIONS(2392), - [anon_sym_i128] = ACTIONS(2392), - [anon_sym_isize] = ACTIONS(2392), - [anon_sym_usize] = ACTIONS(2392), - [anon_sym_f32] = ACTIONS(2392), - [anon_sym_f64] = ACTIONS(2392), - [anon_sym_bool] = ACTIONS(2392), - [anon_sym_str] = ACTIONS(2392), - [anon_sym_char] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_fn] = ACTIONS(2396), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_dyn] = ACTIONS(2408), - [sym_mutable_specifier] = ACTIONS(2410), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_crate] = ACTIONS(2412), - [sym_metavariable] = ACTIONS(2414), - [sym_block_comment] = ACTIONS(3), - }, - [584] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [585] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1445), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1851), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2411), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [586] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2139), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1466), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [587] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1799), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1818), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_union] = ACTIONS(2365), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2416), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [588] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2149), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1470), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [589] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1763), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2154), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(2418), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [590] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2148), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2175), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [591] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1909), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2415), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [592] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2136), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1467), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(2417), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [593] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2206), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1842), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [594] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2181), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [sym_attribute_item] = STATE(594), + [aux_sym_enum_variant_list_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_u8] = ACTIONS(2419), + [anon_sym_i8] = ACTIONS(2419), + [anon_sym_u16] = ACTIONS(2419), + [anon_sym_i16] = ACTIONS(2419), + [anon_sym_u32] = ACTIONS(2419), + [anon_sym_i32] = ACTIONS(2419), + [anon_sym_u64] = ACTIONS(2419), + [anon_sym_i64] = ACTIONS(2419), + [anon_sym_u128] = ACTIONS(2419), + [anon_sym_i128] = ACTIONS(2419), + [anon_sym_isize] = ACTIONS(2419), + [anon_sym_usize] = ACTIONS(2419), + [anon_sym_f32] = ACTIONS(2419), + [anon_sym_f64] = ACTIONS(2419), + [anon_sym_bool] = ACTIONS(2419), + [anon_sym_str] = ACTIONS(2419), + [anon_sym_char] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_loop] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_COMMA] = ACTIONS(2421), + [anon_sym_ref] = ACTIONS(2419), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_COLON_COLON] = ACTIONS(2421), + [anon_sym__] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2421), + [sym_mutable_specifier] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2419), + [anon_sym_move] = 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(3), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym_raw_string_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), [sym_block_comment] = ACTIONS(3), }, [595] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1838), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(2426), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [596] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2146), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1909), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [597] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2225), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1462), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [598] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2197), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1438), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [599] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2148), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [600] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1806), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2018), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(2422), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [601] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1845), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2181), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [602] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2014), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [603] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1458), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2143), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [604] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1457), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2222), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [605] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(1857), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [606] = { - [sym_bracketed_type] = STATE(2360), - [sym_generic_type] = STATE(2355), - [sym_generic_type_with_turbofish] = STATE(2351), - [sym_scoped_identifier] = STATE(1336), - [sym_scoped_type_identifier] = STATE(1953), - [sym_const_block] = STATE(1467), - [sym__pattern] = STATE(2166), - [sym_tuple_pattern] = STATE(1467), - [sym_slice_pattern] = STATE(1467), - [sym_tuple_struct_pattern] = STATE(1467), - [sym_struct_pattern] = STATE(1467), - [sym_remaining_field_pattern] = STATE(1467), - [sym_mut_pattern] = STATE(1467), - [sym_range_pattern] = STATE(1467), - [sym_ref_pattern] = STATE(1467), - [sym_captured_pattern] = STATE(1467), - [sym_reference_pattern] = STATE(1467), - [sym_or_pattern] = STATE(1467), - [sym__literal_pattern] = STATE(1383), - [sym_negative_literal] = STATE(1398), - [sym_string_literal] = STATE(1398), - [sym_boolean_literal] = STATE(1398), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_ref] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym__] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(1418), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(730), - [aux_sym_string_literal_token1] = ACTIONS(732), - [sym_char_literal] = ACTIONS(730), - [anon_sym_true] = ACTIONS(734), - [anon_sym_false] = ACTIONS(734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(730), - [sym_float_literal] = ACTIONS(730), - [sym_block_comment] = ACTIONS(3), - }, - [607] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2183), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -67569,135 +68013,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(2426), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2428), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [607] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1851), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2430), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [608] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1816), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2245), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [609] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(2358), - [sym_qualified_type] = STATE(2410), - [sym_lifetime] = STATE(2314), + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2149), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [610] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [611] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(2145), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [612] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1901), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [613] = { + [sym_bracketed_type] = STATE(2420), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(2406), + [sym_scoped_identifier] = STATE(1348), + [sym_scoped_type_identifier] = STATE(1913), + [sym_const_block] = STATE(1451), + [sym__pattern] = STATE(1828), + [sym_tuple_pattern] = STATE(1451), + [sym_slice_pattern] = STATE(1451), + [sym_tuple_struct_pattern] = STATE(1451), + [sym_struct_pattern] = STATE(1451), + [sym_remaining_field_pattern] = STATE(1451), + [sym_mut_pattern] = STATE(1451), + [sym_range_pattern] = STATE(1451), + [sym_ref_pattern] = STATE(1451), + [sym_captured_pattern] = STATE(1451), + [sym_reference_pattern] = STATE(1451), + [sym_or_pattern] = STATE(1451), + [sym__literal_pattern] = STATE(1395), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1214), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [614] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1955), + [sym_bracketed_type] = STATE(2347), + [sym_qualified_type] = STATE(2328), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -67705,66 +68558,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [610] = { - [sym_function_modifiers] = STATE(2315), - [sym_type_parameters] = STATE(666), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1657), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [615] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1802), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1617), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -67772,65 +68624,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1516), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [611] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1954), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [616] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2121), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -67838,66 +68691,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_RPAREN] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [612] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1954), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [617] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1831), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -67905,67 +68758,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_RPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_function_modifiers] = STATE(2315), - [sym_type_parameters] = STATE(698), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1662), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [618] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2134), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(606), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -67973,65 +68825,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1501), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2440), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [614] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1851), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [619] = { + [sym_function_modifiers] = STATE(2353), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1116), + [sym_bracketed_type] = STATE(2456), + [sym_lifetime] = STATE(581), + [sym_array_type] = STATE(1091), + [sym_for_lifetimes] = STATE(1182), + [sym_function_type] = STATE(1091), + [sym_tuple_type] = STATE(1091), + [sym_unit_type] = STATE(1091), + [sym_generic_type] = STATE(808), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bounded_type] = STATE(1091), + [sym_reference_type] = STATE(1091), + [sym_pointer_type] = STATE(1091), + [sym_empty_type] = STATE(1091), + [sym_abstract_type] = STATE(1091), + [sym_dynamic_type] = STATE(1091), + [sym_macro_invocation] = STATE(1091), + [sym_scoped_identifier] = STATE(2295), + [sym_scoped_type_identifier] = STATE(753), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2381), + [anon_sym_i8] = ACTIONS(2381), + [anon_sym_u16] = ACTIONS(2381), + [anon_sym_i16] = ACTIONS(2381), + [anon_sym_u32] = ACTIONS(2381), + [anon_sym_i32] = ACTIONS(2381), + [anon_sym_u64] = ACTIONS(2381), + [anon_sym_i64] = ACTIONS(2381), + [anon_sym_u128] = ACTIONS(2381), + [anon_sym_i128] = ACTIONS(2381), + [anon_sym_isize] = ACTIONS(2381), + [anon_sym_usize] = ACTIONS(2381), + [anon_sym_f32] = ACTIONS(2381), + [anon_sym_f64] = ACTIONS(2381), + [anon_sym_bool] = ACTIONS(2381), + [anon_sym_str] = ACTIONS(2381), + [anon_sym_char] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2393), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_dyn] = ACTIONS(2397), + [sym_mutable_specifier] = ACTIONS(2442), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2403), + [sym_block_comment] = ACTIONS(3), + }, + [620] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2121), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -68039,134 +68959,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_block_comment] = ACTIONS(3), - }, - [615] = { - [sym_function_modifiers] = STATE(2362), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1067), - [sym_bracketed_type] = STATE(2453), - [sym_lifetime] = STATE(583), - [sym_array_type] = STATE(1124), - [sym_for_lifetimes] = STATE(1238), - [sym_function_type] = STATE(1124), - [sym_tuple_type] = STATE(1124), - [sym_unit_type] = STATE(1124), - [sym_generic_type] = STATE(986), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_bounded_type] = STATE(1124), - [sym_reference_type] = STATE(1124), - [sym_pointer_type] = STATE(1124), - [sym_empty_type] = STATE(1124), - [sym_abstract_type] = STATE(1124), - [sym_dynamic_type] = STATE(1124), - [sym_macro_invocation] = STATE(1124), - [sym_scoped_identifier] = STATE(2275), - [sym_scoped_type_identifier] = STATE(749), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2386), - [anon_sym_STAR] = ACTIONS(2390), - [anon_sym_u8] = ACTIONS(2392), - [anon_sym_i8] = ACTIONS(2392), - [anon_sym_u16] = ACTIONS(2392), - [anon_sym_i16] = ACTIONS(2392), - [anon_sym_u32] = ACTIONS(2392), - [anon_sym_i32] = ACTIONS(2392), - [anon_sym_u64] = ACTIONS(2392), - [anon_sym_i64] = ACTIONS(2392), - [anon_sym_u128] = ACTIONS(2392), - [anon_sym_i128] = ACTIONS(2392), - [anon_sym_isize] = ACTIONS(2392), - [anon_sym_usize] = ACTIONS(2392), - [anon_sym_f32] = ACTIONS(2392), - [anon_sym_f64] = ACTIONS(2392), - [anon_sym_bool] = ACTIONS(2392), - [anon_sym_str] = ACTIONS(2392), - [anon_sym_char] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_fn] = ACTIONS(2396), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_dyn] = ACTIONS(2408), - [sym_mutable_specifier] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_crate] = ACTIONS(2412), - [sym_metavariable] = ACTIONS(2414), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_function_modifiers] = STATE(2315), - [sym_type_parameters] = STATE(675), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1675), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [621] = { + [sym_function_modifiers] = STATE(2404), + [sym_type_parameters] = STATE(666), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1646), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1620), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1642), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -68174,65 +69027,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1506), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1515), + [aux_sym_function_modifiers_repeat1] = STATE(1549), [sym_identifier] = ACTIONS(2446), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [617] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2127), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(598), + [622] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1391), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(583), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -68240,67 +69093,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(2448), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2450), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [618] = { - [sym_function_modifiers] = STATE(2315), - [sym_type_parameters] = STATE(679), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1647), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [623] = { + [sym_function_modifiers] = STATE(2404), + [sym_type_parameters] = STATE(634), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1664), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1656), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1684), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -68308,65 +69161,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1498), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1516), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [619] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1954), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [624] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2121), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -68374,66 +69227,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [620] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(607), + [625] = { + [sym_function_modifiers] = STATE(2404), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(2121), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1370), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -68441,66 +69294,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1333), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_mutable_specifier] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [621] = { - [sym_function_modifiers] = STATE(2315), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1954), - [sym_bracketed_type] = STATE(2358), - [sym_lifetime] = STATE(2314), + [626] = { + [sym_function_modifiers] = STATE(2404), + [sym_type_parameters] = STATE(691), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1627), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1275), + [sym_for_lifetimes] = STATE(1188), [sym_function_type] = STATE(1392), [sym_tuple_type] = STATE(1392), [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1360), - [sym_generic_type_with_turbofish] = STATE(2359), + [sym_generic_type] = STATE(1628), + [sym_generic_type_with_turbofish] = STATE(2348), [sym_bounded_type] = STATE(1392), [sym_reference_type] = STATE(1392), [sym_pointer_type] = STATE(1392), @@ -68508,314 +69362,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1392), [sym_dynamic_type] = STATE(1392), [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2262), - [sym_scoped_type_identifier] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(684), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_default] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(696), - [anon_sym_for] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_dyn] = ACTIONS(722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_block_comment] = ACTIONS(3), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - sym_identifier, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2386), 1, - anon_sym_LBRACK, - ACTIONS(2390), 1, - anon_sym_STAR, - ACTIONS(2394), 1, - anon_sym_default, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2398), 1, - anon_sym_impl, - ACTIONS(2400), 1, - anon_sym_union, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, - anon_sym_COLON_COLON, - ACTIONS(2406), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_dyn, - ACTIONS(2414), 1, - sym_metavariable, - STATE(749), 1, - sym_scoped_type_identifier, - STATE(986), 1, - sym_generic_type, - STATE(1108), 1, - sym__type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2275), 1, - sym_scoped_identifier, - STATE(2343), 1, - sym_lifetime, - STATE(2362), 1, - sym_function_modifiers, - STATE(2453), 1, - sym_bracketed_type, - STATE(2454), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2412), 3, - sym_self, - sym_super, - sym_crate, - STATE(1124), 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(2392), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [129] = 32, + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1518), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [627] = { + [sym_function_modifiers] = STATE(2404), + [sym_type_parameters] = STATE(636), + [sym_extern_modifier] = STATE(1549), + [sym__type] = STATE(1621), + [sym_bracketed_type] = STATE(2347), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(1392), + [sym_for_lifetimes] = STATE(1188), + [sym_function_type] = STATE(1392), + [sym_tuple_type] = STATE(1392), + [sym_unit_type] = STATE(1392), + [sym_generic_type] = STATE(1630), + [sym_generic_type_with_turbofish] = STATE(2348), + [sym_bounded_type] = STATE(1392), + [sym_reference_type] = STATE(1392), + [sym_pointer_type] = STATE(1392), + [sym_empty_type] = STATE(1392), + [sym_abstract_type] = STATE(1392), + [sym_dynamic_type] = STATE(1392), + [sym_macro_invocation] = STATE(1392), + [sym_scoped_identifier] = STATE(2280), + [sym_scoped_type_identifier] = STATE(1522), + [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_identifier] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1810), 1, + STATE(1885), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(888), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [258] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_STAR, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(700), 1, - anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(722), 1, - anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - anon_sym_LBRACK, - ACTIONS(890), 1, - anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(898), 1, - anon_sym_AMP, - ACTIONS(904), 1, - sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1328), 1, - sym_scoped_type_identifier, - STATE(1360), 1, - sym_generic_type, - STATE(1856), 1, - sym__type, - STATE(2262), 1, - sym_scoped_identifier, - STATE(2314), 1, + STATE(2392), 1, sym_lifetime, - STATE(2315), 1, + STATE(2404), 1, sym_function_modifiers, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -68831,7 +69557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68849,70 +69575,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [387] = 32, + [129] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1691), 1, + STATE(1678), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -68928,7 +69654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68946,70 +69672,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [516] = 32, + [258] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1866), 1, + STATE(2172), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -69025,7 +69751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69043,74 +69769,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [645] = 32, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, + ACTIONS(2245), 1, anon_sym_SQUOTE, - ACTIONS(2382), 1, + ACTIONS(2371), 1, sym_identifier, - ACTIONS(2384), 1, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, + ACTIONS(2379), 1, anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_default, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_fn, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_union, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(2403), 1, sym_metavariable, - STATE(749), 1, + STATE(753), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(808), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym__type, - STATE(1238), 1, + STATE(1182), 1, sym_for_lifetimes, - STATE(2275), 1, + STATE(2295), 1, sym_scoped_identifier, - STATE(2343), 1, + STATE(2325), 1, sym_lifetime, - STATE(2362), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2453), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69122,7 +69848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69140,167 +69866,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [774] = 32, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2176), 1, + STATE(1670), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(888), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [903] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_STAR, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(700), 1, - anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(722), 1, - anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - anon_sym_LBRACK, - ACTIONS(890), 1, - anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(898), 1, - anon_sym_AMP, - ACTIONS(904), 1, - sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1328), 1, - sym_scoped_type_identifier, - STATE(1360), 1, - sym_generic_type, - STATE(1644), 1, - sym__type, - STATE(2262), 1, - sym_scoped_identifier, - STATE(2314), 1, + STATE(2392), 1, sym_lifetime, - STATE(2315), 1, + STATE(2404), 1, sym_function_modifiers, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -69316,7 +69945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69334,170 +69963,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, + [645] = 33, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + ACTIONS(2462), 1, + sym_self, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2028), 1, + STATE(1394), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(888), 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, - [1161] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_STAR, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(700), 1, - anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(722), 1, - anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - anon_sym_LBRACK, - ACTIONS(890), 1, - anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(898), 1, - anon_sym_AMP, - ACTIONS(904), 1, - sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1328), 1, - sym_scoped_type_identifier, - STATE(1360), 1, - sym_generic_type, - STATE(1380), 1, - sym__type, - STATE(2262), 1, - sym_scoped_identifier, - STATE(2314), 1, + STATE(2392), 1, sym_lifetime, - STATE(2315), 1, + STATE(2404), 1, sym_function_modifiers, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + ACTIONS(906), 2, + sym_super, + sym_crate, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, STATE(1392), 11, sym_array_type, sym_function_type, @@ -69510,7 +70043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69528,171 +70061,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 32, + [776] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + ACTIONS(2464), 1, + sym_identifier, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1490), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1665), 1, sym_generic_type, - STATE(1672), 1, + STATE(1666), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(888), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1419] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - sym_identifier, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2386), 1, - anon_sym_LBRACK, - ACTIONS(2390), 1, - anon_sym_STAR, - ACTIONS(2394), 1, - anon_sym_default, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2398), 1, - anon_sym_impl, - ACTIONS(2400), 1, - anon_sym_union, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, - anon_sym_COLON_COLON, - ACTIONS(2406), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_dyn, - ACTIONS(2414), 1, - sym_metavariable, - STATE(749), 1, - sym_scoped_type_identifier, - STATE(986), 1, - sym_generic_type, - STATE(1044), 1, - sym__type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2275), 1, - sym_scoped_identifier, - STATE(2343), 1, + STATE(2392), 1, sym_lifetime, - STATE(2362), 1, + STATE(2404), 1, sym_function_modifiers, - STATE(2453), 1, - sym_bracketed_type, - STATE(2454), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1392), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69704,7 +70140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69722,70 +70158,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, + [905] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1937), 1, + STATE(1900), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -69801,7 +70237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69819,74 +70255,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, + [1034] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - sym_identifier, - ACTIONS(2384), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, - anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2398), 1, - anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(749), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2466), 1, + sym_identifier, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1523), 1, sym_scoped_type_identifier, - STATE(986), 1, - sym_generic_type, - STATE(1069), 1, + STATE(1617), 1, sym__type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2275), 1, + STATE(1623), 1, + sym_generic_type, + STATE(2280), 1, sym_scoped_identifier, - STATE(2343), 1, - sym_lifetime, - STATE(2362), 1, - sym_function_modifiers, - STATE(2453), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1392), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69898,7 +70334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69916,70 +70352,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, + [1163] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1673), 1, + STATE(1393), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -69995,7 +70431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70013,70 +70449,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [1292] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2024), 1, + STATE(1890), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -70092,7 +70528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70110,70 +70546,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [1421] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1674), 1, + STATE(1945), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -70189,7 +70625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70207,70 +70643,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [1550] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2202), 1, + STATE(1986), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -70286,7 +70722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70304,70 +70740,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [1679] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1677), 1, + STATE(2162), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -70383,7 +70819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70401,70 +70837,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [1808] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1680), 1, + STATE(1778), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -70480,7 +70916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70498,70 +70934,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, + [1937] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1930), 1, + STATE(2087), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -70577,7 +71013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70595,70 +71031,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [2066] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1681), 1, + STATE(2120), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -70674,7 +71110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70692,74 +71128,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [2195] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - sym_identifier, - ACTIONS(2384), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, - anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2398), 1, - anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(749), 1, + ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(1370), 1, sym_generic_type, - STATE(1033), 1, + STATE(1954), 1, sym__type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2275), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2343), 1, - sym_lifetime, - STATE(2362), 1, - sym_function_modifiers, - STATE(2453), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1392), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70771,7 +71207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70789,167 +71225,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [2324] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1376), 1, + STATE(2003), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 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(888), 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, - [3096] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_STAR, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(700), 1, - anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(722), 1, - anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - anon_sym_LBRACK, - ACTIONS(890), 1, - anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(898), 1, - anon_sym_AMP, - ACTIONS(904), 1, - sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1328), 1, - sym_scoped_type_identifier, - STATE(1360), 1, - sym_generic_type, - STATE(2262), 1, - sym_scoped_identifier, - STATE(2276), 1, - sym__type, - STATE(2314), 1, + STATE(2392), 1, sym_lifetime, - STATE(2315), 1, + STATE(2404), 1, sym_function_modifiers, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -70965,7 +71304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70983,70 +71322,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [2453] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1388), 1, + STATE(1654), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71062,7 +71401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71080,70 +71419,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [2582] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2051), 1, + STATE(1649), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71159,7 +71498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71177,70 +71516,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [2711] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1637), 1, + STATE(1394), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71256,7 +71595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71274,70 +71613,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [2840] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1684), 1, + STATE(1400), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71353,7 +71692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71371,70 +71710,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [2969] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2169), 1, + STATE(1626), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71450,7 +71789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71468,70 +71807,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [3098] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2079), 1, + STATE(2046), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71547,7 +71886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71565,70 +71904,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [3227] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1666), 1, + STATE(1809), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71644,7 +71983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71662,70 +72001,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [3356] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1695), 1, + STATE(1928), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71741,7 +72080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71759,70 +72098,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, + [3485] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1696), 1, + STATE(1625), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71838,7 +72177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71856,70 +72195,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [3614] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2153), 1, + STATE(1811), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -71935,7 +72274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71953,70 +72292,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 32, + [3743] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2089), 1, + STATE(1841), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -72032,7 +72371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72050,70 +72389,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4644] = 32, + [3872] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2091), 1, + STATE(1402), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -72129,7 +72468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72147,70 +72486,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4773] = 32, + [4001] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1643), 1, + STATE(1398), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -72226,7 +72565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72244,70 +72583,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4902] = 32, + [4130] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1700), 1, + STATE(1399), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -72323,7 +72662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72341,70 +72680,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5031] = 32, + [4259] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1701), 1, + STATE(1840), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2392), 1, sym_lifetime, - STATE(2315), 1, + STATE(2404), 1, sym_function_modifiers, - STATE(2358), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1392), 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(892), 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, + [4388] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, + anon_sym_LPAREN, + ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, + anon_sym_default, + ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(902), 1, + anon_sym_AMP, + ACTIONS(908), 1, + sym_metavariable, + ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1333), 1, + sym_scoped_type_identifier, + STATE(1370), 1, + sym_generic_type, + STATE(2016), 1, + sym__type, + STATE(2280), 1, + sym_scoped_identifier, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -72420,7 +72856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72438,70 +72874,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5160] = 32, + [4517] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1375), 1, + STATE(2074), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -72517,7 +72953,50 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 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, + [4646] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1174), 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(1176), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72535,74 +73014,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5289] = 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, + [4717] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_STAR, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, - anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, - anon_sym_dyn, - ACTIONS(882), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(886), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(890), 1, + ACTIONS(2379), 1, + anon_sym_STAR, + ACTIONS(2383), 1, anon_sym_default, - ACTIONS(892), 1, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2387), 1, + anon_sym_impl, + ACTIONS(2389), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(2391), 1, + anon_sym_BANG, + ACTIONS(2393), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(2397), 1, + anon_sym_dyn, + ACTIONS(2403), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1328), 1, + STATE(753), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(808), 1, sym_generic_type, - STATE(1703), 1, + STATE(1080), 1, sym__type, - STATE(2262), 1, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2295), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2325), 1, sym_lifetime, - STATE(2315), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2358), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72614,7 +73118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72632,70 +73136,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5418] = 32, + [4846] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + ACTIONS(2468), 1, + sym_identifier, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1519), 1, sym_scoped_type_identifier, - STATE(1360), 1, - sym_generic_type, - STATE(1917), 1, + STATE(1624), 1, sym__type, - STATE(2262), 1, + STATE(1635), 1, + sym_generic_type, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -72711,7 +73215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72729,70 +73233,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5547] = 32, + [4975] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1642), 1, - sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2309), 1, + sym__type, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -72808,7 +73312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72826,70 +73330,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5676] = 32, + [5104] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2458), 1, sym_identifier, - STATE(1275), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, sym_for_lifetimes, - STATE(1514), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1616), 1, + STATE(1370), 1, sym_generic_type, - STATE(1685), 1, + STATE(1396), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -72905,7 +73409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72923,70 +73427,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5805] = 32, + [5233] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2142), 1, + STATE(1999), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73002,7 +73506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73020,70 +73524,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5934] = 32, + [5362] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2084), 1, + STATE(1674), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73099,7 +73603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73117,70 +73621,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, + [5491] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2076), 1, + STATE(2106), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73196,7 +73700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73214,70 +73718,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, + [5620] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1679), 1, + STATE(1971), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73293,7 +73797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73311,70 +73815,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6321] = 32, + [5749] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1678), 1, + STATE(2075), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73390,7 +73894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73408,70 +73912,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, + [5878] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2072), 1, + STATE(1618), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73487,7 +73991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73505,70 +74009,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, + [6007] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2043), 1, + STATE(1401), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73584,7 +74088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73602,70 +74106,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, + [6136] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1831), 1, + STATE(1698), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73681,7 +74185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73699,70 +74203,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, + [6265] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2460), 1, sym_identifier, - STATE(1275), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, sym_for_lifetimes, - STATE(1519), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1619), 1, + STATE(1370), 1, sym_generic_type, - STATE(1641), 1, + STATE(1868), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73778,7 +74282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73796,70 +74300,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, + [6394] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1998), 1, + STATE(1888), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73875,7 +74379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73893,70 +74397,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 32, + [6523] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1836), 1, + STATE(2105), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2392), 1, sym_lifetime, - STATE(2315), 1, + STATE(2404), 1, sym_function_modifiers, - STATE(2358), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1392), 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(892), 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, + [6652] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, + anon_sym_LPAREN, + ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, + anon_sym_default, + ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(902), 1, + anon_sym_AMP, + ACTIONS(908), 1, + sym_metavariable, + ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1333), 1, + sym_scoped_type_identifier, + STATE(1370), 1, + sym_generic_type, + STATE(2121), 1, + sym__type, + STATE(2280), 1, + sym_scoped_identifier, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -73972,7 +74573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73990,70 +74591,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7224] = 32, + [6781] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1882), 1, + STATE(2030), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -74069,7 +74670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74087,70 +74688,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7353] = 32, + [6910] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2462), 1, sym_identifier, - STATE(1275), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, sym_for_lifetimes, - STATE(1486), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1615), 1, - sym__type, - STATE(1645), 1, + STATE(1370), 1, sym_generic_type, - STATE(2262), 1, + STATE(2012), 1, + sym__type, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -74166,7 +74767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74184,74 +74785,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7482] = 32, + [7039] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, + ACTIONS(2245), 1, anon_sym_SQUOTE, - ACTIONS(2382), 1, + ACTIONS(2371), 1, sym_identifier, - ACTIONS(2384), 1, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, + ACTIONS(2379), 1, anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_default, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_fn, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_union, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(2403), 1, sym_metavariable, - STATE(749), 1, + STATE(753), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(808), 1, sym_generic_type, - STATE(1115), 1, + STATE(1109), 1, sym__type, - STATE(1238), 1, + STATE(1182), 1, sym_for_lifetimes, - STATE(2275), 1, + STATE(2295), 1, sym_scoped_identifier, - STATE(2343), 1, + STATE(2325), 1, sym_lifetime, - STATE(2362), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2453), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74263,7 +74864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74281,74 +74882,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7611] = 32, + [7168] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, + ACTIONS(2245), 1, anon_sym_SQUOTE, - ACTIONS(2382), 1, + ACTIONS(2371), 1, sym_identifier, - ACTIONS(2384), 1, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, + ACTIONS(2379), 1, anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_default, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_fn, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_union, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(2403), 1, sym_metavariable, - STATE(749), 1, + STATE(753), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(808), 1, sym_generic_type, - STATE(1052), 1, + STATE(1125), 1, sym__type, - STATE(1238), 1, + STATE(1182), 1, sym_for_lifetimes, - STATE(2275), 1, + STATE(2295), 1, sym_scoped_identifier, - STATE(2343), 1, + STATE(2325), 1, sym_lifetime, - STATE(2362), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2453), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74360,7 +74961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74378,74 +74979,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7740] = 32, + [7297] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_STAR, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, - anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, - anon_sym_dyn, - ACTIONS(882), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(886), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(890), 1, + ACTIONS(2379), 1, + anon_sym_STAR, + ACTIONS(2383), 1, anon_sym_default, - ACTIONS(892), 1, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2387), 1, + anon_sym_impl, + ACTIONS(2389), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(2391), 1, + anon_sym_BANG, + ACTIONS(2393), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(2397), 1, + anon_sym_dyn, + ACTIONS(2403), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1328), 1, + STATE(753), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(808), 1, sym_generic_type, - STATE(2208), 1, + STATE(1124), 1, sym__type, - STATE(2262), 1, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2295), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2325), 1, sym_lifetime, - STATE(2315), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2358), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74457,7 +75058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74475,70 +75076,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7869] = 32, + [7426] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1907), 1, + STATE(1847), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -74554,7 +75155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74572,74 +75173,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7998] = 32, + [7555] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - sym_identifier, - ACTIONS(2384), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, - anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2398), 1, - anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(749), 1, + ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(1370), 1, sym_generic_type, - STATE(1085), 1, + STATE(2156), 1, sym__type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2275), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2343), 1, - sym_lifetime, - STATE(2362), 1, - sym_function_modifiers, - STATE(2453), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1392), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74651,7 +75252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74669,74 +75270,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8127] = 32, + [7684] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - sym_identifier, - ACTIONS(2384), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, - anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2398), 1, - anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(749), 1, + ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(1370), 1, sym_generic_type, - STATE(1038), 1, + STATE(1865), 1, sym__type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2275), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2343), 1, - sym_lifetime, - STATE(2362), 1, - sym_function_modifiers, - STATE(2453), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1392), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74748,7 +75349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74766,70 +75367,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8256] = 32, + [7813] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2133), 1, + STATE(1677), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -74845,7 +75446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74863,70 +75464,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8385] = 32, + [7942] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2197), 1, + STATE(2180), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -74942,7 +75543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74960,70 +75561,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8514] = 32, + [8071] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + ACTIONS(2470), 1, + sym_identifier, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1498), 1, sym_scoped_type_identifier, - STATE(1360), 1, - sym_generic_type, - STATE(1825), 1, + STATE(1650), 1, sym__type, - STATE(2262), 1, + STATE(1651), 1, + sym_generic_type, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -75039,7 +75640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75057,70 +75658,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8643] = 32, + [8200] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2194), 1, + STATE(2183), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -75136,7 +75737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75154,74 +75755,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8772] = 32, + [8329] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - sym_identifier, - ACTIONS(2384), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, - anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2398), 1, - anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(749), 1, + ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(1370), 1, sym_generic_type, - STATE(1098), 1, + STATE(1699), 1, sym__type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2275), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2343), 1, - sym_lifetime, - STATE(2362), 1, - sym_function_modifiers, - STATE(2453), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1392), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75233,7 +75834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75251,70 +75852,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8901] = 32, + [8458] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1947), 1, + STATE(1689), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -75330,7 +75931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75348,70 +75949,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9030] = 32, + [8587] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1855), 1, + STATE(2208), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -75427,7 +76028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75445,74 +76046,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9159] = 32, + [8716] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_STAR, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, - anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, - anon_sym_dyn, - ACTIONS(882), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(886), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(890), 1, + ACTIONS(2379), 1, + anon_sym_STAR, + ACTIONS(2383), 1, anon_sym_default, - ACTIONS(892), 1, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2387), 1, + anon_sym_impl, + ACTIONS(2389), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(2391), 1, + anon_sym_BANG, + ACTIONS(2393), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(2397), 1, + anon_sym_dyn, + ACTIONS(2403), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1328), 1, + STATE(753), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(808), 1, sym_generic_type, - STATE(2232), 1, + STATE(1104), 1, sym__type, - STATE(2262), 1, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2295), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2325), 1, sym_lifetime, - STATE(2315), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2358), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75524,7 +76125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75542,74 +76143,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9288] = 33, + [8845] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_self, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1376), 1, + STATE(1672), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(902), 2, - sym_super, - sym_crate, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, STATE(1392), 11, sym_array_type, sym_function_type, @@ -75622,7 +76222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75640,74 +76240,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9419] = 32, + [8974] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1646), 1, + STATE(1914), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, + sym_scoped_identifier, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1392), 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(892), 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, + [9103] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_LBRACK, + ACTIONS(2379), 1, + anon_sym_STAR, + ACTIONS(2383), 1, + anon_sym_default, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2387), 1, + anon_sym_impl, + ACTIONS(2389), 1, + anon_sym_union, + ACTIONS(2391), 1, + anon_sym_BANG, + ACTIONS(2393), 1, + anon_sym_COLON_COLON, + ACTIONS(2395), 1, + anon_sym_AMP, + ACTIONS(2397), 1, + anon_sym_dyn, + ACTIONS(2403), 1, + sym_metavariable, + STATE(753), 1, + sym_scoped_type_identifier, + STATE(808), 1, + sym_generic_type, + STATE(1067), 1, + sym__type, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2295), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2325), 1, sym_lifetime, - STATE(2315), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2358), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75719,7 +76416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75737,74 +76434,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9548] = 32, + [9232] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, + ACTIONS(2245), 1, anon_sym_SQUOTE, - ACTIONS(2382), 1, + ACTIONS(2371), 1, sym_identifier, - ACTIONS(2384), 1, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, + ACTIONS(2379), 1, anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_default, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_fn, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_union, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(2403), 1, sym_metavariable, - STATE(749), 1, + STATE(753), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(808), 1, sym_generic_type, - STATE(1137), 1, + STATE(1031), 1, sym__type, - STATE(1238), 1, + STATE(1182), 1, sym_for_lifetimes, - STATE(2275), 1, + STATE(2295), 1, sym_scoped_identifier, - STATE(2343), 1, + STATE(2325), 1, sym_lifetime, - STATE(2362), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2453), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75816,7 +76513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75834,74 +76531,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9677] = 32, + [9361] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(698), 1, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - sym_identifier, - ACTIONS(2384), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2386), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2390), 1, - anon_sym_STAR, - ACTIONS(2394), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2398), 1, - anon_sym_impl, - ACTIONS(2400), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2406), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_dyn, - ACTIONS(2414), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(749), 1, + ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(1370), 1, sym_generic_type, - STATE(1034), 1, + STATE(2092), 1, sym__type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2275), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2343), 1, - sym_lifetime, - STATE(2362), 1, - sym_function_modifiers, - STATE(2453), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2454), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2412), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1124), 11, + STATE(1392), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75913,7 +76610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2392), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75931,70 +76628,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9806] = 32, + [9490] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2466), 1, sym_identifier, - STATE(1275), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, sym_for_lifetimes, - STATE(1502), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1687), 1, - sym__type, - STATE(1689), 1, + STATE(1370), 1, sym_generic_type, - STATE(2262), 1, + STATE(1603), 1, + sym__type, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -76010,7 +76707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76028,74 +76725,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9935] = 32, + [9619] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1952), 1, + STATE(1693), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, + sym_scoped_identifier, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1392), 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(892), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [9748] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_LBRACK, + ACTIONS(2379), 1, + anon_sym_STAR, + ACTIONS(2383), 1, + anon_sym_default, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2387), 1, + anon_sym_impl, + ACTIONS(2389), 1, + anon_sym_union, + ACTIONS(2391), 1, + anon_sym_BANG, + ACTIONS(2393), 1, + anon_sym_COLON_COLON, + ACTIONS(2395), 1, + anon_sym_AMP, + ACTIONS(2397), 1, + anon_sym_dyn, + ACTIONS(2403), 1, + sym_metavariable, + STATE(753), 1, + sym_scoped_type_identifier, + STATE(808), 1, + sym_generic_type, + STATE(1049), 1, + sym__type, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2295), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2325), 1, sym_lifetime, - STATE(2315), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2358), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76107,7 +76901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76125,70 +76919,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10064] = 32, + [9877] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1936), 1, + STATE(2141), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -76204,7 +76998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76222,70 +77016,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10193] = 32, + [10006] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1697), 1, + STATE(1643), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -76301,7 +77095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76319,70 +77113,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10322] = 32, + [10135] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2143), 1, + STATE(1925), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -76398,7 +77192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76416,70 +77210,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10451] = 32, + [10264] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2058), 1, + STATE(2203), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -76495,7 +77289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76513,70 +77307,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10580] = 32, + [10393] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1570), 1, + STATE(2041), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -76592,7 +77386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76610,74 +77404,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10709] = 32, + [10522] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2067), 1, + STATE(1685), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, + sym_scoped_identifier, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1392), 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(892), 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, + [10651] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_LBRACK, + ACTIONS(2379), 1, + anon_sym_STAR, + ACTIONS(2383), 1, + anon_sym_default, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2387), 1, + anon_sym_impl, + ACTIONS(2389), 1, + anon_sym_union, + ACTIONS(2391), 1, + anon_sym_BANG, + ACTIONS(2393), 1, + anon_sym_COLON_COLON, + ACTIONS(2395), 1, + anon_sym_AMP, + ACTIONS(2397), 1, + anon_sym_dyn, + ACTIONS(2403), 1, + sym_metavariable, + STATE(753), 1, + sym_scoped_type_identifier, + STATE(808), 1, + sym_generic_type, + STATE(1038), 1, + sym__type, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2295), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2325), 1, sym_lifetime, - STATE(2315), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2358), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76689,7 +77580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76707,70 +77598,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10838] = 32, + [10780] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1966), 1, + STATE(1644), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -76786,7 +77677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76804,70 +77695,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10967] = 32, + [10909] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2015), 1, + STATE(2213), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -76883,7 +77774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76901,70 +77792,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11096] = 32, + [11038] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1592), 1, + STATE(1802), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -76980,7 +77871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76998,70 +77889,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11225] = 32, + [11167] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1954), 1, + STATE(1376), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -77077,7 +77968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77095,70 +77986,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11354] = 32, + [11296] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1372), 1, + STATE(2214), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -77174,7 +78065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77192,70 +78083,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11483] = 32, + [11425] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1373), 1, + STATE(1690), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -77271,7 +78162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77289,70 +78180,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11612] = 32, + [11554] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1391), 1, + STATE(1376), 1, sym__type, - STATE(2262), 1, - sym_scoped_identifier, - STATE(2314), 1, + STATE(1387), 1, sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2280), 1, + sym_scoped_identifier, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -77368,7 +78259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77386,70 +78277,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11741] = 32, + [11683] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1395), 1, + STATE(1582), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -77465,50 +78356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 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, - [11870] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1444), 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(1446), 42, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77526,95 +78374,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11941] = 32, + [11812] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1632), 1, + STATE(1694), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -77630,7 +78453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77648,70 +78471,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12070] = 32, + [11941] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1402), 1, + STATE(1634), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -77727,7 +78550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77745,70 +78568,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [12070] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1923), 1, + STATE(2273), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -77824,7 +78647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77842,70 +78665,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [12199] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2210), 1, + STATE(1631), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -77921,7 +78744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77939,70 +78762,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [12328] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2025), 1, + STATE(2079), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78018,7 +78841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78036,74 +78859,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [12457] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_STAR, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, - anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, - anon_sym_dyn, - ACTIONS(882), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(886), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(890), 1, + ACTIONS(2379), 1, + anon_sym_STAR, + ACTIONS(2383), 1, anon_sym_default, - ACTIONS(892), 1, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2387), 1, + anon_sym_impl, + ACTIONS(2389), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(2391), 1, + anon_sym_BANG, + ACTIONS(2393), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(2397), 1, + anon_sym_dyn, + ACTIONS(2403), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1328), 1, + STATE(753), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(808), 1, sym_generic_type, - STATE(2035), 1, + STATE(1040), 1, sym__type, - STATE(2262), 1, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2295), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2325), 1, sym_lifetime, - STATE(2315), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2358), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78115,7 +78938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78133,70 +78956,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, + [12586] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1400), 1, + STATE(1655), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78212,7 +79035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78230,70 +79053,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + [12715] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1911), 1, + STATE(1638), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2392), 1, sym_lifetime, - STATE(2315), 1, + STATE(2404), 1, sym_function_modifiers, - STATE(2358), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1392), 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(892), 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, + [12844] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, + anon_sym_LPAREN, + ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, + anon_sym_default, + ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(902), 1, + anon_sym_AMP, + ACTIONS(908), 1, + sym_metavariable, + ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1333), 1, + sym_scoped_type_identifier, + STATE(1370), 1, + sym_generic_type, + STATE(1380), 1, + sym__type, + STATE(2280), 1, + sym_scoped_identifier, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78309,7 +79229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78330,67 +79250,67 @@ static const uint16_t ts_small_parse_table[] = { [12973] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1629), 1, + STATE(1640), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78406,7 +79326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78427,67 +79347,67 @@ static const uint16_t ts_small_parse_table[] = { [13102] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(2037), 1, + STATE(1383), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78503,7 +79423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78524,67 +79444,67 @@ static const uint16_t ts_small_parse_table[] = { [13231] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1659), 1, + STATE(2205), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78600,7 +79520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78621,67 +79541,67 @@ static const uint16_t ts_small_parse_table[] = { [13360] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1390), 1, - sym_lifetime, - STATE(1394), 1, + STATE(1682), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78697,7 +79617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78718,67 +79638,67 @@ static const uint16_t ts_small_parse_table[] = { [13489] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1816), 1, + STATE(1695), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78794,7 +79714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78815,67 +79735,67 @@ static const uint16_t ts_small_parse_table[] = { [13618] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1683), 1, + STATE(1691), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78891,7 +79811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78912,67 +79832,67 @@ static const uint16_t ts_small_parse_table[] = { [13747] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1394), 1, + STATE(1877), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -78988,7 +79908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79009,67 +79929,67 @@ static const uint16_t ts_small_parse_table[] = { [13876] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(696), 1, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, + ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(882), 1, - anon_sym_LPAREN, ACTIONS(886), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(892), 1, - anon_sym_union, ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, ACTIONS(2241), 1, + sym_identifier, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(1275), 1, + STATE(1188), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1333), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1370), 1, sym_generic_type, - STATE(1661), 1, + STATE(1656), 1, sym__type, - STATE(2262), 1, + STATE(2280), 1, sym_scoped_identifier, - STATE(2314), 1, - sym_lifetime, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, + STATE(2347), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2348), 1, sym_generic_type_with_turbofish, + STATE(2392), 1, + sym_lifetime, + STATE(2404), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, @@ -79085,7 +80005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79106,71 +80026,71 @@ static const uint16_t ts_small_parse_table[] = { [14005] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_STAR, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, + ACTIONS(702), 1, anon_sym_for, - ACTIONS(700), 1, - anon_sym_impl, - ACTIONS(706), 1, - anon_sym_BANG, - ACTIONS(710), 1, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(722), 1, - anon_sym_dyn, - ACTIONS(882), 1, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(886), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(890), 1, + ACTIONS(2379), 1, + anon_sym_STAR, + ACTIONS(2383), 1, anon_sym_default, - ACTIONS(892), 1, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2387), 1, + anon_sym_impl, + ACTIONS(2389), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(2391), 1, + anon_sym_BANG, + ACTIONS(2393), 1, anon_sym_COLON_COLON, - ACTIONS(898), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(904), 1, + ACTIONS(2397), 1, + anon_sym_dyn, + ACTIONS(2403), 1, sym_metavariable, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1328), 1, + STATE(753), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(808), 1, sym_generic_type, - STATE(1627), 1, + STATE(1065), 1, sym__type, - STATE(2262), 1, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2295), 1, sym_scoped_identifier, - STATE(2314), 1, + STATE(2325), 1, sym_lifetime, - STATE(2315), 1, + STATE(2353), 1, sym_function_modifiers, - STATE(2358), 1, + STATE(2456), 1, sym_bracketed_type, - STATE(2359), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1549), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, + ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(902), 3, + ACTIONS(2401), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1091), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79182,7 +80102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(888), 17, + ACTIONS(2381), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79204,7 +80124,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2470), 17, + ACTIONS(2474), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -79222,7 +80142,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2468), 40, + ACTIONS(2472), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79267,7 +80187,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(876), 17, + ACTIONS(880), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -79285,7 +80205,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(874), 40, + ACTIONS(878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79330,7 +80250,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 17, + ACTIONS(2478), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -79348,7 +80268,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2472), 40, + ACTIONS(2476), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79393,7 +80313,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(414), 18, + ACTIONS(396), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -79412,7 +80332,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2476), 39, + ACTIONS(2480), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79456,7 +80376,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 15, + ACTIONS(1174), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -79472,7 +80392,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79512,22 +80432,22 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [14460] = 9, - ACTIONS(2480), 1, - anon_sym_LPAREN, ACTIONS(2484), 1, + anon_sym_LPAREN, + ACTIONS(2488), 1, anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(2490), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(2492), 1, anon_sym_LT2, - STATE(906), 1, - sym_parameters, - STATE(1015), 1, + STATE(851), 1, sym_type_arguments, + STATE(884), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 17, + ACTIONS(2486), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79545,7 +80465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2478), 26, + ACTIONS(2482), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -79573,20 +80493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14530] = 8, - ACTIONS(2480), 1, + ACTIONS(2484), 1, anon_sym_LPAREN, - ACTIONS(2486), 1, + ACTIONS(2490), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(2492), 1, anon_sym_LT2, - STATE(906), 1, - sym_parameters, - STATE(1015), 1, + STATE(851), 1, sym_type_arguments, + STATE(884), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2492), 17, + ACTIONS(2496), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79604,7 +80524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2490), 26, + ACTIONS(2494), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -79632,20 +80552,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14597] = 8, - ACTIONS(2480), 1, + ACTIONS(2484), 1, anon_sym_LPAREN, - ACTIONS(2486), 1, + ACTIONS(2490), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(2492), 1, anon_sym_LT2, - STATE(906), 1, - sym_parameters, - STATE(1015), 1, + STATE(851), 1, sym_type_arguments, + STATE(884), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2496), 17, + ACTIONS(2500), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79663,7 +80583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2494), 26, + ACTIONS(2498), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -79690,68 +80610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14664] = 7, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2498), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_COLON_COLON, - STATE(1054), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(556), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(554), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [14728] = 3, + [14664] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1198), 9, + ACTIONS(1872), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79761,7 +80624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1200), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79800,72 +80663,76 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14784] = 3, + [14720] = 7, + ACTIONS(2484), 1, + anon_sym_LPAREN, + ACTIONS(2492), 1, + anon_sym_LT2, + STATE(855), 1, + sym_type_arguments, + STATE(907), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1258), 9, + ACTIONS(2504), 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(2502), 26, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1260), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14840] = 7, - ACTIONS(2480), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_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, + [14784] = 7, + ACTIONS(2484), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(2492), 1, anon_sym_LT2, - STATE(1010), 1, - sym_parameters, - STATE(1016), 1, + STATE(855), 1, sym_type_arguments, + STATE(907), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 17, + ACTIONS(2508), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79883,7 +80750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2502), 26, + ACTIONS(2506), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -79910,75 +80777,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14904] = 3, + [14848] = 5, + ACTIONS(2514), 1, + anon_sym_BANG, + ACTIONS(2516), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 9, + ACTIONS(2512), 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(2510), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14908] = 5, + ACTIONS(2522), 1, + anon_sym_BANG, + ACTIONS(2524), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2520), 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(2518), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14968] = 5, + ACTIONS(2530), 1, + anon_sym_BANG, + ACTIONS(2532), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1384), 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, - [14960] = 6, - ACTIONS(2512), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2528), 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(2526), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15028] = 6, + ACTIONS(2540), 1, anon_sym_BANG, - ACTIONS(2514), 1, + ACTIONS(2542), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - ACTIONS(2508), 16, + ACTIONS(2536), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_as, @@ -79995,7 +80974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2506), 23, + ACTIONS(2534), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -80019,11 +80998,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15022] = 3, + [15090] = 7, + ACTIONS(2484), 1, + anon_sym_LPAREN, + ACTIONS(2492), 1, + anon_sym_LT2, + STATE(855), 1, + sym_type_arguments, + STATE(907), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2546), 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(2544), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1756), 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(1758), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1904), 9, + ACTIONS(1656), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80033,7 +81122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1906), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80072,15 +81161,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15078] = 5, - ACTIONS(2520), 1, + [15266] = 7, + ACTIONS(2488), 1, anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(2548), 1, + anon_sym_LBRACE, + ACTIONS(2550), 1, anon_sym_COLON_COLON, + STATE(1094), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 17, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80091,18 +81184,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(2516), 28, + ACTIONS(566), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -80111,12 +81201,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -80126,16 +81216,17 @@ 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, - [15138] = 5, - ACTIONS(2528), 1, + [15330] = 5, + ACTIONS(2556), 1, anon_sym_BANG, - ACTIONS(2530), 1, + ACTIONS(2558), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 17, + ACTIONS(2554), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80153,7 +81244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2524), 28, + ACTIONS(2552), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80182,68 +81273,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15198] = 7, - ACTIONS(2480), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LT2, - STATE(1010), 1, - sym_parameters, - STATE(1016), 1, - sym_type_arguments, + [15390] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 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(2532), 26, + ACTIONS(1836), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_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, - [15262] = 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1838), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15446] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 9, + ACTIONS(1832), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80253,7 +81340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80292,15 +81379,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15318] = 5, - ACTIONS(2540), 1, - anon_sym_BANG, - ACTIONS(2542), 1, - anon_sym_COLON_COLON, + [15502] = 5, + ACTIONS(2560), 1, + anon_sym_else, + STATE(1035), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 17, + ACTIONS(498), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80311,14 +81398,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(2536), 28, + ACTIONS(496), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80331,69 +81416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_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, - [15378] = 7, - ACTIONS(2480), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LT2, - STATE(1010), 1, - sym_parameters, - STATE(1016), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2546), 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(2544), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -80403,18 +81431,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, - [15442] = 5, - ACTIONS(2552), 1, - anon_sym_BANG, - ACTIONS(2554), 1, - anon_sym_COLON_COLON, + [15561] = 4, + ACTIONS(2562), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 17, + ACTIONS(2556), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80423,18 +81451,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(2548), 28, + ACTIONS(2558), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -80442,13 +81467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -80458,14 +81484,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, - [15502] = 4, - ACTIONS(2556), 1, + [15618] = 4, + ACTIONS(2564), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2528), 16, + ACTIONS(2514), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -80482,7 +81509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2530), 29, + ACTIONS(2516), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80512,15 +81539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15559] = 5, - ACTIONS(2558), 1, - anon_sym_else, - STATE(1047), 1, - sym_else_clause, + [15675] = 5, + ACTIONS(2570), 1, + anon_sym_SQUOTE, + STATE(1066), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(398), 15, + ACTIONS(2568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80536,7 +81563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(396), 29, + ACTIONS(2566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80566,11 +81593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15618] = 3, + [15734] = 4, + ACTIONS(2572), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2528), 16, + ACTIONS(2522), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -80587,11 +81616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2530), 30, + ACTIONS(2524), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -80618,16 +81646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15673] = 4, + [15791] = 5, ACTIONS(2560), 1, - anon_sym_LBRACE, + anon_sym_else, + STATE(1082), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 16, + ACTIONS(490), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80641,10 +81670,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2542), 29, + ACTIONS(488), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -80652,7 +81682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -80671,13 +81700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15730] = 4, - ACTIONS(2562), 1, - anon_sym_LBRACE, + [15850] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2552), 16, + ACTIONS(2514), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -80694,10 +81721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2554), 29, + ACTIONS(2516), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -80724,17 +81752,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15787] = 5, - ACTIONS(2558), 1, - anon_sym_else, - STATE(1049), 1, - sym_else_clause, + [15905] = 4, + ACTIONS(2574), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(392), 15, + ACTIONS(2530), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80748,11 +81775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(390), 29, + ACTIONS(2532), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -80760,6 +81786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -80778,15 +81805,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15846] = 5, - ACTIONS(2568), 1, - anon_sym_SQUOTE, - STATE(1140), 1, - sym_loop_label, + [15962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1508), 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(1510), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16016] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1940), 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(1942), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16070] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1384), 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(1386), 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, + [16124] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1220), 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(1222), 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, + [16178] = 5, + ACTIONS(2578), 1, + anon_sym_LPAREN, + STATE(1098), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 15, + ACTIONS(2580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80802,9 +82033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2564), 29, + ACTIONS(2576), 28, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -80832,16 +82062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15905] = 4, - ACTIONS(2570), 1, - anon_sym_LBRACE, + [16236] = 4, + ACTIONS(2582), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2520), 16, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80855,10 +82084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2522), 29, + ACTIONS(566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -80866,7 +82096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -80885,62 +82114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15962] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1944), 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(1946), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16016] = 3, + [16292] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80948,7 +82126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80987,113 +82165,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16070] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1570), 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(1572), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16124] = 3, + [16346] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1098), 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(1100), 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, - [16178] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81101,7 +82177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81140,11 +82216,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16232] = 3, + [16400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81152,7 +82228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1226), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81191,11 +82267,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16286] = 3, + [16454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1868), 7, + ACTIONS(1236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81203,7 +82279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1870), 38, + ACTIONS(1238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81242,13 +82318,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16340] = 4, - STATE(1074), 1, - sym_arguments, + [16508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 15, + ACTIONS(2586), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81264,7 +82338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2572), 29, + ACTIONS(2584), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81276,6 +82350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -81294,11 +82369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16396] = 3, + [16562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + ACTIONS(1284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81306,7 +82381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1862), 38, + ACTIONS(1286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81345,11 +82420,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16450] = 3, + [16616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1702), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81357,7 +82432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81396,11 +82471,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16504] = 3, + [16670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81408,7 +82483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81447,11 +82522,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16558] = 3, + [16724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 7, + ACTIONS(1288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81459,7 +82534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1240), 38, + ACTIONS(1290), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81498,11 +82573,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16612] = 3, + [16778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, + ACTIONS(1300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81510,7 +82585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1212), 38, + ACTIONS(1302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81549,11 +82624,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16666] = 3, + [16832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81561,7 +82636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1108), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81600,11 +82675,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16720] = 3, + [16886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1230), 7, + ACTIONS(1316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81612,7 +82687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1232), 38, + ACTIONS(1318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81651,62 +82726,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16774] = 3, + [16940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 7, + ACTIONS(2590), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2588), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1224), 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, - [16828] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1742), 7, + ACTIONS(1504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81714,7 +82789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(1506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81753,11 +82828,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16882] = 3, + [17048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1666), 7, + ACTIONS(1578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81765,7 +82840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1668), 38, + ACTIONS(1580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81804,11 +82879,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16936] = 3, + [17102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81816,7 +82891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81855,11 +82930,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16990] = 3, + [17156] = 5, + ACTIONS(2542), 1, + anon_sym_COLON_COLON, + ACTIONS(2592), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1166), 7, + ACTIONS(2536), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2534), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17214] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81867,7 +82995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1168), 38, + ACTIONS(1592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81906,11 +83034,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17044] = 3, + [17268] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 15, + ACTIONS(848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81926,7 +83054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 30, + ACTIONS(850), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81935,10 +83063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -81957,11 +83085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17098] = 3, + [17322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1102), 7, + ACTIONS(1594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81969,7 +83097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1104), 38, + ACTIONS(1596), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82008,11 +83136,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17152] = 3, + [17376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82020,7 +83148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82059,11 +83187,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17206] = 3, + [17430] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82071,7 +83199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82110,11 +83238,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17260] = 3, + [17484] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82122,7 +83250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1244), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82161,11 +83289,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17314] = 3, + [17538] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, + ACTIONS(1668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82173,7 +83301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1220), 38, + ACTIONS(1670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82212,11 +83340,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17368] = 3, + [17592] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82224,7 +83352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82263,11 +83391,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17422] = 3, + [17646] = 5, + ACTIONS(2488), 1, + anon_sym_BANG, + ACTIONS(2594), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(568), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(566), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17704] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82275,7 +83456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1842), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82314,11 +83495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17476] = 3, + [17758] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82326,7 +83507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82365,11 +83546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17530] = 3, + [17812] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1820), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82377,7 +83558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1822), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82416,11 +83597,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17584] = 3, + [17866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 15, + ACTIONS(532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82436,7 +83617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2580), 30, + ACTIONS(530), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82448,7 +83629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -82467,113 +83647,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17638] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1190), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_else, + [17920] = 4, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1192), 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, - [17692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(2546), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2544), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1510), 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, - [17746] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17976] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(1740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82581,7 +83712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1352), 38, + ACTIONS(1742), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82620,11 +83751,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17800] = 3, + [18030] = 4, + ACTIONS(2598), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 15, + ACTIONS(2546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82640,7 +83773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 30, + ACTIONS(2544), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82652,7 +83785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -82671,62 +83803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17854] = 3, + [18086] = 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, - [17908] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1162), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82734,7 +83815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82773,14 +83854,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17962] = 4, + [18140] = 4, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2592), 15, + ACTIONS(2546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82796,10 +83876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 28, + ACTIONS(2544), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82825,11 +83906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18018] = 3, + [18196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + ACTIONS(1744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82837,7 +83918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(1746), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82876,11 +83957,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18072] = 3, + [18250] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1844), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82888,7 +83969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1846), 38, + ACTIONS(1974), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82927,114 +84008,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18126] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2596), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2594), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18180] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2592), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2588), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18236] = 3, + [18304] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1690), 7, + ACTIONS(1348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83042,7 +84020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(1350), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83081,11 +84059,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18290] = 3, + [18358] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1892), 7, + ACTIONS(1344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83093,7 +84071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1894), 38, + ACTIONS(1346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83132,11 +84110,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18344] = 3, + [18412] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83144,7 +84122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1882), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83183,11 +84161,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18398] = 3, + [18466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83195,7 +84173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1264), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83234,11 +84212,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18452] = 3, + [18520] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83246,7 +84224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83285,11 +84263,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18506] = 3, + [18574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83297,7 +84275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1998), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83336,11 +84314,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18560] = 3, + [18628] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(1988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83348,7 +84326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1990), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83387,11 +84365,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18614] = 3, + [18682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83399,7 +84377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1978), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83438,11 +84416,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18668] = 3, + [18736] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83450,7 +84428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1970), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83489,11 +84467,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18722] = 3, + [18790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83501,7 +84479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1962), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83540,11 +84518,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18776] = 3, + [18844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83552,7 +84530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1954), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83591,11 +84569,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18830] = 3, + [18898] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 7, + ACTIONS(554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83603,7 +84581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83642,11 +84620,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18884] = 3, + [18952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83654,7 +84632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1228), 38, + ACTIONS(1950), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83693,11 +84671,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18938] = 3, + [19006] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83705,7 +84683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83744,11 +84722,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18992] = 3, + [19060] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83756,7 +84734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83795,11 +84773,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19046] = 3, + [19114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 7, + ACTIONS(540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83807,7 +84785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1336), 38, + ACTIONS(542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83846,11 +84824,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19100] = 3, + [19168] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83858,7 +84836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83897,11 +84875,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19154] = 3, + [19222] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, + ACTIONS(586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83909,7 +84887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1252), 38, + ACTIONS(588), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83948,11 +84926,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19208] = 3, + [19276] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83960,7 +84938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1256), 38, + ACTIONS(604), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83999,11 +84977,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19262] = 3, + [19330] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84011,7 +84989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(1986), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84050,13 +85028,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19316] = 4, - ACTIONS(2604), 1, - anon_sym_DASH_GT, + [19384] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 15, + ACTIONS(2604), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84072,11 +85051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2600), 29, + ACTIONS(2602), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84102,11 +85080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19372] = 3, + [19440] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84114,7 +85092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84153,11 +85131,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19426] = 3, + [19494] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + ACTIONS(648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84165,7 +85143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1426), 38, + ACTIONS(650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84204,11 +85182,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19480] = 3, + [19548] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1428), 7, + ACTIONS(590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84216,7 +85194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1430), 38, + ACTIONS(592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84255,11 +85233,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19534] = 3, + [19602] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + ACTIONS(2004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84267,7 +85245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1434), 38, + ACTIONS(2006), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84306,11 +85284,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19588] = 3, + [19656] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1270), 7, + ACTIONS(2000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84318,7 +85296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1272), 38, + ACTIONS(2002), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84357,11 +85335,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19642] = 3, + [19710] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1436), 7, + ACTIONS(1992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84369,7 +85347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1994), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84408,62 +85386,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19696] = 3, + [19764] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1440), 7, + ACTIONS(542), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(540), 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(1442), 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, - [19750] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [19818] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84471,7 +85449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1966), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84510,11 +85488,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19804] = 3, + [19872] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(1780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84522,7 +85500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1782), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84561,11 +85539,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19858] = 3, + [19926] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84573,7 +85551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84612,11 +85590,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19912] = 3, + [19980] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84624,7 +85602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84663,11 +85641,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19966] = 3, + [20034] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84675,7 +85653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84714,11 +85692,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20020] = 3, + [20088] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84726,7 +85704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1878), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84765,11 +85743,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20074] = 3, + [20142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84777,7 +85755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1718), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84816,11 +85794,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20128] = 3, + [20196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84828,7 +85806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84867,11 +85845,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20182] = 3, + [20250] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84879,7 +85857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84918,11 +85896,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20236] = 3, + [20304] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(2610), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2608), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20358] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84930,7 +85959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84969,62 +85998,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20290] = 3, + [20412] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(2614), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2612), 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_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, + [20466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2618), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2616), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1530), 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, - [20344] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20520] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85032,7 +86112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85071,11 +86151,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20398] = 3, + [20574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1988), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85083,7 +86163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1990), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85122,11 +86202,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20452] = 3, + [20628] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85134,7 +86214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85173,11 +86253,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20506] = 3, + [20682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(2622), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2620), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20736] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85185,7 +86316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85224,11 +86355,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20560] = 3, + [20790] = 4, + ACTIONS(2628), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(2626), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2624), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20846] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85236,7 +86419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85275,11 +86458,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20614] = 3, + [20900] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85287,7 +86470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85326,11 +86509,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20668] = 3, + [20954] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85338,7 +86521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85377,11 +86560,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20722] = 3, + [21008] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85389,7 +86572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85428,11 +86611,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20776] = 3, + [21062] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85440,7 +86623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85479,11 +86662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20830] = 3, + [21116] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 7, + ACTIONS(1618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85491,7 +86674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1304), 38, + ACTIONS(1620), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85530,11 +86713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20884] = 3, + [21170] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1642), 7, + ACTIONS(1562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85542,7 +86725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1644), 38, + ACTIONS(1564), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85581,62 +86764,115 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20938] = 3, + [21224] = 4, + ACTIONS(2634), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(2632), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2630), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21280] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2636), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1308), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20992] = 3, + ACTIONS(2606), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2602), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21336] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1646), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85644,7 +86880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1648), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85683,11 +86919,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21046] = 3, + [21390] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1658), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85695,7 +86931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1660), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85734,11 +86970,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21100] = 3, + [21444] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1686), 7, + ACTIONS(1460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85746,7 +86982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(1462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85785,11 +87021,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21154] = 3, + [21498] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1722), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85797,7 +87033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1724), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85836,62 +87072,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21208] = 3, + [21552] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2606), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21262] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1734), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85899,7 +87084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85938,11 +87123,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21316] = 3, + [21606] = 4, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1754), 7, + ACTIONS(2508), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2506), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85950,7 +87187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(1442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85989,62 +87226,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21370] = 3, + [21716] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2610), 30, + ACTIONS(1752), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21424] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1754), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86052,7 +87289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86091,11 +87328,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21478] = 3, + [21824] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1776), 7, + ACTIONS(1412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86103,7 +87340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(1414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86142,11 +87379,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21532] = 3, + [21878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1780), 7, + ACTIONS(1748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86154,7 +87391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1782), 38, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86193,11 +87430,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21586] = 3, + [21932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1784), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86205,7 +87442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1786), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86244,11 +87481,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21640] = 3, + [21986] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86256,7 +87493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86295,11 +87532,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21694] = 3, + [22040] = 4, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(2504), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86315,7 +87554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 30, + ACTIONS(2502), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86327,7 +87566,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86346,11 +87584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21748] = 3, + [22096] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1828), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86358,7 +87596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86397,11 +87635,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21802] = 3, + [22150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86409,7 +87647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86448,11 +87686,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21856] = 3, + [22204] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1832), 7, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86460,7 +87698,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1834), 38, + ACTIONS(1144), 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, + [22258] = 4, + ACTIONS(2642), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2640), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2638), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1170), 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(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86499,11 +87840,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21910] = 3, + [22368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1836), 7, + ACTIONS(2646), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2644), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22422] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86511,7 +87903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1838), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86550,11 +87942,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21964] = 3, + [22476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1090), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86562,7 +87954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1092), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86601,11 +87993,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22018] = 3, + [22530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86613,7 +88005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86652,11 +88044,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22072] = 3, + [22584] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1848), 7, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86664,7 +88056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1850), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86703,11 +88095,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22126] = 3, + [22638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + ACTIONS(1626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86715,7 +88107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1628), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86754,62 +88146,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22180] = 3, + [22692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2618), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22234] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1864), 7, + ACTIONS(1388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86817,7 +88158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1866), 38, + ACTIONS(1390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86856,11 +88197,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22288] = 3, + [22746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1880), 7, + ACTIONS(1484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86868,7 +88209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1882), 38, + ACTIONS(1486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86907,11 +88248,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22342] = 3, + [22800] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1654), 7, + ACTIONS(1380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86919,7 +88260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1656), 38, + ACTIONS(1382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86958,11 +88299,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22396] = 3, + [22854] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1694), 7, + ACTIONS(1492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86970,7 +88311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(1494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87009,11 +88350,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22450] = 3, + [22908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + ACTIONS(2650), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2648), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87021,7 +88413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(1234), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87060,11 +88452,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22504] = 3, + [23016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1714), 7, + ACTIONS(1512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87072,7 +88464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(1514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87111,11 +88503,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22558] = 3, + [23070] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, + ACTIONS(1468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87123,7 +88515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1774), 38, + ACTIONS(1470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87162,11 +88554,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22612] = 3, + [23124] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1924), 7, + ACTIONS(1368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87174,7 +88566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(1370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87213,11 +88605,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22666] = 3, + [23178] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + ACTIONS(1296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87225,7 +88617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87264,11 +88656,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22720] = 3, + [23232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 7, + ACTIONS(1364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87276,7 +88668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87315,11 +88707,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22774] = 3, + [23286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(1542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87327,7 +88719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87366,11 +88758,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22828] = 3, + [23340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1960), 7, + ACTIONS(1634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87378,7 +88770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1962), 38, + ACTIONS(1636), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87417,11 +88809,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22882] = 3, + [23394] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1964), 7, + ACTIONS(1340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87429,7 +88821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1966), 38, + ACTIONS(1342), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87468,11 +88860,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22936] = 3, + [23448] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1134), 7, + ACTIONS(1408), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87480,7 +88872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(1410), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87519,13 +88911,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22990] = 4, - ACTIONS(2622), 1, - anon_sym_COLON_COLON, + [23502] = 4, + ACTIONS(2656), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + ACTIONS(2654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87541,7 +88933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2502), 29, + ACTIONS(2652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87571,11 +88963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23046] = 3, + [23558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1992), 7, + ACTIONS(1528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87583,7 +88975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1994), 38, + ACTIONS(1530), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87622,11 +89014,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23100] = 3, + [23612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(1396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87634,7 +89026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87673,11 +89065,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23154] = 3, + [23666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2000), 7, + ACTIONS(1546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87685,7 +89077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2002), 38, + ACTIONS(1548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87724,11 +89116,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23208] = 3, + [23720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 7, + ACTIONS(1328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87736,7 +89128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1998), 38, + ACTIONS(1330), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87775,11 +89167,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23262] = 3, + [23774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1980), 7, + ACTIONS(1324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87787,7 +89179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1982), 38, + ACTIONS(1326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87826,11 +89218,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23316] = 3, + [23828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + ACTIONS(1276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87838,7 +89230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1278), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87877,11 +89269,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23370] = 3, + [23882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + ACTIONS(1550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87889,7 +89281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1818), 38, + ACTIONS(1552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87928,11 +89320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23424] = 3, + [23936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + ACTIONS(1574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87940,7 +89332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87979,11 +89371,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23478] = 3, + [23990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + ACTIONS(1280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87991,7 +89383,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1802), 38, + 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, + [24044] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1264), 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(1266), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88030,11 +89473,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23532] = 3, + [24098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1730), 7, + ACTIONS(1252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88042,7 +89485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(1254), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88081,11 +89524,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23586] = 3, + [24152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1698), 7, + ACTIONS(1166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88093,7 +89536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(1168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88132,11 +89575,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23640] = 3, + [24206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1674), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88144,7 +89587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1676), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88183,11 +89626,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23694] = 3, + [24260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1670), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88195,7 +89638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88234,63 +89677,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23748] = 4, - ACTIONS(2628), 1, - anon_sym_DASH_GT, + [24314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2624), 29, + ACTIONS(1138), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23804] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1140), 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, + [24368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1662), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88298,7 +89740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88337,11 +89779,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23858] = 3, + [24422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88349,7 +89791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1588), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88388,11 +89830,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23912] = 3, + [24476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(1272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88400,7 +89842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88439,11 +89881,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23966] = 3, + [24530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88451,7 +89893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88490,11 +89932,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24020] = 3, + [24584] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1952), 7, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88502,7 +89944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1954), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88541,11 +89983,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24074] = 3, + [24638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88553,7 +89995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88592,62 +90034,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24128] = 3, + [24692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2630), 30, + ACTIONS(1244), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24182] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1246), 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, + [24746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1956), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88655,7 +90097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1958), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88694,11 +90136,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24236] = 3, + [24800] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 7, + ACTIONS(2660), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2658), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24854] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88706,7 +90199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1216), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88745,11 +90238,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24290] = 3, + [24908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1928), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88757,7 +90250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88796,11 +90289,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24344] = 3, + [24962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88808,7 +90301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1922), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88847,11 +90340,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24398] = 3, + [25016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1976), 7, + ACTIONS(1622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88859,7 +90352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1978), 38, + ACTIONS(1624), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88898,11 +90391,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24452] = 3, + [25070] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1900), 7, + ACTIONS(1428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88910,7 +90403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(1430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88949,11 +90442,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24506] = 3, + [25124] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 7, + ACTIONS(1638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88961,7 +90454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1986), 38, + ACTIONS(1640), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89000,11 +90493,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24560] = 3, + [25178] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1888), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89012,7 +90505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1890), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89051,11 +90544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24614] = 3, + [25232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1872), 7, + ACTIONS(1416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89063,7 +90556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1874), 38, + ACTIONS(1418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89102,11 +90595,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24668] = 3, + [25286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89114,7 +90607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89153,11 +90646,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24722] = 3, + [25340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1840), 7, + ACTIONS(1436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89165,7 +90658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1842), 38, + ACTIONS(1438), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89204,11 +90697,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24776] = 3, + [25394] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89216,7 +90709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89255,11 +90748,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24830] = 3, + [25448] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89267,7 +90760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89306,11 +90799,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24884] = 3, + [25502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1808), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89318,7 +90811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1810), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89357,11 +90850,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24938] = 3, + [25556] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1796), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89369,7 +90862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1798), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89408,11 +90901,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24992] = 3, + [25610] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + ACTIONS(2664), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2662), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89420,7 +90964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1794), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89459,11 +91003,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25046] = 3, + [25718] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89471,7 +91015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89510,11 +91054,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25100] = 3, + [25772] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1750), 7, + ACTIONS(1186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89522,7 +91066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(1188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89561,11 +91105,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25154] = 3, + [25826] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1762), 7, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89573,7 +91117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89612,11 +91156,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25208] = 3, + [25880] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1746), 7, + ACTIONS(1472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89624,7 +91168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(1474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89663,11 +91207,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25262] = 3, + [25934] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1710), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89675,7 +91219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89714,11 +91258,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25316] = 3, + [25988] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1706), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89726,7 +91270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89765,11 +91309,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25370] = 3, + [26042] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1738), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89777,7 +91321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89816,11 +91360,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25424] = 3, + [26096] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1682), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89828,7 +91372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89867,11 +91411,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25478] = 3, + [26150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1718), 7, + ACTIONS(1312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89879,7 +91423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1720), 38, + ACTIONS(1314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89918,11 +91462,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25532] = 3, + [26204] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1678), 7, + ACTIONS(1488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89930,7 +91474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1680), 38, + ACTIONS(1490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89969,11 +91513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25586] = 3, + [26258] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89981,7 +91525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90020,11 +91564,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25640] = 3, + [26312] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(1372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90032,7 +91576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90071,11 +91615,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25694] = 3, + [26366] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(1500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90083,7 +91627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90122,11 +91666,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25748] = 3, + [26420] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90134,7 +91678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90173,11 +91717,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25802] = 3, + [26474] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(1520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90185,7 +91729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90224,11 +91768,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25856] = 3, + [26528] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(1420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90236,7 +91780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(1422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90275,11 +91819,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25910] = 3, + [26582] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(1524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90287,7 +91831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(1526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90326,11 +91870,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25964] = 3, + [26636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90338,7 +91882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1938), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90377,11 +91921,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26018] = 3, + [26690] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90389,7 +91933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1338), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90428,11 +91972,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26072] = 3, + [26744] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90440,7 +91984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1426), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90479,11 +92023,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26126] = 3, + [26798] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(1558), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90491,7 +92035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1560), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90530,11 +92074,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26180] = 3, + [26852] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(1566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90542,7 +92086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90581,11 +92125,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26234] = 3, + [26906] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1570), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90593,7 +92137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1572), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90632,7 +92176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26288] = 3, + [26960] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -90683,11 +92227,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26342] = 3, + [27014] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90695,7 +92239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90734,11 +92278,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26396] = 3, + [27068] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90746,7 +92290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90785,11 +92329,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26450] = 3, + [27122] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(1292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90797,7 +92341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1294), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90836,11 +92380,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26504] = 3, + [27176] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90848,7 +92392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90887,11 +92431,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26558] = 3, + [27230] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90899,7 +92443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90938,11 +92482,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26612] = 3, + [27284] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90950,7 +92494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90989,11 +92533,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26666] = 3, + [27338] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(1598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91001,7 +92545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1328), 38, + ACTIONS(1600), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91040,11 +92584,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26720] = 3, + [27392] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(540), 7, + ACTIONS(1772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91052,7 +92596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(542), 38, + ACTIONS(1774), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91091,11 +92635,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26774] = 3, + [27446] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91103,7 +92647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(586), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91142,11 +92686,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26828] = 3, + [27500] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91154,7 +92698,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1854), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_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, + [27554] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1496), 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(1498), 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, + [27608] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1860), 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(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91193,11 +92839,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26882] = 3, + [27662] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91205,7 +92851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1188), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91244,11 +92890,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26936] = 3, + [27716] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(628), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91256,7 +92902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(630), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91295,11 +92941,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26990] = 3, + [27770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91307,7 +92953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1116), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91346,13 +92992,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27044] = 4, - ACTIONS(2638), 1, + [27824] = 4, + ACTIONS(2670), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(2668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91368,7 +93014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(2666), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91398,11 +93044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27100] = 3, + [27880] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(608), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91410,7 +93056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(610), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91449,13 +93095,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27154] = 4, - ACTIONS(2644), 1, + [27934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(556), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(554), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [27988] = 4, + ACTIONS(2676), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 15, + ACTIONS(2674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91471,7 +93168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2640), 29, + ACTIONS(2672), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91501,11 +93198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27210] = 3, + [28044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(404), 7, + ACTIONS(1630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91513,7 +93210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(406), 38, + ACTIONS(1632), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91552,11 +93249,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27264] = 3, + [28098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(512), 7, + ACTIONS(1956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91564,7 +93261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(514), 38, + ACTIONS(1958), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91603,11 +93300,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27318] = 3, + [28152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(400), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91615,7 +93312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(402), 38, + ACTIONS(1982), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91654,11 +93351,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27372] = 3, + [28206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91666,7 +93363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91705,11 +93402,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27426] = 3, + [28260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + ACTIONS(1376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91717,7 +93414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91756,11 +93453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27480] = 3, + [28314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(1356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91768,7 +93465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(1358), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91807,11 +93504,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27534] = 3, + [28368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + ACTIONS(1352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91819,7 +93516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91858,217 +93555,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27588] = 4, - ACTIONS(2650), 1, - anon_sym_DASH_GT, + [28422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2646), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27644] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(406), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(404), 30, + ACTIONS(1796), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [27698] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2526), 17, - 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2524), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [27752] = 4, - ACTIONS(2652), 1, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1798), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2532), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27808] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92076,7 +93618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1276), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92115,116 +93657,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27862] = 5, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2654), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(556), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(554), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27920] = 4, - ACTIONS(2656), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2532), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27976] = 3, + [28530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92232,7 +93669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(1270), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92271,114 +93708,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28030] = 3, + [28584] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2658), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28084] = 4, - ACTIONS(2622), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2532), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28140] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1582), 7, + ACTIONS(1554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92386,7 +93720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(1556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92425,11 +93759,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28194] = 3, + [28638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + ACTIONS(1256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92437,7 +93771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92476,11 +93810,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28248] = 3, + [28692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1206), 7, + ACTIONS(1532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92488,7 +93822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1208), 38, + ACTIONS(1534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92527,11 +93861,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28302] = 3, + [28746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92539,7 +93873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92578,11 +93912,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28356] = 3, + [28800] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1202), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92590,7 +93924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1204), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92629,62 +93963,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28410] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(844), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(846), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28464] = 3, + [28854] = 4, + ACTIONS(2682), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(402), 15, + ACTIONS(2680), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92700,7 +93985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(400), 30, + ACTIONS(2678), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92730,63 +94015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [28518] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1876), 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(1878), 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, - [28572] = 3, + [28910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92794,7 +94027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92833,11 +94066,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28626] = 3, + [28964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1972), 7, + ACTIONS(1248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92845,7 +94078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1974), 38, + ACTIONS(1250), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92884,11 +94117,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28680] = 3, + [29018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1968), 7, + ACTIONS(1332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92896,7 +94129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1970), 38, + ACTIONS(1334), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92935,11 +94168,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28734] = 3, + [29072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1884), 7, + ACTIONS(1240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92947,7 +94180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1886), 38, + ACTIONS(1242), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92986,11 +94219,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28788] = 3, + [29126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1726), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92998,7 +94231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93037,11 +94270,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28842] = 3, + [29180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1650), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93049,7 +94282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1652), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93088,64 +94321,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28896] = 5, - ACTIONS(2514), 1, - anon_sym_COLON_COLON, - ACTIONS(2662), 1, - anon_sym_BANG, + [29234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2506), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28954] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(1720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93153,7 +94333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93192,11 +94372,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29008] = 3, + [29288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(1320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93204,7 +94384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93243,11 +94423,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29062] = 3, + [29342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93255,7 +94435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1230), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93294,64 +94474,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29116] = 3, + [29396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1094), 7, + ACTIONS(2686), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2684), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1096), 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, - [29170] = 4, - ACTIONS(2664), 1, - anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(2690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93367,7 +94545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 29, + ACTIONS(2688), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93379,6 +94557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -93397,11 +94576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29226] = 3, + [29504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 7, + ACTIONS(1764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93409,7 +94588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1564), 38, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93448,11 +94627,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29280] = 3, + [29558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93460,7 +94639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1560), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93499,11 +94678,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29334] = 3, + [29612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1540), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93511,7 +94690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1542), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93550,13 +94729,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29388] = 4, - ACTIONS(2670), 1, - anon_sym_DASH_GT, + [29666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, + ACTIONS(1178), 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(1180), 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, + [29720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2512), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93567,12 +94795,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(2666), 29, + ACTIONS(2510), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93585,12 +94815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -93600,13 +94830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29444] = 3, + [29774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93614,7 +94843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93653,11 +94882,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29498] = 3, + [29828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93665,7 +94894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93704,62 +94933,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29552] = 3, + [29882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(514), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(512), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [29606] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1194), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93767,7 +94945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1196), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93806,62 +94984,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29660] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2674), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2672), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29714] = 3, + [29936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 15, + ACTIONS(580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93877,7 +95004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2676), 30, + ACTIONS(578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93889,7 +95016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -93908,64 +95034,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29768] = 3, + [29989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(2606), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2602), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30042] = 4, + ACTIONS(2542), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1546), 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, - [29822] = 4, - ACTIONS(2684), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2682), 15, + ACTIONS(2536), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93981,11 +95106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2680), 29, + ACTIONS(2534), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -94011,13 +95135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29878] = 4, - ACTIONS(2622), 1, - anon_sym_COLON_COLON, + [30097] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + ACTIONS(2694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94033,7 +95155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2692), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94063,24 +95185,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29934] = 3, + [30150] = 4, + ACTIONS(2700), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 12, - anon_sym_SEMI, + ACTIONS(2698), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2686), 32, + ACTIONS(2696), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94098,26 +95224,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [29987] = 3, + [30205] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, + ACTIONS(2704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94133,7 +95256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2690), 29, + ACTIONS(2702), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94163,11 +95286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30040] = 3, + [30258] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 15, + ACTIONS(2708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94183,7 +95306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2694), 29, + ACTIONS(2706), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94213,11 +95336,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30093] = 3, + [30311] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2700), 15, + ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94233,7 +95356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 29, + ACTIONS(644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94263,13 +95386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30146] = 4, - ACTIONS(2514), 1, - anon_sym_COLON_COLON, + [30364] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, + ACTIONS(2712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94285,10 +95406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2506), 28, + ACTIONS(2710), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -94314,11 +95436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30201] = 3, + [30417] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(542), 15, + ACTIONS(642), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94334,7 +95456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(540), 29, + ACTIONS(640), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94364,118 +95486,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30254] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2712), 1, - anon_sym_EQ, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + [30470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2716), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2702), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30339] = 15, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, anon_sym_AMP, - ACTIONS(2720), 1, anon_sym_DOT_DOT, - ACTIONS(2726), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2728), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - STATE(1074), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2738), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2736), 24, + anon_sym_DOT, + ACTIONS(2714), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94492,61 +95536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30416] = 3, + [30523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 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(2740), 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, - [30469] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(656), 15, + ACTIONS(2720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94562,7 +95556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(654), 29, + ACTIONS(2718), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94592,65 +95586,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30522] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + [30576] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2724), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2744), 6, + anon_sym_DOT, + ACTIONS(2722), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2752), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94661,11 +95636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30613] = 3, + [30629] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, + ACTIONS(2305), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94681,7 +95656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2754), 29, + ACTIONS(2307), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94711,62 +95686,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30666] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, + [30682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2728), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2720), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2728), 1, anon_sym_CARET, - ACTIONS(2734), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2760), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + ACTIONS(2726), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2317), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2758), 18, + anon_sym_DOT, + ACTIONS(2319), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94777,11 +95786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30751] = 3, + [30788] = 4, + ACTIONS(2730), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94797,11 +95808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2754), 29, + ACTIONS(566), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -94827,11 +95837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30804] = 3, + [30843] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2764), 15, + ACTIONS(604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94847,7 +95857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2762), 29, + ACTIONS(602), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94877,30 +95887,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30857] = 9, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2734), 1, - anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + [30896] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2738), 13, + ACTIONS(2734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -94908,15 +95906,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2736), 24, + anon_sym_DOT, + ACTIONS(2732), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94933,47 +95937,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30922] = 10, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2734), 1, - anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + [30949] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2710), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2738), 10, + ACTIONS(2734), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2736), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2732), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94990,11 +95987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30989] = 3, + [31002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2768), 15, + ACTIONS(2738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95010,7 +96007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2766), 29, + ACTIONS(2736), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95040,11 +96037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31042] = 3, + [31055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 15, + ACTIONS(2742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95060,7 +96057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2770), 29, + ACTIONS(2740), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95090,11 +96087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31095] = 3, + [31108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 15, + ACTIONS(2746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95110,7 +96107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2774), 29, + ACTIONS(2744), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95140,11 +96137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31148] = 3, + [31161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(2750), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95160,7 +96157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 29, + ACTIONS(2748), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95190,11 +96187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31201] = 3, + [31214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2780), 15, + ACTIONS(2754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95210,7 +96207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2778), 29, + ACTIONS(2752), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95240,11 +96237,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31254] = 3, + [31267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 15, + ACTIONS(2758), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95260,7 +96257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2782), 29, + ACTIONS(2756), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95290,11 +96287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31307] = 3, + [31320] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2293), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95310,7 +96307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2295), 29, + ACTIONS(636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95340,11 +96337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31360] = 3, + [31373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2788), 15, + ACTIONS(2580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95360,7 +96357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2786), 29, + ACTIONS(2576), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95390,11 +96387,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31413] = 3, + [31426] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 15, + ACTIONS(2762), 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(2760), 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, + [31479] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95410,7 +96457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2790), 29, + ACTIONS(2764), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95440,11 +96487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31466] = 3, + [31532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2796), 15, + ACTIONS(2770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95460,7 +96507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2794), 29, + ACTIONS(2768), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95490,11 +96537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31519] = 3, + [31585] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 15, + ACTIONS(2774), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95510,7 +96557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(558), 29, + ACTIONS(2772), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95540,11 +96587,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31572] = 3, + [31638] = 5, + ACTIONS(2776), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 15, + STATE(1058), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2421), 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(2419), 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, + [31695] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95560,7 +96659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2798), 29, + ACTIONS(2779), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95590,11 +96689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31625] = 3, + [31748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(574), 15, + ACTIONS(630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95610,7 +96709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(572), 29, + ACTIONS(628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95640,11 +96739,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31678] = 3, + [31801] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 15, + ACTIONS(2785), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95660,7 +96759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2802), 29, + ACTIONS(2783), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95690,11 +96789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31731] = 3, + [31854] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 15, + ACTIONS(2789), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95710,7 +96809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2806), 29, + ACTIONS(2787), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95740,11 +96839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31784] = 3, + [31907] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 15, + ACTIONS(584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95760,7 +96859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2810), 29, + ACTIONS(582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95790,11 +96889,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31837] = 3, + [31960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2793), 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(2791), 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, + [32013] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(644), 15, + ACTIONS(2797), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95810,7 +96959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(642), 29, + ACTIONS(2795), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95840,11 +96989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31890] = 3, + [32066] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2816), 15, + ACTIONS(2801), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95860,7 +97009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2814), 29, + ACTIONS(2799), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95890,11 +97039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31943] = 3, + [32119] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2820), 15, + ACTIONS(2805), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95910,7 +97059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2818), 29, + ACTIONS(2803), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95940,28 +97089,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31996] = 4, - ACTIONS(2826), 1, - anon_sym_RBRACE, + [32172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(2809), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2822), 29, + ACTIONS(2807), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95979,23 +97124,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [32051] = 3, + [32225] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + ACTIONS(2813), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96011,7 +97159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2811), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96041,11 +97189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32104] = 3, + [32278] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, + ACTIONS(2313), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96061,7 +97209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2828), 29, + ACTIONS(2315), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96091,11 +97239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32157] = 3, + [32331] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(518), 15, + ACTIONS(592), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96111,7 +97259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(516), 29, + ACTIONS(590), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96141,11 +97289,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32210] = 3, + [32384] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 15, + ACTIONS(2817), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96161,7 +97309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2832), 29, + ACTIONS(2815), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96191,130 +97339,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32263] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2836), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2842), 1, - anon_sym_STAR, - ACTIONS(2848), 1, - anon_sym_for, - ACTIONS(2850), 1, - anon_sym_AMP, - ACTIONS(2852), 1, - sym_metavariable, - STATE(1835), 1, - sym_scoped_type_identifier, - STATE(1897), 1, - sym_where_predicate, - STATE(1979), 1, - sym_generic_type, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2539), 1, - sym_scoped_identifier, + [32437] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2838), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2846), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - STATE(2292), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2844), 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, - [32352] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(674), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2720), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2728), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2856), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2854), 18, + anon_sym_DOT, + ACTIONS(672), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96325,11 +97389,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32437] = 3, + [32490] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(2821), 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(2819), 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, + [32543] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2825), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96345,7 +97459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(2823), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96375,11 +97489,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32490] = 3, + [32596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(600), 15, + ACTIONS(2829), 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(2827), 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, + [32649] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2831), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_LPAREN, + ACTIONS(2837), 1, + anon_sym_STAR, + ACTIONS(2843), 1, + anon_sym_for, + ACTIONS(2845), 1, + anon_sym_AMP, + ACTIONS(2847), 1, + sym_metavariable, + STATE(1848), 1, + sym_scoped_type_identifier, + STATE(1927), 1, + sym_generic_type, + STATE(2052), 1, + sym_where_predicate, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2497), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2833), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2841), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2263), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2839), 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, + [32738] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2851), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96395,7 +97627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(598), 29, + ACTIONS(2849), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96425,75 +97657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32543] = 17, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2738), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + [32791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2736), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32624] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2860), 15, + ACTIONS(2855), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96509,7 +97677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2858), 29, + ACTIONS(2853), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96539,11 +97707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32677] = 3, + [32844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2864), 15, + ACTIONS(2859), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96559,7 +97727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2862), 29, + ACTIONS(2857), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96589,76 +97757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32730] = 18, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2738), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + [32897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2736), 19, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32813] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2868), 15, + ACTIONS(2863), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96674,7 +97777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2866), 29, + ACTIONS(2861), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96704,11 +97807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32866] = 3, + [32950] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 15, + ACTIONS(608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96724,7 +97827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(608), 29, + ACTIONS(606), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96754,11 +97857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32919] = 3, + [33003] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2872), 15, + ACTIONS(2867), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96774,7 +97877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2870), 29, + ACTIONS(2865), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96804,11 +97907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32972] = 3, + [33056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 15, + ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96824,7 +97927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2874), 29, + ACTIONS(660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96854,11 +97957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33025] = 3, + [33109] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2305), 15, + ACTIONS(312), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96874,7 +97977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2307), 29, + ACTIONS(310), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96904,11 +98007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33078] = 3, + [33162] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 15, + ACTIONS(2871), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96924,7 +98027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2878), 29, + ACTIONS(2869), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96954,66 +98057,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33131] = 6, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, + [33215] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(334), 14, - 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, - anon_sym_DOT, - ACTIONS(332), 26, + ACTIONS(2875), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33190] = 4, - ACTIONS(2882), 1, + 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(2873), 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, + [33268] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(2295), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97029,10 +98127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 28, + ACTIONS(2297), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -97058,11 +98157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33245] = 3, + [33321] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2886), 15, + ACTIONS(654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97078,7 +98177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2884), 29, + ACTIONS(652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97108,87 +98207,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33298] = 14, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - STATE(1074), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2738), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2736), 24, - anon_sym_SEMI, - anon_sym_RPAREN, + [33374] = 4, + ACTIONS(2881), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33373] = 5, - ACTIONS(2888), 1, - anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1079), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2377), 9, + ACTIONS(2879), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2375), 32, + ACTIONS(2877), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97206,26 +98246,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [33430] = 3, + [33429] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2893), 15, + ACTIONS(2546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97241,7 +98278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2891), 29, + ACTIONS(2544), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97271,11 +98308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33483] = 3, + [33482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2897), 15, + ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97291,7 +98328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2895), 29, + ACTIONS(648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97321,50 +98358,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33536] = 13, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2734), 1, - anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + [33535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2885), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2710), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2738), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2736), 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2883), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -97381,30 +98408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33609] = 9, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2734), 1, - anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + [33588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 13, + ACTIONS(2889), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -97412,15 +98427,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 24, + anon_sym_DOT, + ACTIONS(2887), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -97437,48 +98458,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33674] = 11, - ACTIONS(2704), 1, + [33641] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2831), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2734), 1, - anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(2837), 1, + anon_sym_STAR, + ACTIONS(2843), 1, + anon_sym_for, + ACTIONS(2845), 1, + anon_sym_AMP, + ACTIONS(2847), 1, + sym_metavariable, + STATE(1848), 1, + sym_scoped_type_identifier, + STATE(1927), 1, + sym_generic_type, + STATE(2052), 1, + sym_where_predicate, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2497), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2841), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2891), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2263), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2839), 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, + [33730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(670), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2710), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2738), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2736), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(668), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -97495,11 +98576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33743] = 3, + [33783] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2905), 15, + ACTIONS(2895), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97515,7 +98596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2903), 29, + ACTIONS(2893), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97545,11 +98626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33796] = 3, + [33836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, + ACTIONS(2899), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97565,7 +98646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(628), 29, + ACTIONS(2897), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97595,11 +98676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33849] = 3, + [33889] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2909), 15, + ACTIONS(2903), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97615,7 +98696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2907), 29, + ACTIONS(2901), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97645,11 +98726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33902] = 3, + [33942] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 15, + ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97665,7 +98746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2911), 29, + ACTIONS(664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97695,62 +98776,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33955] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2917), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + [33995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2907), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2915), 18, + anon_sym_DOT, + ACTIONS(2905), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97761,11 +98826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34040] = 3, + [34048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2921), 15, + ACTIONS(2911), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97781,7 +98846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2919), 29, + ACTIONS(2909), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97811,11 +98876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34093] = 3, + [34101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 15, + ACTIONS(2915), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97831,7 +98896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2923), 29, + ACTIONS(2913), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97861,61 +98926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34146] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2929), 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(2927), 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, - [34199] = 3, + [34154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(2919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97931,7 +98946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 29, + ACTIONS(2917), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97961,11 +98976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34252] = 3, + [34207] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2933), 15, + ACTIONS(2923), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97981,7 +98996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2931), 29, + ACTIONS(2921), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98011,11 +99026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34305] = 3, + [34260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(546), 15, + ACTIONS(658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98031,7 +99046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(544), 29, + ACTIONS(656), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98061,11 +99076,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34358] = 3, + [34313] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2937), 15, + ACTIONS(2508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98081,7 +99096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2935), 29, + ACTIONS(2506), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98111,79 +99126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34411] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2836), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2842), 1, - anon_sym_STAR, - ACTIONS(2848), 1, - anon_sym_for, - ACTIONS(2850), 1, - anon_sym_AMP, - ACTIONS(2852), 1, - sym_metavariable, - STATE(1835), 1, - sym_scoped_type_identifier, - STATE(1897), 1, - sym_where_predicate, - STATE(1979), 1, - sym_generic_type, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2539), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2846), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2939), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - STATE(2292), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2844), 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, - [34500] = 3, + [34366] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2943), 15, + ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98199,7 +99146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2941), 29, + ACTIONS(574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98229,11 +99176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34553] = 3, + [34419] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(522), 15, + ACTIONS(2927), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98249,7 +99196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(520), 29, + ACTIONS(2925), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98279,11 +99226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34606] = 3, + [34472] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 15, + ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98299,7 +99246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 29, + ACTIONS(676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98329,11 +99276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34659] = 3, + [34525] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + ACTIONS(2931), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98349,7 +99296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2502), 29, + ACTIONS(2929), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98379,11 +99326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34712] = 3, + [34578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2947), 15, + ACTIONS(2935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98399,7 +99346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2945), 29, + ACTIONS(2933), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98429,11 +99376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34765] = 3, + [34631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2951), 15, + ACTIONS(588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98449,7 +99396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2949), 29, + ACTIONS(586), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98479,11 +99426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34818] = 3, + [34684] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2955), 15, + ACTIONS(600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98499,7 +99446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2953), 29, + ACTIONS(598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98529,61 +99476,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34871] = 3, + [34737] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2959), 12, + ACTIONS(596), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(594), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34790] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2939), 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(2957), 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, - [34924] = 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(2937), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34843] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2301), 15, + ACTIONS(2943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98599,7 +99596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2303), 29, + ACTIONS(2941), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98629,62 +99626,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34977] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, + [34896] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2720), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2728), 1, anon_sym_CARET, - ACTIONS(2734), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2963), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + ACTIONS(2945), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34949] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2951), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + anon_sym_DOT, + ACTIONS(2949), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2961), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(634), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(632), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98695,11 +99776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35062] = 3, + [35055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2967), 15, + ACTIONS(2504), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98715,7 +99796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2965), 29, + ACTIONS(2502), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98745,11 +99826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35115] = 3, + [35108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2971), 15, + ACTIONS(560), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98765,7 +99846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2969), 29, + ACTIONS(558), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98795,11 +99876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35168] = 3, + [35161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(594), 15, + ACTIONS(2955), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98815,7 +99896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(592), 29, + ACTIONS(2953), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98845,11 +99926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35221] = 3, + [35214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(2959), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98865,7 +99946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 29, + ACTIONS(2957), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98895,11 +99976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35274] = 3, + [35267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2337), 15, + ACTIONS(2963), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98915,7 +99996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2339), 29, + ACTIONS(2961), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98945,46 +100026,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35327] = 3, + [35320] = 17, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2973), 1, + anon_sym_EQ, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(606), 15, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(604), 29, + ACTIONS(2991), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2965), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98995,18 +100089,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35380] = 3, + [35400] = 7, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2975), 15, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2999), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -99014,21 +100116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2973), 29, + ACTIONS(2997), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -99045,46 +100142,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35433] = 3, + [35460] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2698), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2696), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35512] = 20, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, anon_sym_PIPE, + ACTIONS(2989), 1, anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2975), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2977), 29, + ACTIONS(2991), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3001), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99095,11 +100257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35486] = 3, + [35598] = 7, + ACTIONS(2548), 1, + anon_sym_LBRACE, + ACTIONS(2550), 1, + anon_sym_COLON_COLON, + ACTIONS(3011), 1, + anon_sym_BANG, + STATE(1094), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(636), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99115,18 +100285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(634), 29, + ACTIONS(566), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99145,18 +100310,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35539] = 3, + [35658] = 7, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3015), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -99164,21 +100337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(554), 29, + ACTIONS(3013), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -99195,65 +100363,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35592] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [35718] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, + ACTIONS(2981), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(2979), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2981), 6, + ACTIONS(282), 19, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2752), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99264,40 +100426,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35683] = 3, + [35798] = 8, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2985), 15, - anon_sym_PLUS, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3019), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2983), 29, + ACTIONS(3017), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -99314,39 +100480,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35736] = 9, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [35860] = 17, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2720), 1, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2981), 1, anon_sym_DOT_DOT, - ACTIONS(2734), 1, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3023), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2989), 13, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2987), 24, + ACTIONS(2991), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3021), 19, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -99354,12 +100533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99370,18 +100543,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35801] = 3, + [35940] = 7, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(534), 15, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3019), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -99389,21 +100570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(532), 29, + ACTIONS(3017), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -99420,46 +100596,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35854] = 3, + [36000] = 17, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3027), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(616), 15, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(614), 29, + ACTIONS(2991), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3025), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99470,42 +100659,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35907] = 12, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [36080] = 17, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2720), 1, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2981), 1, anon_sym_DOT_DOT, - ACTIONS(2734), 1, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3031), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2718), 2, + ACTIONS(2975), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2979), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2738), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2736), 24, + ACTIONS(2991), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3029), 19, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -99513,12 +100712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99529,40 +100722,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35978] = 3, + [36160] = 13, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 15, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2532), 29, + ACTIONS(3019), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3017), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -99579,46 +100781,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36031] = 3, + [36232] = 20, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(562), 29, + ACTIONS(2991), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3033), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99629,24 +100847,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36084] = 3, + [36318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 12, - anon_sym_SEMI, + ACTIONS(2879), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2991), 32, + ACTIONS(2877), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99664,70 +100884,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [36137] = 19, - ACTIONS(288), 1, + [36370] = 10, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3019), 6, anon_sym_EQ, - ACTIONS(2704), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3017), 25, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2706), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36436] = 15, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, + ACTIONS(2981), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3019), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(2979), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 18, + ACTIONS(3017), 21, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -99735,6 +101001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99745,46 +101013,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36222] = 3, + [36512] = 16, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3019), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2997), 15, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2995), 29, + ACTIONS(2991), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3017), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99795,90 +101075,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36275] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3001), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, + [36590] = 12, + ACTIONS(2967), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(2977), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2999), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36328] = 3, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 15, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(588), 29, + ACTIONS(3019), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3017), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -99895,18 +101133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36381] = 3, + [36660] = 7, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(538), 15, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -99914,21 +101160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(536), 29, + ACTIONS(3035), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -99945,91 +101186,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36434] = 4, - ACTIONS(3007), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3005), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, + [36720] = 11, + ACTIONS(2967), 1, anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(2977), 1, anon_sym_AMP, + ACTIONS(2981), 1, anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3003), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36489] = 3, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 15, + ACTIONS(2969), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2971), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3019), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3009), 29, + ACTIONS(3017), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -100046,40 +101243,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36542] = 3, + [36788] = 9, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, + anon_sym_DOT_DOT, + ACTIONS(2995), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(2969), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3019), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(584), 29, + ACTIONS(3017), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -100096,39 +101298,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36595] = 9, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [36852] = 17, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2720), 1, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2981), 1, anon_sym_DOT_DOT, - ACTIONS(2734), 1, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, anon_sym_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3041), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3015), 13, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3013), 24, + ACTIONS(2991), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3039), 19, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -100136,12 +101351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100152,13 +101361,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36660] = 3, + [36932] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2831), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_LPAREN, + ACTIONS(2837), 1, + anon_sym_STAR, + ACTIONS(2843), 1, + anon_sym_for, + ACTIONS(2845), 1, + anon_sym_AMP, + ACTIONS(2847), 1, + sym_metavariable, + STATE(1848), 1, + sym_scoped_type_identifier, + STATE(1927), 1, + sym_generic_type, + STATE(2052), 1, + sym_where_predicate, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2497), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2841), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2263), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2839), 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, + [37017] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + sym_metavariable, + ACTIONS(3043), 1, + sym_identifier, + ACTIONS(3045), 1, + anon_sym_default, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1330), 1, + sym_scoped_type_identifier, + STATE(1359), 1, + sym_generic_type, + STATE(1389), 1, + sym_function_type, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_function_modifiers, + STATE(2497), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2841), 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, + [37104] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2393), 1, + anon_sym_COLON_COLON, + ACTIONS(3047), 1, + sym_identifier, + ACTIONS(3051), 1, + anon_sym_default, + ACTIONS(3053), 1, + sym_metavariable, + STATE(748), 1, + sym_scoped_type_identifier, + STATE(872), 1, + sym_generic_type, + STATE(1107), 1, + sym_function_type, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2353), 1, + sym_function_modifiers, + STATE(2378), 1, + sym_scoped_identifier, + STATE(2456), 1, + sym_bracketed_type, + STATE(2457), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2401), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3049), 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, + [37191] = 17, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, + anon_sym_COLON_COLON, + ACTIONS(3055), 1, + sym_identifier, + ACTIONS(3057), 1, + anon_sym_RPAREN, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3065), 1, + sym_metavariable, + STATE(1577), 1, + sym_scoped_identifier, + STATE(2341), 1, + sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1070), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2078), 2, + sym_meta_item, + sym__literal, + ACTIONS(3063), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3059), 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, + [37270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2905), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2907), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37321] = 6, + ACTIONS(2540), 1, + anon_sym_BANG, + ACTIONS(2542), 1, + anon_sym_COLON_COLON, + ACTIONS(3067), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3019), 15, + ACTIONS(2536), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100172,18 +101695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3017), 29, + ACTIONS(2534), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -100202,161 +101719,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36713] = 3, + [37378] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + sym_metavariable, + ACTIONS(3045), 1, + anon_sym_default, + ACTIONS(3069), 1, + sym_identifier, + STATE(1188), 1, + sym_for_lifetimes, + STATE(1332), 1, + sym_scoped_type_identifier, + STATE(1373), 1, + sym_generic_type, + STATE(1381), 1, + sym_function_type, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_function_modifiers, + STATE(2497), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3023), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2841), 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, + [37465] = 20, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3021), 29, - anon_sym_SEMI, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(2831), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36766] = 3, + ACTIONS(2837), 1, + anon_sym_STAR, + ACTIONS(2843), 1, + anon_sym_for, + ACTIONS(2845), 1, + anon_sym_AMP, + ACTIONS(2847), 1, + sym_metavariable, + STATE(1848), 1, + sym_scoped_type_identifier, + STATE(1853), 1, + sym_where_predicate, + STATE(1927), 1, + sym_generic_type, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2497), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2841), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2263), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2839), 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, + [37550] = 21, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3025), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36819] = 3, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2385), 1, + anon_sym_fn, + ACTIONS(2393), 1, + anon_sym_COLON_COLON, + ACTIONS(3051), 1, + anon_sym_default, + ACTIONS(3053), 1, + sym_metavariable, + ACTIONS(3071), 1, + sym_identifier, + STATE(747), 1, + sym_scoped_type_identifier, + STATE(880), 1, + sym_generic_type, + STATE(1121), 1, + sym_function_type, + STATE(1182), 1, + sym_for_lifetimes, + STATE(2353), 1, + sym_function_modifiers, + STATE(2378), 1, + sym_scoped_identifier, + STATE(2456), 1, + sym_bracketed_type, + STATE(2457), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(650), 15, - anon_sym_PLUS, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2401), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3049), 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, + [37637] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1174), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(648), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36872] = 3, + sym_metavariable, + ACTIONS(1176), 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, + [37688] = 6, + ACTIONS(2488), 1, + anon_sym_BANG, + ACTIONS(3073), 1, + anon_sym_COLON_COLON, + STATE(1094), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3031), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100372,18 +101990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3029), 29, - anon_sym_SEMI, + ACTIONS(566), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -100402,76 +102014,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36925] = 3, + [37744] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, + anon_sym_COLON_COLON, + ACTIONS(3055), 1, + sym_identifier, + ACTIONS(3065), 1, + sym_metavariable, + ACTIONS(3075), 1, + anon_sym_RPAREN, + STATE(1577), 1, + sym_scoped_identifier, + STATE(2341), 1, + sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1070), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2184), 2, + sym_meta_item, + sym__literal, + ACTIONS(3063), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3059), 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, + [37820] = 16, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, + ACTIONS(732), 1, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(618), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36978] = 3, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, + anon_sym_COLON_COLON, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3083), 1, + sym_metavariable, + STATE(1413), 1, + sym_scoped_identifier, + STATE(1464), 1, + sym__literal_pattern, + STATE(2339), 1, + sym_bracketed_type, + STATE(2341), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3005), 14, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3081), 3, + sym_self, + sym_super, + sym_crate, + STATE(1375), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, sym_raw_string_literal, sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, + sym_integer_literal, + sym_char_literal, + ACTIONS(3079), 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, + [37896] = 16, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, + ACTIONS(732), 1, anon_sym_DASH, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, + anon_sym_COLON_COLON, + ACTIONS(3085), 1, + sym_identifier, + ACTIONS(3091), 1, + sym_metavariable, + STATE(1422), 1, + sym_scoped_identifier, + STATE(1440), 1, + sym__literal_pattern, + STATE(2339), 1, + sym_bracketed_type, + STATE(2341), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3089), 3, + sym_self, + sym_super, + sym_crate, + STATE(1375), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, + sym_raw_string_literal, + sym_float_literal, sym_integer_literal, - aux_sym_string_literal_token1, sym_char_literal, - sym_metavariable, - ACTIONS(3003), 29, + ACTIONS(3087), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100489,31 +102192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_const, anon_sym_default, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37030] = 7, - ACTIONS(2498), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, + [37972] = 5, + ACTIONS(2594), 1, anon_sym_COLON_COLON, - ACTIONS(3033), 1, + ACTIONS(3011), 1, anon_sym_BANG, - STATE(1054), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100529,7 +102218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 24, + ACTIONS(566), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -100554,26 +102243,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37090] = 3, + [38026] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, + anon_sym_COLON_COLON, + ACTIONS(3055), 1, + sym_identifier, + ACTIONS(3065), 1, + sym_metavariable, + ACTIONS(3093), 1, + anon_sym_RPAREN, + STATE(1577), 1, + sym_scoped_identifier, + STATE(2341), 1, + sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 14, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1070), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2184), 2, + sym_meta_item, + sym__literal, + ACTIONS(3063), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, sym_integer_literal, - aux_sym_string_literal_token1, sym_char_literal, - sym_metavariable, - ACTIONS(2822), 29, + ACTIONS(3059), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100591,34 +102301,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_const, anon_sym_default, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37142] = 3, + [38102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 10, + ACTIONS(3097), 9, 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(1446), 32, + ACTIONS(3095), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100642,7 +102341,6 @@ 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, @@ -100651,260 +102349,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37193] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(2852), 1, - sym_metavariable, - ACTIONS(3035), 1, - sym_identifier, - ACTIONS(3037), 1, - anon_sym_default, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1330), 1, - sym_scoped_type_identifier, - STATE(1367), 1, - sym_generic_type, - STATE(1379), 1, - sym_function_type, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2539), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2846), 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, - [37280] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2404), 1, - anon_sym_COLON_COLON, - ACTIONS(3039), 1, - sym_identifier, - ACTIONS(3043), 1, - anon_sym_default, - ACTIONS(3045), 1, - sym_metavariable, - STATE(752), 1, - sym_scoped_type_identifier, - STATE(1019), 1, - sym_generic_type, - STATE(1057), 1, - sym_function_type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2362), 1, - sym_function_modifiers, - STATE(2376), 1, - sym_scoped_identifier, - STATE(2453), 1, - sym_bracketed_type, - STATE(2454), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2412), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3041), 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, - [37367] = 17, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(962), 1, - anon_sym_COLON_COLON, - ACTIONS(3047), 1, - sym_identifier, - ACTIONS(3049), 1, - anon_sym_RPAREN, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3057), 1, - sym_metavariable, - STATE(1582), 1, - sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1106), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1871), 2, - sym_meta_item, - sym__literal, - ACTIONS(3055), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3051), 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, - [37446] = 25, - ACTIONS(548), 1, + [38151] = 23, + ACTIONS(368), 1, anon_sym_RBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3059), 1, + ACTIONS(3099), 1, anon_sym_SEMI, - ACTIONS(3061), 1, + ACTIONS(3101), 1, anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, - STATE(1964), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + STATE(2094), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100915,20 +102415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37541] = 6, - ACTIONS(2512), 1, - anon_sym_BANG, - ACTIONS(2514), 1, - anon_sym_COLON_COLON, - ACTIONS(3063), 1, - sym_identifier, + [38240] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 16, + ACTIONS(2530), 16, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100942,12 +102436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2506), 23, - anon_sym_SEMI, + ACTIONS(2532), 24, anon_sym_LPAREN, - anon_sym_RBRACE, + 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, @@ -100966,245 +102461,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37598] = 3, + [38289] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2514), 16, 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(2808), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37649] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2836), 1, - sym_identifier, - ACTIONS(2840), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2516), 24, anon_sym_LPAREN, - ACTIONS(2842), 1, - anon_sym_STAR, - ACTIONS(2848), 1, - anon_sym_for, - ACTIONS(2850), 1, - anon_sym_AMP, - ACTIONS(2852), 1, - sym_metavariable, - STATE(1823), 1, - sym_where_predicate, - STATE(1835), 1, - sym_scoped_type_identifier, - STATE(1979), 1, - sym_generic_type, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2539), 1, - sym_scoped_identifier, + 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, + [38338] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2846), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - STATE(2292), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2844), 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, - [37734] = 21, - ACTIONS(77), 1, + ACTIONS(2522), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(2396), 1, - anon_sym_fn, - ACTIONS(2404), 1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2524), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COLON_COLON, - ACTIONS(3043), 1, - anon_sym_default, - ACTIONS(3045), 1, - sym_metavariable, - ACTIONS(3065), 1, - sym_identifier, - STATE(743), 1, - sym_scoped_type_identifier, - STATE(892), 1, - sym_generic_type, - STATE(1101), 1, - sym_function_type, - STATE(1238), 1, - sym_for_lifetimes, - STATE(2362), 1, - sym_function_modifiers, - STATE(2376), 1, - sym_scoped_identifier, - STATE(2453), 1, - sym_bracketed_type, - STATE(2454), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2412), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3041), 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, - [37821] = 25, - ACTIONS(368), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38387] = 23, + ACTIONS(552), 1, anon_sym_RBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3067), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3107), 1, anon_sym_SEMI, - ACTIONS(3069), 1, + ACTIONS(3109), 1, anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, - STATE(1870), 1, + STATE(1869), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101215,54 +102619,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37916] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(696), 1, - anon_sym_fn, - ACTIONS(698), 1, - anon_sym_for, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(2852), 1, - sym_metavariable, - ACTIONS(3037), 1, - anon_sym_default, - ACTIONS(3071), 1, - sym_identifier, - STATE(1275), 1, - sym_for_lifetimes, - STATE(1326), 1, - sym_scoped_type_identifier, - STATE(1358), 1, - sym_generic_type, - STATE(1389), 1, - sym_function_type, - STATE(2315), 1, - sym_function_modifiers, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2539), 1, - sym_scoped_identifier, + [38476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2846), 18, + ACTIONS(2809), 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(2807), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101280,55 +102651,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [38003] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(2836), 1, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_identifier, - ACTIONS(2840), 1, + sym_self, + sym_super, + sym_crate, + [38525] = 4, + ACTIONS(3115), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3113), 8, anon_sym_LPAREN, - ACTIONS(2842), 1, + anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(2848), 1, - anon_sym_for, - ACTIONS(2850), 1, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, anon_sym_AMP, - ACTIONS(2852), 1, sym_metavariable, - STATE(1835), 1, - sym_scoped_type_identifier, - STATE(1897), 1, - sym_where_predicate, - STATE(1979), 1, - sym_generic_type, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2539), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2846), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - STATE(2292), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2844), 17, + ACTIONS(3111), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101346,47 +102698,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [38088] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(962), 1, - anon_sym_COLON_COLON, - ACTIONS(3047), 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_extern, + anon_sym_dyn, sym_identifier, - ACTIONS(3057), 1, - sym_metavariable, - ACTIONS(3073), 1, - anon_sym_RPAREN, - STATE(1582), 1, - sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1106), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2191), 2, - sym_meta_item, - sym__literal, - ACTIONS(3055), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3051), 19, + [38576] = 4, + ACTIONS(3117), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3113), 8, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3111), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101404,49 +102745,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [38164] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(728), 1, - anon_sym_DASH, - ACTIONS(732), 1, - aux_sym_string_literal_token1, - ACTIONS(962), 1, - anon_sym_COLON_COLON, - ACTIONS(3075), 1, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_identifier, - ACTIONS(3081), 1, - sym_metavariable, - STATE(1406), 1, - sym_scoped_identifier, - STATE(1465), 1, - sym__literal_pattern, - STATE(2353), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(734), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3079), 3, sym_self, sym_super, sym_crate, - STATE(1398), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(730), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3077), 19, + [38627] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3121), 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(3119), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101464,134 +102791,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [38240] = 24, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_RPAREN, - ACTIONS(3085), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, - STATE(2021), 1, - aux_sym_arguments_repeat1, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2556), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2752), 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, - [38332] = 24, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(2704), 1, + anon_sym_DOT, + ACTIONS(2558), 24, anon_sym_LPAREN, - ACTIONS(2706), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, anon_sym_QMARK, - ACTIONS(2748), 1, anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - ACTIONS(3087), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, - STATE(1881), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2718), 2, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2730), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101602,17 +102851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38424] = 6, - ACTIONS(2484), 1, + [38725] = 5, + ACTIONS(2592), 1, anon_sym_BANG, - ACTIONS(3089), 1, + ACTIONS(3123), 1, anon_sym_COLON_COLON, - STATE(1054), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(2536), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101628,7 +102875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 23, + ACTIONS(2534), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -101652,15 +102899,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38480] = 5, - ACTIONS(2654), 1, + [38778] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3127), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(3033), 1, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3125), 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, + [38827] = 5, + ACTIONS(2488), 1, anon_sym_BANG, + ACTIONS(3129), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101676,10 +102969,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 24, - anon_sym_SEMI, + ACTIONS(566), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -101701,47 +102993,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38534] = 16, + [38880] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(728), 1, - anon_sym_DASH, - ACTIONS(732), 1, + ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3091), 1, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3097), 1, + ACTIONS(3065), 1, sym_metavariable, - STATE(1419), 1, + STATE(1577), 1, sym_scoped_identifier, - STATE(1441), 1, - sym__literal_pattern, - STATE(2353), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(734), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3095), 3, + STATE(1070), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2184), 2, + sym_meta_item, + sym__literal, + ACTIONS(3063), 3, sym_self, sym_super, sym_crate, - STATE(1398), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(730), 4, + ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3093), 19, + ACTIONS(3059), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101761,47 +103051,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38610] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(962), 1, - anon_sym_COLON_COLON, - ACTIONS(3047), 1, - sym_identifier, - ACTIONS(3057), 1, - sym_metavariable, - ACTIONS(3099), 1, - anon_sym_RPAREN, - STATE(1582), 1, - sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, + [38953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1106), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2191), 2, - sym_meta_item, - sym__literal, - ACTIONS(3055), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3051), 19, + ACTIONS(2875), 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(2873), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101819,327 +103083,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [38686] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3101), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2710), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2752), 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, - [38773] = 23, - ACTIONS(268), 1, - anon_sym_RBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2730), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2752), 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, - [38862] = 23, - ACTIONS(658), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, - anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, - anon_sym_AMP_AMP, - ACTIONS(3121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, - anon_sym_PIPE, - ACTIONS(3125), 1, - anon_sym_CARET, - STATE(209), 1, - sym_block, - STATE(1074), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3105), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3111), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3107), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3127), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3131), 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, - [38951] = 23, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, - anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, - anon_sym_AMP_AMP, - ACTIONS(3121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, - anon_sym_PIPE, - ACTIONS(3125), 1, - anon_sym_CARET, - STATE(1074), 1, - sym_arguments, - STATE(1141), 1, - sym_block, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [39002] = 4, + ACTIONS(2636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2606), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3111), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3131), 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, - [39040] = 23, - ACTIONS(2704), 1, + anon_sym_DOT, + ACTIONS(2602), 23, anon_sym_LPAREN, - ACTIONS(2706), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, anon_sym_QMARK, - ACTIONS(2748), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, - anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, - anon_sym_AMP_AMP, - ACTIONS(3121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, - anon_sym_PIPE, - ACTIONS(3125), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_LBRACE, - STATE(218), 1, - sym_match_block, - STATE(1074), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3105), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3111), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3115), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3107), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3127), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102150,62 +103143,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39129] = 23, - ACTIONS(658), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, - anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, - anon_sym_AMP_AMP, - ACTIONS(3121), 1, - anon_sym_PIPE_PIPE, + [39052] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + sym_metavariable, + ACTIONS(3045), 1, + anon_sym_default, + ACTIONS(3131), 1, + sym_identifier, + ACTIONS(3133), 1, + anon_sym_fn, + STATE(1829), 1, + sym_scoped_type_identifier, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2380), 1, + sym_function_modifiers, + STATE(2417), 1, + sym_generic_type, + STATE(2497), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2841), 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, + [39130] = 4, ACTIONS(3123), 1, - anon_sym_PIPE, - ACTIONS(3125), 1, - anon_sym_CARET, - STATE(219), 1, - sym_block, - STATE(1074), 1, - sym_arguments, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2536), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3111), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + anon_sym_DOT, + ACTIONS(2534), 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(3131), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102216,62 +103249,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39218] = 23, - ACTIONS(270), 1, - anon_sym_RBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + [39180] = 4, + ACTIONS(3135), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(568), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + anon_sym_DOT, + ACTIONS(566), 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(2752), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102282,108 +103295,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39307] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3137), 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(3135), 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, - [39356] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [39230] = 22, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_SEMI, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3137), 1, + anon_sym_RPAREN, ACTIONS(3139), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym_arguments, + anon_sym_COMMA, + STATE(1892), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102394,62 +103359,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39445] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [39316] = 22, + ACTIONS(382), 1, + anon_sym_RPAREN, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3141), 1, - anon_sym_RPAREN, - ACTIONS(3143), 1, anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, + STATE(2032), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102460,14 +103423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39534] = 3, + [39402] = 4, + ACTIONS(2604), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2520), 16, + ACTIONS(2606), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102481,13 +103445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2522), 24, + ACTIONS(2602), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102506,62 +103469,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39583] = 23, - ACTIONS(506), 1, - anon_sym_RPAREN, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [39452] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + sym_metavariable, + ACTIONS(3045), 1, + anon_sym_default, + ACTIONS(3143), 1, + sym_identifier, + ACTIONS(3145), 1, + anon_sym_fn, + STATE(1808), 1, + sym_scoped_type_identifier, + STATE(2347), 1, + sym_bracketed_type, + STATE(2348), 1, + sym_generic_type_with_turbofish, + STATE(2417), 1, + sym_generic_type, + STATE(2497), 1, + sym_scoped_identifier, + STATE(2535), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1549), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2841), 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, + [39530] = 17, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2973), 1, + anon_sym_EQ, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - ACTIONS(3145), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(2965), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102572,61 +103587,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39672] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [39605] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(1106), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3147), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102637,62 +103649,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39759] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [39688] = 21, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(71), 1, - sym_block, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, + anon_sym_SEMI, + ACTIONS(3181), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102703,62 +103711,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39848] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [39771] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3149), 1, - anon_sym_RBRACE, - ACTIONS(3151), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3183), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102769,62 +103772,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39937] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [39852] = 21, + ACTIONS(270), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(77), 1, - sym_block, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102835,62 +103834,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40026] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [39935] = 21, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(3153), 1, - anon_sym_LBRACE, - STATE(69), 1, - sym_match_block, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, + anon_sym_SEMI, + ACTIONS(3185), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102901,61 +103896,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40115] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [40018] = 17, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3023), 1, + anon_sym_EQ, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3155), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2710), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3021), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102966,61 +103954,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40202] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [40093] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3157), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103031,62 +104016,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40289] = 23, - ACTIONS(284), 1, + [40176] = 21, + ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, - anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3153), 1, + anon_sym_AMP, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, - STATE(1125), 1, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(244), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103097,62 +104078,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40378] = 23, - ACTIONS(15), 1, + [40259] = 21, + ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(83), 1, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(243), 1, sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103163,42 +104140,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40467] = 3, + [40342] = 21, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3187), 1, + anon_sym_RBRACE, + ACTIONS(3189), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2552), 16, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2554), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3103), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103209,61 +104202,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40516] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [40425] = 21, + ACTIONS(494), 1, + anon_sym_RPAREN, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3191), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3159), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103274,62 +104264,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40603] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [40508] = 21, + ACTIONS(610), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(3161), 1, - anon_sym_LBRACE, - STATE(1074), 1, - sym_arguments, - STATE(1110), 1, - sym_match_block, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(241), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103340,62 +104326,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40692] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [40591] = 21, + ACTIONS(610), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3145), 1, - anon_sym_COMMA, - ACTIONS(3163), 1, - anon_sym_RPAREN, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(216), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103406,61 +104388,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40781] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [40674] = 21, + ACTIONS(610), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(222), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3165), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103471,62 +104450,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40868] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [40757] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3167), 1, - anon_sym_RBRACE, - ACTIONS(3169), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(160), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103537,62 +104512,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40957] = 23, - ACTIONS(658), 1, + [40840] = 21, + ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(210), 1, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(227), 1, sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103603,62 +104574,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41046] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [40923] = 21, + ACTIONS(260), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3103), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, anon_sym_SEMI, - ACTIONS(3171), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103669,22 +104636,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41135] = 5, - ACTIONS(2662), 1, - anon_sym_BANG, - ACTIONS(3173), 1, - anon_sym_COLON_COLON, + [41006] = 7, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3157), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, + ACTIONS(3155), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3015), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -103692,15 +104663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2506), 23, + ACTIONS(3013), 20, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103717,61 +104684,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41188] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [41061] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3175), 2, - anon_sym_RPAREN, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3193), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2710), 3, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103782,61 +104745,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41275] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [41142] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3001), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2710), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103847,90 +104806,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41362] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, + [41223] = 17, + ACTIONS(288), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3153), 1, anon_sym_AMP, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2542), 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, + ACTIONS(3159), 1, anon_sym_AMP_AMP, + ACTIONS(3161), 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, - [41411] = 5, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(3179), 1, - anon_sym_COLON_COLON, + ACTIONS(3163), 1, + anon_sym_PIPE, + ACTIONS(3165), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(3147), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3155), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3149), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(554), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(282), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103941,62 +104864,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41464] = 23, + [41298] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(755), 1, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(760), 1, sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104007,62 +104926,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41553] = 23, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [41381] = 21, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(1064), 1, - sym_block, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(3197), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104073,62 +104988,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41642] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [41464] = 21, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3103), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, anon_sym_SEMI, - ACTIONS(3181), 1, + ACTIONS(3199), 1, anon_sym_RBRACE, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104139,62 +105050,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41731] = 23, - ACTIONS(284), 1, + [41547] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, - STATE(1099), 1, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(45), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104205,109 +105112,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41820] = 4, - ACTIONS(3185), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3187), 8, + [41630] = 21, + ACTIONS(2967), 1, 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(3183), 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, - [41871] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(37), 1, - sym_block, - STATE(1074), 1, - sym_arguments, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + ACTIONS(3201), 1, + anon_sym_LBRACE, + STATE(1110), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104318,62 +105174,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41960] = 23, - ACTIONS(15), 1, + [41713] = 21, + ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(51), 1, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(234), 1, sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104384,62 +105236,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42049] = 23, - ACTIONS(658), 1, + [41796] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(230), 1, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(1096), 1, sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104450,61 +105298,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42138] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [41879] = 7, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + ACTIONS(3157), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3155), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3189), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3035), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104515,154 +105346,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42225] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2742), 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(2740), 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, - [42274] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3193), 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(3191), 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, - [42323] = 23, - ACTIONS(107), 1, - anon_sym_RBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [41934] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(166), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104673,108 +105408,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42412] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2959), 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(2957), 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, - [42461] = 23, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42017] = 17, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, + ACTIONS(3027), 1, anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(759), 1, - sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3025), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104785,62 +105466,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42550] = 23, + [42092] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(41), 1, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(131), 1, sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104851,62 +105528,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42639] = 23, - ACTIONS(272), 1, - anon_sym_RBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42175] = 21, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + ACTIONS(3203), 1, + anon_sym_LBRACE, + STATE(235), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104917,62 +105590,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42728] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42258] = 7, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(3119), 1, - anon_sym_AMP_AMP, - ACTIONS(3121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, - anon_sym_PIPE, - ACTIONS(3125), 1, - anon_sym_CARET, - STATE(60), 1, - sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3155), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2999), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3111), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2997), 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(3131), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104983,62 +105638,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42817] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42313] = 7, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_SEMI, - ACTIONS(3195), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym_arguments, + ACTIONS(3157), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3155), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3019), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2714), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3017), 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(2752), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105049,62 +105686,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42906] = 23, - ACTIONS(508), 1, - anon_sym_RPAREN, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42368] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3145), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(1120), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105115,120 +105748,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42995] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(962), 1, - anon_sym_COLON_COLON, - ACTIONS(3047), 1, - sym_identifier, - ACTIONS(3057), 1, - sym_metavariable, - STATE(1582), 1, - sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1106), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2191), 2, - sym_meta_item, - sym__literal, - ACTIONS(3055), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3051), 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, - [43068] = 23, - ACTIONS(284), 1, + [42451] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, - STATE(1116), 1, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(81), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105239,62 +105810,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43157] = 23, - ACTIONS(658), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42534] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(221), 1, - sym_block, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3205), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105305,62 +105871,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43246] = 23, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42615] = 17, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, + ACTIONS(3041), 1, anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(1053), 1, - sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3039), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105371,62 +105929,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43335] = 23, - ACTIONS(658), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42690] = 9, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(3119), 1, - anon_sym_AMP_AMP, - ACTIONS(3121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, - anon_sym_PIPE, - ACTIONS(3125), 1, - anon_sym_CARET, - STATE(215), 1, - sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3115), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3019), 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(3017), 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(3131), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105437,62 +105979,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43424] = 23, - ACTIONS(264), 1, - anon_sym_RBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42749] = 21, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3103), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3207), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105503,62 +106041,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43513] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42832] = 11, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(3119), 1, - anon_sym_AMP_AMP, - ACTIONS(3121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, - anon_sym_PIPE, - ACTIONS(3125), 1, - anon_sym_CARET, - STATE(86), 1, - sym_block, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3115), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3019), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3017), 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(3131), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105569,108 +106093,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43602] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3199), 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(3197), 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, - [43651] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42895] = 21, + ACTIONS(610), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_SEMI, - ACTIONS(3201), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(215), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105681,109 +106155,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43740] = 4, - ACTIONS(3203), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3187), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3183), 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, - [43791] = 23, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [42978] = 21, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3103), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, anon_sym_SEMI, - ACTIONS(3205), 1, + ACTIONS(3209), 1, anon_sym_RBRACE, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105794,62 +106217,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43880] = 23, - ACTIONS(658), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43061] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(237), 1, - sym_block, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3211), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105860,62 +106278,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43969] = 23, - ACTIONS(658), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43142] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(217), 1, - sym_block, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3213), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105926,62 +106339,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44058] = 23, - ACTIONS(276), 1, - anon_sym_RBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43223] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3103), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(1108), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105992,42 +106401,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44147] = 3, + [43306] = 21, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3215), 1, + anon_sym_RPAREN, + ACTIONS(3217), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2528), 16, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2530), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3103), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106038,61 +106463,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44196] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43389] = 21, + ACTIONS(266), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3207), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106103,39 +106525,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44283] = 10, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43472] = 12, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3153), 1, + anon_sym_AMP, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3165), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 2, + ACTIONS(3147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 3, + ACTIONS(3169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2738), 10, - anon_sym_PLUS, + ACTIONS(3019), 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(2736), 19, + ACTIONS(3017), 20, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -106155,50 +106578,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44345] = 12, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43537] = 16, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3019), 1, + anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_AMP, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3159), 1, + anon_sym_AMP_AMP, + ACTIONS(3163), 1, + anon_sym_PIPE, + ACTIONS(3165), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3115), 2, + ACTIONS(3151), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2738), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2736), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3017), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106209,60 +106635,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44411] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43610] = 15, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3019), 1, + anon_sym_EQ, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - ACTIONS(3209), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3017), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106273,184 +106691,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44497] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43681] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3211), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3219), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 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, - [44583] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(2852), 1, - sym_metavariable, - ACTIONS(3037), 1, - anon_sym_default, - ACTIONS(3213), 1, - sym_identifier, - ACTIONS(3215), 1, - anon_sym_fn, - STATE(1798), 1, - sym_scoped_type_identifier, - STATE(2355), 1, - sym_generic_type, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2378), 1, - sym_function_modifiers, - STATE(2539), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2846), 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, - [44661] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2716), 1, - anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_CARET, - ACTIONS(2734), 1, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43762] = 10, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - ACTIONS(3217), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3157), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3019), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3017), 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(2752), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106461,60 +106803,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44747] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43823] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3219), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(47), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106525,47 +106865,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44833] = 9, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43906] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, + anon_sym_AMP, + ACTIONS(3159), 1, + anon_sym_AMP_AMP, + ACTIONS(3161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3163), 1, + anon_sym_PIPE, + ACTIONS(3165), 1, + anon_sym_CARET, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, + STATE(765), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3015), 13, + ACTIONS(3147), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3013), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106576,60 +106927,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44893] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [43989] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3221), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3221), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106640,60 +106988,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44979] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44070] = 13, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, - anon_sym_AMP_AMP, - ACTIONS(2724), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_RBRACK, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3019), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3017), 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(2752), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106704,60 +107042,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45065] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44137] = 21, + ACTIONS(274), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3225), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106768,60 +107104,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45151] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44220] = 17, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2981), 1, - anon_sym_LBRACE, - ACTIONS(3109), 1, + ACTIONS(3031), 1, anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3029), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106832,60 +107162,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45237] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44295] = 21, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3227), 1, - anon_sym_RBRACK, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106896,36 +107224,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45323] = 4, - ACTIONS(3229), 1, - anon_sym_COLON_COLON, + [44378] = 8, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3157), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, - anon_sym_PLUS, + ACTIONS(3155), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3019), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(554), 23, + ACTIONS(3017), 20, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -106942,60 +107273,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45373] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44435] = 21, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3223), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107006,60 +107335,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45459] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44518] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, + ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3233), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3033), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, + ACTIONS(3155), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107070,60 +107396,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45545] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44599] = 21, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3171), 1, anon_sym_EQ, - ACTIONS(3235), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + ACTIONS(3225), 1, + anon_sym_LBRACE, + STATE(182), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107134,57 +107458,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45631] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44682] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2963), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(1100), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2961), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107195,60 +107520,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45711] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44765] = 21, + ACTIONS(502), 1, + anon_sym_RPAREN, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3191), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107259,57 +107582,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45797] = 19, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [44848] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(3113), 1, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(173), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107320,93 +107644,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45877] = 4, - ACTIONS(3173), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2508), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2506), 23, - anon_sym_LPAREN, + [44931] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, anon_sym_QMARK, + ACTIONS(3005), 1, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3153), 1, + anon_sym_AMP, + ACTIONS(3159), 1, anon_sym_AMP_AMP, + ACTIONS(3161), 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, - [45927] = 9, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3163), 1, + anon_sym_PIPE, + ACTIONS(3165), 1, + anon_sym_CARET, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, + STATE(142), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2989), 13, + ACTIONS(3147), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2987), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107417,42 +107706,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45987] = 4, - ACTIONS(2598), 1, - anon_sym_COLON_COLON, + [45014] = 21, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3227), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 15, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2588), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3103), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107463,47 +107768,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46037] = 9, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45097] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2738), 13, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3229), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2736), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107514,57 +107829,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46097] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45178] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2760), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(3159), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(3161), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(3163), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(3171), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_DOT_DOT, + STATE(1033), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(3147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3151), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(3169), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3173), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(3167), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2758), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107575,60 +107891,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46177] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45261] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107639,53 +107952,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46263] = 15, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45342] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3123), 1, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2738), 3, - anon_sym_EQ, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3107), 3, + ACTIONS(2993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2736), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107696,60 +108013,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46335] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45423] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_RBRACE, + ACTIONS(3241), 1, + anon_sym_STAR, + ACTIONS(3245), 1, + anon_sym_COMMA, + ACTIONS(3247), 1, + anon_sym_COLON_COLON, + ACTIONS(3251), 1, + sym_metavariable, + STATE(1715), 1, + sym_scoped_identifier, + STATE(2341), 1, + sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3249), 3, + sym_self, + sym_super, + sym_crate, + STATE(1983), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3243), 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, + [45494] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3241), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3253), 1, anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107760,60 +108129,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46421] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45574] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3255), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107824,60 +108189,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46507] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45654] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3245), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3257), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107888,57 +108249,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46593] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45734] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2856), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3259), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2854), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107949,60 +108309,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46673] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45814] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2744), 1, - anon_sym_LBRACE, - ACTIONS(2746), 1, - anon_sym_QMARK, - ACTIONS(2748), 1, - anon_sym_as, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108013,55 +108369,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46759] = 17, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45894] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2738), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3123), 1, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3261), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2736), 15, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108072,56 +108429,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46835] = 18, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [45974] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2738), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3123), 1, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3263), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2736), 14, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_PIPE_PIPE, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108132,60 +108489,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46913] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46054] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3145), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108196,60 +108549,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46999] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46134] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3247), 1, - anon_sym_RBRACK, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3191), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108260,52 +108609,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47085] = 14, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46214] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3241), 1, + anon_sym_STAR, + ACTIONS(3247), 1, + anon_sym_COLON_COLON, + ACTIONS(3251), 1, + sym_metavariable, + ACTIONS(3267), 1, + anon_sym_RBRACE, + STATE(1715), 1, + sym_scoped_identifier, + STATE(2341), 1, + sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3249), 3, + sym_self, + sym_super, + sym_crate, + STATE(2197), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3243), 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, + [46282] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3125), 1, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3269), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2975), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2738), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2736), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108316,60 +108723,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47155] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46362] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3271), 1, anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108380,57 +108783,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47241] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46442] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2712), 1, - anon_sym_EQ, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2702), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108441,44 +108843,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47321] = 6, - ACTIONS(3117), 1, + [46522] = 20, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3275), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(334), 14, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(332), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108489,47 +108903,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47375] = 9, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46602] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3277), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 13, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108540,120 +108963,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47435] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(710), 1, - anon_sym_extern, - ACTIONS(896), 1, - anon_sym_COLON_COLON, - ACTIONS(2852), 1, - sym_metavariable, - ACTIONS(3037), 1, - anon_sym_default, - ACTIONS(3251), 1, - sym_identifier, - ACTIONS(3253), 1, - anon_sym_fn, - STATE(1791), 1, - sym_scoped_type_identifier, - STATE(2355), 1, - sym_generic_type, - STATE(2358), 1, - sym_bracketed_type, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2460), 1, - sym_function_modifiers, - STATE(2539), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(690), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(902), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2846), 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, - [47513] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46682] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3255), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3279), 1, anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108664,51 +109023,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47599] = 13, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46762] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3281), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2975), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2738), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2736), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108719,60 +109083,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47667] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46842] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3257), 1, - anon_sym_RBRACK, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3283), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108783,49 +109143,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47753] = 11, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [46922] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, anon_sym_DOT_DOT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3285), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3115), 2, + ACTIONS(2975), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3103), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 3, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2738), 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(2736), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108836,60 +109203,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47817] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47002] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3259), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108900,60 +109263,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47903] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47082] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3261), 1, - anon_sym_RBRACK, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3289), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108964,60 +109323,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47989] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47162] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3263), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3291), 1, anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109028,60 +109383,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48075] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47242] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3103), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3293), 1, anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109092,42 +109443,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48161] = 4, - ACTIONS(2590), 1, - anon_sym_COLON_COLON, + [47322] = 20, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3295), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 15, + ACTIONS(2969), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2588), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3103), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109138,60 +109503,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48211] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47402] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3265), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3297), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109202,60 +109563,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48297] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47482] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3299), 1, anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109266,60 +109623,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48383] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47562] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3269), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3301), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109330,57 +109683,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48469] = 19, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47642] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_DOT, - ACTIONS(2917), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(3117), 1, - anon_sym_DOT_DOT, - ACTIONS(3119), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(3121), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(3125), 1, + ACTIONS(2989), 1, anon_sym_CARET, - STATE(1074), 1, - sym_arguments, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3303), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3115), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2915), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109391,60 +109743,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48549] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47722] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3271), 1, - anon_sym_EQ_GT, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3305), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109455,60 +109803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48635] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47802] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3273), 1, - anon_sym_COMMA, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3307), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109519,60 +109863,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48721] = 22, - ACTIONS(2704), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, + [47882] = 20, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2977), 1, anon_sym_AMP, - ACTIONS(2720), 1, - anon_sym_DOT_DOT, - ACTIONS(2722), 1, + ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2724), 1, + ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2726), 1, + ACTIONS(2987), 1, anon_sym_PIPE, - ACTIONS(2728), 1, + ACTIONS(2989), 1, anon_sym_CARET, - ACTIONS(2734), 1, + ACTIONS(2995), 1, anon_sym_DOT, - ACTIONS(2746), 1, + ACTIONS(3003), 1, anon_sym_QMARK, - ACTIONS(2748), 1, + ACTIONS(3005), 1, anon_sym_as, - ACTIONS(2750), 1, + ACTIONS(3007), 1, anon_sym_EQ, - ACTIONS(3275), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_arguments, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3309), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, + ACTIONS(2969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 2, + ACTIONS(2975), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2718), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2732), 2, + ACTIONS(2993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2710), 3, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2730), 4, + ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2752), 10, + ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109583,43 +109923,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48807] = 15, + [47962] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3277), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3237), 1, anon_sym_LBRACE, - ACTIONS(3281), 1, - anon_sym_RBRACE, - ACTIONS(3283), 1, + ACTIONS(3241), 1, anon_sym_STAR, - ACTIONS(3287), 1, - anon_sym_COMMA, - ACTIONS(3289), 1, + ACTIONS(3247), 1, anon_sym_COLON_COLON, - ACTIONS(3293), 1, + ACTIONS(3251), 1, sym_metavariable, - STATE(1737), 1, + ACTIONS(3311), 1, + anon_sym_RBRACE, + STATE(1715), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3291), 3, + ACTIONS(3249), 3, sym_self, sym_super, sym_crate, - STATE(1903), 5, + STATE(2197), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3285), 19, + ACTIONS(3243), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109639,147 +109977,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48878] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3279), 1, - anon_sym_LBRACE, - ACTIONS(3283), 1, - anon_sym_STAR, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - ACTIONS(3293), 1, - sym_metavariable, - ACTIONS(3295), 1, - anon_sym_RBRACE, - STATE(1737), 1, - sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, + [48030] = 20, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2977), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2987), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_CARET, + ACTIONS(2995), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_QMARK, + ACTIONS(3005), 1, + anon_sym_as, + ACTIONS(3007), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_DOT_DOT, + ACTIONS(3313), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3291), 3, - sym_self, - sym_super, - sym_crate, - STATE(2179), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3285), 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, - [48946] = 14, - ACTIONS(77), 1, + ACTIONS(2969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2975), 2, anon_sym_LT, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3279), 1, - anon_sym_LBRACE, - ACTIONS(3283), 1, + anon_sym_GT, + ACTIONS(2993), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3103), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2971), 3, anon_sym_STAR, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - ACTIONS(3293), 1, - sym_metavariable, - ACTIONS(3297), 1, - anon_sym_RBRACE, - STATE(1737), 1, - sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3291), 3, - sym_self, - sym_super, - sym_crate, - STATE(2179), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3285), 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, - [49014] = 13, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2991), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3009), 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, + [48110] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3277), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3237), 1, anon_sym_LBRACE, - ACTIONS(3283), 1, + ACTIONS(3241), 1, anon_sym_STAR, - ACTIONS(3289), 1, + ACTIONS(3247), 1, anon_sym_COLON_COLON, - ACTIONS(3293), 1, + ACTIONS(3251), 1, sym_metavariable, - STATE(1737), 1, + STATE(1715), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3291), 3, + ACTIONS(3249), 3, sym_self, sym_super, sym_crate, - STATE(2533), 5, + STATE(2344), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3285), 19, + ACTIONS(3243), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109799,39 +110089,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49079] = 13, + [48175] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3277), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3237), 1, anon_sym_LBRACE, - ACTIONS(3283), 1, + ACTIONS(3241), 1, anon_sym_STAR, - ACTIONS(3289), 1, + ACTIONS(3247), 1, anon_sym_COLON_COLON, - ACTIONS(3293), 1, + ACTIONS(3251), 1, sym_metavariable, - STATE(1737), 1, + STATE(1715), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3291), 3, + ACTIONS(3249), 3, sym_self, sym_super, sym_crate, - STATE(2333), 5, + STATE(2445), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3285), 19, + ACTIONS(3243), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109851,39 +110141,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49144] = 13, + [48240] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3277), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3237), 1, anon_sym_LBRACE, - ACTIONS(3283), 1, + ACTIONS(3241), 1, anon_sym_STAR, - ACTIONS(3289), 1, + ACTIONS(3247), 1, anon_sym_COLON_COLON, - ACTIONS(3293), 1, + ACTIONS(3251), 1, sym_metavariable, - STATE(1737), 1, + STATE(1715), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3291), 3, + ACTIONS(3249), 3, sym_self, sym_super, sym_crate, - STATE(2450), 5, + STATE(2197), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3285), 19, + ACTIONS(3243), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109903,39 +110193,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49209] = 13, + [48305] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3277), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3237), 1, anon_sym_LBRACE, - ACTIONS(3283), 1, + ACTIONS(3241), 1, anon_sym_STAR, - ACTIONS(3289), 1, + ACTIONS(3247), 1, anon_sym_COLON_COLON, - ACTIONS(3293), 1, + ACTIONS(3251), 1, sym_metavariable, - STATE(1737), 1, + STATE(1715), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3291), 3, + ACTIONS(3249), 3, sym_self, sym_super, sym_crate, - STATE(2361), 5, + STATE(2455), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3285), 19, + ACTIONS(3243), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109955,39 +110245,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49274] = 13, + [48370] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3277), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3237), 1, anon_sym_LBRACE, - ACTIONS(3283), 1, + ACTIONS(3241), 1, anon_sym_STAR, - ACTIONS(3289), 1, + ACTIONS(3247), 1, anon_sym_COLON_COLON, - ACTIONS(3293), 1, + ACTIONS(3251), 1, sym_metavariable, - STATE(1737), 1, + STATE(1715), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3291), 3, + ACTIONS(3249), 3, sym_self, sym_super, sym_crate, - STATE(2179), 5, + STATE(2315), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3285), 19, + ACTIONS(3243), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110007,15 +110297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49339] = 3, + [48435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3301), 3, + ACTIONS(3317), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3299), 28, + ACTIONS(3315), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110044,15 +110334,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49379] = 3, + [48475] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3305), 3, + ACTIONS(3321), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3303), 28, + ACTIONS(3319), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110081,15 +110371,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49419] = 3, + [48515] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3309), 3, + ACTIONS(3325), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3307), 28, + ACTIONS(3323), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110118,31 +110408,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49459] = 11, + [48555] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(3065), 1, sym_metavariable, - STATE(1582), 1, + STATE(1577), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2449), 1, - sym_meta_item, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2382), 1, + sym_meta_item, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 3, + ACTIONS(3063), 3, sym_self, sym_super, sym_crate, - ACTIONS(3051), 19, + ACTIONS(3059), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110162,31 +110452,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49514] = 11, + [48610] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(3065), 1, sym_metavariable, - STATE(1582), 1, + STATE(1577), 1, sym_scoped_identifier, - STATE(2403), 1, + STATE(2341), 1, + sym_generic_type_with_turbofish, + STATE(2407), 1, sym_meta_item, - STATE(2432), 1, + STATE(2453), 1, sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 3, + ACTIONS(3063), 3, sym_self, sym_super, sym_crate, - ACTIONS(3051), 19, + ACTIONS(3059), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110206,31 +110496,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49569] = 11, + [48665] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(3065), 1, sym_metavariable, - STATE(1582), 1, + STATE(1577), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2528), 1, - sym_meta_item, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2367), 1, + sym_meta_item, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 3, + ACTIONS(3063), 3, sym_self, sym_super, sym_crate, - ACTIONS(3051), 19, + ACTIONS(3059), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110250,31 +110540,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49624] = 11, + [48720] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(3065), 1, sym_metavariable, - STATE(1582), 1, + STATE(1577), 1, sym_scoped_identifier, - STATE(2397), 1, + STATE(2341), 1, + sym_generic_type_with_turbofish, + STATE(2423), 1, sym_meta_item, - STATE(2432), 1, + STATE(2453), 1, sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 3, + ACTIONS(3063), 3, sym_self, sym_super, sym_crate, - ACTIONS(3051), 19, + ACTIONS(3059), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110294,31 +110584,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49679] = 11, + [48775] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(3065), 1, sym_metavariable, - STATE(1582), 1, + STATE(1577), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2516), 1, + STATE(2323), 1, sym_meta_item, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 3, + ACTIONS(3063), 3, sym_self, sym_super, sym_crate, - ACTIONS(3051), 19, + ACTIONS(3059), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110338,31 +110628,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49734] = 11, + [48830] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(3065), 1, sym_metavariable, - STATE(1582), 1, + STATE(1577), 1, sym_scoped_identifier, - STATE(2334), 1, - sym_meta_item, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, + STATE(2515), 1, + sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 3, + ACTIONS(3063), 3, sym_self, sym_super, sym_crate, - ACTIONS(3051), 19, + ACTIONS(3059), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110382,31 +110672,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49789] = 11, + [48885] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3057), 1, + ACTIONS(3065), 1, sym_metavariable, - STATE(1582), 1, + STATE(1577), 1, sym_scoped_identifier, - STATE(2321), 1, + STATE(2341), 1, + sym_generic_type_with_turbofish, + STATE(2369), 1, sym_meta_item, - STATE(2432), 1, + STATE(2453), 1, sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 3, + ACTIONS(3063), 3, sym_self, sym_super, sym_crate, - ACTIONS(3051), 19, + ACTIONS(3059), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110426,29 +110716,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49844] = 10, + [48940] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3311), 1, + ACTIONS(3327), 1, sym_identifier, - ACTIONS(3317), 1, + ACTIONS(3333), 1, sym_metavariable, - STATE(2155), 1, + STATE(2177), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3315), 3, + ACTIONS(3331), 3, sym_self, sym_super, sym_crate, - ACTIONS(3313), 19, + ACTIONS(3329), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110468,29 +110758,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49896] = 10, + [48992] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3335), 1, sym_identifier, - ACTIONS(3325), 1, + ACTIONS(3341), 1, sym_metavariable, - STATE(2185), 1, + STATE(2268), 1, sym_scoped_identifier, - STATE(2432), 1, - sym_bracketed_type, - STATE(2532), 1, + STATE(2341), 1, sym_generic_type_with_turbofish, + STATE(2453), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3323), 3, + ACTIONS(3339), 3, sym_self, sym_super, sym_crate, - ACTIONS(3321), 19, + ACTIONS(3337), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110510,13 +110800,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49948] = 3, - ACTIONS(2337), 1, + [49044] = 3, + ACTIONS(2317), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2339), 20, + ACTIONS(2319), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110537,13 +110827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49978] = 3, - ACTIONS(2293), 1, + [49074] = 3, + ACTIONS(2295), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2295), 20, + ACTIONS(2297), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110564,29 +110854,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50008] = 10, - ACTIONS(3329), 1, + [49104] = 10, + ACTIONS(3345), 1, anon_sym_LPAREN, - ACTIONS(3331), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3335), 1, + ACTIONS(3351), 1, anon_sym_COLON_COLON, - ACTIONS(3339), 1, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3341), 1, + ACTIONS(3357), 1, anon_sym_AT, - STATE(1348), 1, + STATE(1343), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3333), 2, + ACTIONS(3349), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3337), 2, + ACTIONS(3353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 9, + ACTIONS(3343), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -110596,25 +110886,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50050] = 9, - ACTIONS(2482), 1, + [49146] = 9, + ACTIONS(2486), 1, anon_sym_COLON, - ACTIONS(3339), 1, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(3361), 1, anon_sym_BANG, - ACTIONS(3347), 1, + ACTIONS(3363), 1, anon_sym_COLON_COLON, - STATE(1348), 1, + STATE(1343), 1, sym_type_arguments, - STATE(1351), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 12, + ACTIONS(2482), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110627,16 +110917,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50090] = 4, - ACTIONS(2518), 1, + [49186] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2526), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2530), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2532), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [49215] = 4, + ACTIONS(2512), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 2, + ACTIONS(2516), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2516), 15, + ACTIONS(2510), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110652,23 +110967,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [50119] = 8, - ACTIONS(2492), 1, + [49244] = 8, + ACTIONS(2496), 1, anon_sym_COLON, - ACTIONS(3339), 1, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3347), 1, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2494), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49281] = 8, + ACTIONS(2500), 1, + anon_sym_COLON, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3363), 1, anon_sym_COLON_COLON, - STATE(1348), 1, + STATE(1343), 1, sym_type_arguments, - STATE(1351), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2490), 12, + ACTIONS(2498), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110681,16 +111025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50156] = 4, - ACTIONS(2538), 1, + [49318] = 4, + ACTIONS(2520), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2542), 2, + ACTIONS(2524), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2536), 15, + ACTIONS(2518), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110706,41 +111050,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [50185] = 4, + [49347] = 4, + ACTIONS(2554), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2540), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2542), 14, + ACTIONS(2558), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2552), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [50214] = 4, - ACTIONS(2526), 1, + [49376] = 4, + ACTIONS(2528), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 2, + ACTIONS(2532), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2524), 15, + ACTIONS(2526), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110756,17 +111100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [50243] = 4, + [49405] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2516), 2, + ACTIONS(2510), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2520), 2, + ACTIONS(2514), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2522), 14, + ACTIONS(2516), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110781,17 +111125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50272] = 4, + [49434] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2548), 2, + ACTIONS(2518), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2552), 2, + ACTIONS(2522), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2554), 14, + ACTIONS(2524), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110806,42 +111150,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50301] = 4, - ACTIONS(2550), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2554), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2548), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [50330] = 4, + [49463] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 2, + ACTIONS(2552), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2528), 2, + ACTIONS(2556), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2530), 14, + ACTIONS(2558), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110856,111 +111175,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50359] = 8, - ACTIONS(2496), 1, - anon_sym_COLON, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2494), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50396] = 6, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1333), 1, - sym_type_arguments, - STATE(1356), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2502), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50428] = 17, - ACTIONS(3351), 1, + [49492] = 17, + ACTIONS(3367), 1, anon_sym_const, - ACTIONS(3353), 1, + ACTIONS(3369), 1, anon_sym_enum, - ACTIONS(3355), 1, + ACTIONS(3371), 1, anon_sym_fn, - ACTIONS(3357), 1, + ACTIONS(3373), 1, anon_sym_mod, - ACTIONS(3359), 1, + ACTIONS(3375), 1, anon_sym_static, - ACTIONS(3361), 1, + ACTIONS(3377), 1, anon_sym_struct, - ACTIONS(3363), 1, + ACTIONS(3379), 1, anon_sym_trait, - ACTIONS(3365), 1, + ACTIONS(3381), 1, anon_sym_type, - ACTIONS(3367), 1, + ACTIONS(3383), 1, anon_sym_union, - ACTIONS(3369), 1, + ACTIONS(3385), 1, anon_sym_unsafe, - ACTIONS(3371), 1, + ACTIONS(3387), 1, anon_sym_use, - ACTIONS(3373), 1, + ACTIONS(3389), 1, anon_sym_extern, - STATE(1523), 1, + STATE(1514), 1, sym_extern_modifier, - STATE(1563), 1, + STATE(1549), 1, aux_sym_function_modifiers_repeat1, - STATE(2530), 1, + STATE(2359), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3349), 2, + ACTIONS(3365), 2, anon_sym_async, anon_sym_default, - [50482] = 6, - ACTIONS(3339), 1, + [49546] = 6, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - STATE(1333), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1356), 1, + STATE(1371), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 13, + ACTIONS(2506), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110974,56 +111238,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50514] = 17, - ACTIONS(3375), 1, + [49578] = 17, + ACTIONS(3391), 1, anon_sym_const, - ACTIONS(3377), 1, + ACTIONS(3393), 1, anon_sym_enum, - ACTIONS(3379), 1, + ACTIONS(3395), 1, anon_sym_fn, - ACTIONS(3381), 1, + ACTIONS(3397), 1, anon_sym_mod, - ACTIONS(3383), 1, + ACTIONS(3399), 1, anon_sym_static, - ACTIONS(3385), 1, + ACTIONS(3401), 1, anon_sym_struct, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_trait, - ACTIONS(3389), 1, + ACTIONS(3405), 1, anon_sym_type, - ACTIONS(3391), 1, + ACTIONS(3407), 1, anon_sym_union, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_unsafe, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_use, - ACTIONS(3397), 1, + ACTIONS(3413), 1, anon_sym_extern, - STATE(1493), 1, + STATE(1503), 1, sym_extern_modifier, - STATE(1563), 1, + STATE(1549), 1, aux_sym_function_modifiers_repeat1, - STATE(2487), 1, + STATE(2533), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3349), 2, + ACTIONS(3365), 2, anon_sym_async, anon_sym_default, - [50568] = 6, - ACTIONS(3339), 1, + [49632] = 6, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - STATE(1333), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1356), 1, + STATE(1371), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 13, + ACTIONS(2502), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111037,13 +111301,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50600] = 2, + [49664] = 6, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1346), 1, + sym_type_arguments, + STATE(1371), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 16, + ACTIONS(2544), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111051,20 +111322,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [50623] = 3, - ACTIONS(3399), 1, + [49696] = 3, + ACTIONS(3415), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3183), 15, + ACTIONS(3111), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111080,18 +111349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50648] = 3, - ACTIONS(2678), 1, - anon_sym_COLON, + [49721] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 14, + ACTIONS(2510), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_for, @@ -111099,82 +111368,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, + anon_sym_LT2, anon_sym_PIPE, - [50672] = 3, - ACTIONS(3401), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3187), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [50696] = 3, + [49744] = 3, + ACTIONS(2646), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2520), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2522), 13, + ACTIONS(2644), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [50720] = 6, - ACTIONS(3329), 1, - anon_sym_LPAREN, - ACTIONS(3403), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3333), 2, - anon_sym_COLON, + anon_sym_for, + anon_sym_where, anon_sym_EQ, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [50750] = 3, + [49768] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2552), 2, + ACTIONS(2522), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2554), 13, + ACTIONS(2524), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111188,11 +111412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [50774] = 2, + [49792] = 3, + ACTIONS(2730), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3197), 15, + ACTIONS(3113), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111207,14 +111433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [50796] = 3, - ACTIONS(2882), 1, + [49816] = 3, + ACTIONS(3417), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3187), 14, + ACTIONS(3113), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111229,44 +111454,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [50820] = 13, - ACTIONS(3331), 1, + [49840] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2530), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2532), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [49864] = 14, + ACTIONS(2482), 1, + anon_sym_PLUS, + ACTIONS(3343), 1, + anon_sym_PIPE, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3339), 1, + ACTIONS(3349), 1, + anon_sym_COLON, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3341), 1, + ACTIONS(3357), 1, anon_sym_AT, - ACTIONS(3345), 1, + ACTIONS(3361), 1, anon_sym_BANG, - ACTIONS(3405), 1, + ACTIONS(3419), 1, anon_sym_LPAREN, - ACTIONS(3407), 1, - anon_sym_RBRACK, - ACTIONS(3410), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - STATE(1348), 1, + STATE(1343), 1, sym_type_arguments, - STATE(1351), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3327), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3337), 2, + ACTIONS(3353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [50864] = 3, - ACTIONS(2616), 1, + ACTIONS(3421), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [49910] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3095), 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, + [49932] = 3, + ACTIONS(2618), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 14, + ACTIONS(2616), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111281,34 +111548,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50888] = 2, + [49956] = 13, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3357), 1, + anon_sym_AT, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3421), 1, + anon_sym_RBRACK, + ACTIONS(3426), 1, + anon_sym_LPAREN, + ACTIONS(3428), 1, + anon_sym_COLON_COLON, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2482), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3343), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50000] = 13, + ACTIONS(3343), 1, + anon_sym_PIPE, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(3349), 1, + anon_sym_COLON, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3357), 1, + anon_sym_AT, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3432), 1, + anon_sym_COLON_COLON, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2482), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [50044] = 3, + ACTIONS(2622), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 15, + ACTIONS(2620), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - sym_mutable_specifier, + anon_sym_COLON_COLON, anon_sym_PIPE, - sym_self, - [50910] = 3, + [50068] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 2, + ACTIONS(2556), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2542), 13, + ACTIONS(2558), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111322,13 +111652,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [50934] = 3, - ACTIONS(2608), 1, + [50092] = 6, + ACTIONS(3345), 1, + anon_sym_LPAREN, + ACTIONS(3434), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3349), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3343), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50122] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2905), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + sym_mutable_specifier, + anon_sym_PIPE, + sym_self, + [50144] = 3, + ACTIONS(2590), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 14, + ACTIONS(2588), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111343,11 +111717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50958] = 2, + [50168] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 15, + ACTIONS(3125), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111363,11 +111737,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50980] = 2, + [50190] = 3, + ACTIONS(2664), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2662), 14, + 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_COLON_COLON, + anon_sym_PIPE, + [50214] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 15, + ACTIONS(3119), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111383,13 +111778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [51002] = 3, - ACTIONS(2596), 1, + [50236] = 4, + ACTIONS(2546), 1, anon_sym_COLON, + ACTIONS(3436), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 14, + ACTIONS(2544), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111397,104 +111794,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [51026] = 3, - ACTIONS(2674), 1, - anon_sym_COLON, + [50261] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 14, + ACTIONS(2658), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [51050] = 13, - ACTIONS(3327), 1, - anon_sym_PIPE, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3333), 1, - anon_sym_COLON, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3341), 1, - anon_sym_AT, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3412), 1, - anon_sym_LPAREN, - ACTIONS(3414), 1, - anon_sym_COLON_COLON, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, + [50282] = 3, + ACTIONS(3438), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2478), 3, + ACTIONS(2630), 13, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [51094] = 14, - ACTIONS(2478), 1, - anon_sym_PLUS, - ACTIONS(3327), 1, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3333), 1, + [50305] = 4, + ACTIONS(2546), 1, anon_sym_COLON, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3341), 1, - anon_sym_AT, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3416), 1, - anon_sym_LPAREN, - ACTIONS(3418), 1, + ACTIONS(3115), 1, anon_sym_COLON_COLON, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3407), 2, + ACTIONS(2544), 12, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [51140] = 3, - ACTIONS(3420), 1, - anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_PIPE, + [50330] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 13, + ACTIONS(2648), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111506,63 +111875,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [51163] = 4, - ACTIONS(3424), 1, - anon_sym_pat, - STATE(542), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3422), 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, - [51188] = 3, - ACTIONS(2305), 1, - anon_sym_EQ, + [50351] = 4, + ACTIONS(2508), 1, + anon_sym_COLON, + ACTIONS(3440), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2307), 13, + ACTIONS(2506), 12, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51211] = 4, - ACTIONS(2534), 1, - anon_sym_COLON, - ACTIONS(3426), 1, - anon_sym_COLON_COLON, + [50376] = 3, + ACTIONS(3442), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 12, + ACTIONS(2666), 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, @@ -111570,11 +111919,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51236] = 2, + [50399] = 14, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, + ACTIONS(3444), 1, + anon_sym_COLON, + ACTIONS(3446), 1, + anon_sym_EQ, + ACTIONS(3448), 1, + anon_sym_COMMA, + ACTIONS(3450), 1, + anon_sym_GT, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + STATE(1992), 1, + aux_sym_type_parameters_repeat1, + STATE(1994), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2482), 2, + anon_sym_PLUS, + anon_sym_as, + [50444] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 14, + ACTIONS(2584), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111589,13 +111969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [51257] = 3, - ACTIONS(3428), 1, - anon_sym_DASH_GT, + [50465] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2666), 13, + ACTIONS(2684), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111607,15 +111985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [51280] = 3, - ACTIONS(3430), 1, + [50486] = 3, + ACTIONS(3452), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 13, + ACTIONS(2624), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111629,20 +112008,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51303] = 4, - ACTIONS(2504), 1, - anon_sym_COLON, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, + [50509] = 3, + ACTIONS(3454), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 12, + ACTIONS(2672), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -111650,19 +112028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51328] = 5, - ACTIONS(3438), 1, + [50532] = 5, + ACTIONS(3460), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3436), 2, + ACTIONS(3458), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3440), 2, + ACTIONS(3462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3434), 9, + ACTIONS(3456), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -111672,51 +112050,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51355] = 4, - ACTIONS(2534), 1, - anon_sym_COLON, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2532), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + [50559] = 3, + ACTIONS(2305), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [51380] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 14, + ACTIONS(2307), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51401] = 2, + [50582] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 14, + ACTIONS(2688), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111731,39 +112089,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [51422] = 3, - ACTIONS(3442), 1, - anon_sym_DASH_GT, + [50603] = 4, + ACTIONS(3466), 1, + anon_sym_pat, + STATE(564), 1, + sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3464), 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, + [50628] = 4, + ACTIONS(2546), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [51445] = 3, - ACTIONS(3444), 1, - anon_sym_DASH_GT, + ACTIONS(3440), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2680), 13, + ACTIONS(2544), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -111771,13 +112131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51468] = 3, - ACTIONS(3446), 1, + [50653] = 3, + ACTIONS(3468), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 13, + ACTIONS(2652), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111791,13 +112151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51491] = 3, - ACTIONS(3448), 1, + [50676] = 3, + ACTIONS(3470), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 13, + ACTIONS(2678), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111811,15 +112171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51514] = 4, - ACTIONS(2546), 1, + [50699] = 4, + ACTIONS(2504), 1, anon_sym_COLON, - ACTIONS(3432), 1, + ACTIONS(3440), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 12, + ACTIONS(2502), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111832,11 +112192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51539] = 2, + [50724] = 3, + ACTIONS(3472), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2658), 14, + ACTIONS(2638), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111848,35 +112210,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [51560] = 4, - ACTIONS(2534), 1, - anon_sym_COLON, - ACTIONS(3203), 1, - anon_sym_COLON_COLON, + [50747] = 3, + ACTIONS(3476), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 12, + ACTIONS(3474), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51585] = 2, + [50769] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 14, + ACTIONS(2732), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111888,45 +112247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [51606] = 14, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, - anon_sym_COLON, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_COMMA, - ACTIONS(3456), 1, - anon_sym_GT, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, - STATE(2010), 1, - aux_sym_type_parameters_repeat1, - STATE(2027), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2478), 2, - anon_sym_PLUS, - anon_sym_as, - [51651] = 2, + [50789] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2977), 13, + ACTIONS(2718), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111940,11 +112267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51671] = 2, + [50809] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2965), 13, + ACTIONS(590), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111958,11 +112285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51691] = 2, + [50829] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(628), 13, + ACTIONS(2787), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111976,11 +112303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51711] = 2, + [50849] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 13, + ACTIONS(2722), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111994,11 +112321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51731] = 2, + [50869] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2903), 13, + ACTIONS(2502), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112012,11 +112339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51751] = 2, + [50889] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 13, + ACTIONS(2714), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112030,11 +112357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51771] = 2, + [50909] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2931), 13, + ACTIONS(2726), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112048,29 +112375,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51791] = 2, + [50929] = 3, + ACTIONS(3480), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 13, + ACTIONS(3478), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51811] = 2, + [50951] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 13, + ACTIONS(648), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112084,11 +112412,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51831] = 2, + [50971] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(608), 13, + ACTIONS(2953), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112102,11 +112430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51851] = 2, + [50991] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2862), 13, + ACTIONS(2732), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112120,31 +112448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51871] = 4, - ACTIONS(3333), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51895] = 2, + [51011] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2935), 13, + ACTIONS(2865), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112158,11 +112466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51915] = 2, + [51031] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 13, + ACTIONS(2506), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112176,11 +112484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51935] = 2, + [51051] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2818), 13, + ACTIONS(2772), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112194,11 +112502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51955] = 2, + [51071] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 13, + ACTIONS(2937), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112212,11 +112520,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51975] = 2, + [51091] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 13, + ACTIONS(2544), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112230,11 +112538,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51995] = 2, + [51111] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 13, + ACTIONS(2957), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112248,11 +112556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52015] = 2, + [51131] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 13, + ACTIONS(2961), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112266,29 +112574,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52035] = 2, + [51151] = 4, + ACTIONS(3349), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2941), 13, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [52055] = 2, + [51175] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 13, + ACTIONS(2917), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112302,11 +112612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52075] = 2, + [51195] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 13, + ACTIONS(602), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112320,11 +112630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52095] = 2, + [51215] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 13, + ACTIONS(2702), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112338,11 +112648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52115] = 2, + [51235] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 13, + ACTIONS(2857), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112356,30 +112666,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52135] = 3, - ACTIONS(3460), 1, - anon_sym_EQ, + [51255] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3458), 12, + ACTIONS(2925), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [52157] = 2, + [51275] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(540), 13, + ACTIONS(2795), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112393,30 +112702,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52177] = 3, - ACTIONS(3464), 1, - anon_sym_EQ, + [51295] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 12, + ACTIONS(2748), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [52199] = 2, + [51315] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 13, + ACTIONS(2921), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112430,11 +112738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52219] = 2, + [51335] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 13, + ACTIONS(586), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112448,14 +112756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52239] = 3, + [51355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2528), 2, + ACTIONS(2514), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2530), 11, + ACTIONS(2516), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112467,53 +112775,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [52261] = 2, + [51377] = 5, + ACTIONS(2514), 1, + anon_sym_COLON, + ACTIONS(3482), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 13, - anon_sym_SEMI, + ACTIONS(2510), 5, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, + anon_sym_LT2, + ACTIONS(2516), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52281] = 4, + [51402] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3466), 2, + ACTIONS(3485), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2524), 4, + ACTIONS(2552), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2530), 6, + ACTIONS(2558), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52304] = 4, - ACTIONS(3473), 1, + [51425] = 10, + ACTIONS(3345), 1, + anon_sym_LPAREN, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(3351), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3357), 1, + anon_sym_AT, + ACTIONS(3488), 1, + anon_sym_BANG, + STATE(1343), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3343), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [51460] = 4, + ACTIONS(3494), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3471), 2, + ACTIONS(3492), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3469), 9, + ACTIONS(3490), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112523,35 +112858,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52327] = 4, - ACTIONS(3479), 1, - anon_sym_COLON_COLON, + [51483] = 3, + ACTIONS(556), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3475), 9, + ACTIONS(554), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [52350] = 4, - ACTIONS(3481), 1, + [51504] = 4, + ACTIONS(3500), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, + ACTIONS(3498), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3475), 9, + ACTIONS(3496), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112561,229 +112895,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52373] = 3, - ACTIONS(406), 1, - anon_sym_EQ, + [51527] = 4, + ACTIONS(3417), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(404), 11, + ACTIONS(3498), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3496), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [52394] = 3, - ACTIONS(402), 1, - anon_sym_EQ, + [51550] = 4, + ACTIONS(3502), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(400), 11, + ACTIONS(3498), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3496), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [52415] = 5, - ACTIONS(2552), 1, - anon_sym_COLON, + [51573] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2548), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3483), 3, + ACTIONS(3504), 2, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2554), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52440] = 5, - ACTIONS(2540), 1, - anon_sym_COLON, - ACTIONS(3486), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2536), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2542), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52465] = 5, - ACTIONS(2520), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2516), 3, + anon_sym_RBRACK, + ACTIONS(2526), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3489), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2522), 5, + ACTIONS(2532), 6, anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52490] = 5, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(3466), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2524), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2530), 5, - anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52515] = 4, + [51596] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3486), 2, + ACTIONS(3482), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2536), 4, + ACTIONS(2510), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2542), 6, + ACTIONS(2516), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52538] = 5, - ACTIONS(2552), 1, - anon_sym_COLON, - ACTIONS(3483), 1, - anon_sym_LPAREN, + [51619] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2548), 5, - anon_sym_RPAREN, + ACTIONS(3507), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2518), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2554), 5, + ACTIONS(2524), 6, anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52563] = 5, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2524), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3466), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2530), 5, - anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52588] = 5, - ACTIONS(2540), 1, + [51642] = 5, + ACTIONS(2530), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 3, + ACTIONS(2526), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3486), 3, + ACTIONS(3504), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2542), 5, + ACTIONS(2532), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52613] = 3, - ACTIONS(514), 1, - anon_sym_EQ, + [51667] = 4, + ACTIONS(3494), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(512), 11, + ACTIONS(3512), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3510), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [52634] = 4, - ACTIONS(3401), 1, + [51690] = 4, + ACTIONS(3500), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, + ACTIONS(3516), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3475), 9, + ACTIONS(3514), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112793,16 +113048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52657] = 4, - ACTIONS(3481), 1, + [51713] = 4, + ACTIONS(3417), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3494), 2, + ACTIONS(3516), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3492), 9, + ACTIONS(3514), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112812,60 +113067,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52680] = 4, + [51736] = 5, + ACTIONS(2514), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3483), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2548), 4, - anon_sym_SEMI, + ACTIONS(2510), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2554), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52703] = 10, - ACTIONS(3329), 1, + ACTIONS(3482), 3, anon_sym_LPAREN, - ACTIONS(3331), 1, - anon_sym_LBRACE, - ACTIONS(3335), 1, - anon_sym_COLON_COLON, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3341), 1, - anon_sym_AT, - ACTIONS(3496), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2516), 5, anon_sym_BANG, - STATE(1348), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 2, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 3, - anon_sym_EQ_GT, - anon_sym_if, anon_sym_PIPE, - [52738] = 4, - ACTIONS(3401), 1, + [51761] = 4, + ACTIONS(3502), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3494), 2, + ACTIONS(3516), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3492), 9, + ACTIONS(3514), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112875,90 +113106,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52761] = 4, - ACTIONS(3479), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3494), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3492), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52784] = 4, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3500), 2, + [51784] = 5, + ACTIONS(2556), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3498), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52807] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2516), 4, - anon_sym_SEMI, + ACTIONS(2552), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2522), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52830] = 5, - ACTIONS(2520), 1, - anon_sym_COLON, - ACTIONS(3489), 1, + ACTIONS(3485), 3, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2516), 5, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2522), 5, + ACTIONS(2558), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52855] = 3, - ACTIONS(3504), 1, + [51809] = 3, + ACTIONS(532), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3502), 10, + ACTIONS(530), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112967,15 +113141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [52875] = 3, - ACTIONS(3508), 1, + [51830] = 3, + ACTIONS(542), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3506), 10, + ACTIONS(540), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112984,81 +113159,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [52895] = 6, - ACTIONS(3510), 1, + [51851] = 5, + ACTIONS(2522), 1, anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3514), 1, - anon_sym_COLON_COLON, + ACTIONS(3507), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, + ACTIONS(2518), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2524), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52921] = 9, - ACTIONS(3339), 1, + anon_sym_PIPE, + [51876] = 5, + ACTIONS(2522), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2518), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3507), 3, anon_sym_LPAREN, - ACTIONS(3345), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2524), 5, anon_sym_BANG, - ACTIONS(3347), 1, anon_sym_COLON_COLON, - ACTIONS(3516), 1, - anon_sym_for, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51901] = 5, + ACTIONS(2530), 1, + anon_sym_COLON, + ACTIONS(3504), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 4, - anon_sym_SEMI, + ACTIONS(2526), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [52953] = 9, - ACTIONS(3339), 1, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(2532), 5, anon_sym_BANG, - ACTIONS(3347), 1, anon_sym_COLON_COLON, - ACTIONS(3518), 1, - anon_sym_for, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51926] = 5, + ACTIONS(2556), 1, + anon_sym_COLON, + ACTIONS(3485), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 4, - anon_sym_SEMI, + ACTIONS(2552), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [52985] = 3, - ACTIONS(3522), 1, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2558), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51951] = 3, + ACTIONS(3520), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3520), 10, + ACTIONS(3518), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113069,7 +113259,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53005] = 3, + [51971] = 9, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, + ACTIONS(3522), 1, + anon_sym_for, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2482), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52003] = 3, ACTIONS(3526), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -113086,40 +113299,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53025] = 9, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3528), 1, - anon_sym_for, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, + [52023] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3530), 1, + sym_crate, + STATE(1561), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 4, + ACTIONS(3528), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53057] = 5, - ACTIONS(732), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52047] = 5, + ACTIONS(736), 1, aux_sym_string_literal_token1, ACTIONS(3532), 1, sym_crate, - STATE(1562), 1, + STATE(1561), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 8, + ACTIONS(3528), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -113128,36 +113337,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53081] = 9, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_for, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, + [52071] = 3, + ACTIONS(600), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 4, + ACTIONS(598), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53113] = 3, - ACTIONS(3538), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52091] = 3, + ACTIONS(3536), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3536), 10, + ACTIONS(3534), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113168,63 +113371,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53133] = 9, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, + [52111] = 3, ACTIONS(3540), 1, - anon_sym_for, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 4, + ACTIONS(3538), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53165] = 9, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3542), 1, - anon_sym_for, - STATE(1348), 1, - sym_type_arguments, - STATE(1351), 1, - sym_parameters, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52131] = 3, + ACTIONS(3544), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 4, + ACTIONS(3542), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53197] = 5, - ACTIONS(732), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52151] = 5, + ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3544), 1, + ACTIONS(3546), 1, sym_crate, - STATE(1562), 1, + STATE(1561), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 8, + ACTIONS(3528), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -113233,13 +113424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53221] = 3, - ACTIONS(3494), 1, + [52175] = 3, + ACTIONS(3516), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3492), 10, + ACTIONS(3514), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113250,89 +113441,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53241] = 9, - ACTIONS(3339), 1, + [52195] = 3, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3548), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52215] = 9, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(3361), 1, anon_sym_BANG, - ACTIONS(3347), 1, + ACTIONS(3363), 1, anon_sym_COLON_COLON, - ACTIONS(3546), 1, + ACTIONS(3552), 1, anon_sym_for, - STATE(1348), 1, + STATE(1343), 1, sym_type_arguments, - STATE(1351), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 4, + ACTIONS(2482), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53273] = 5, - ACTIONS(732), 1, - aux_sym_string_literal_token1, - ACTIONS(3548), 1, - sym_crate, - STATE(1562), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3530), 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, - [53297] = 9, - ACTIONS(3339), 1, + [52247] = 9, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3345), 1, + ACTIONS(3361), 1, anon_sym_BANG, - ACTIONS(3347), 1, + ACTIONS(3363), 1, anon_sym_COLON_COLON, - ACTIONS(3550), 1, + ACTIONS(3554), 1, anon_sym_for, - STATE(1348), 1, + STATE(1343), 1, sym_type_arguments, - STATE(1351), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 4, + ACTIONS(2482), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53329] = 3, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3552), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [53349] = 3, + [52279] = 3, ACTIONS(3558), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -113349,30 +113521,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53369] = 3, + [52299] = 6, + ACTIONS(3560), 1, + anon_sym_COLON, ACTIONS(3562), 1, - anon_sym_EQ, + anon_sym_BANG, + ACTIONS(3564), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3560), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [53389] = 3, - ACTIONS(3566), 1, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52325] = 3, + ACTIONS(3568), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3564), 10, + ACTIONS(3566), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113383,13 +113558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53409] = 3, - ACTIONS(3570), 1, + [52345] = 3, + ACTIONS(3572), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3568), 10, + ACTIONS(3570), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113400,32 +113575,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53429] = 5, - ACTIONS(732), 1, - aux_sym_string_literal_token1, - ACTIONS(3572), 1, - sym_crate, - STATE(1562), 1, - sym_string_literal, + [52365] = 9, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, + ACTIONS(3574), 1, + anon_sym_for, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 8, + ACTIONS(2482), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53453] = 3, - ACTIONS(3576), 1, + anon_sym_PLUS, + anon_sym_where, + [52397] = 3, + ACTIONS(3578), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 10, + ACTIONS(3576), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113436,13 +113615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53473] = 3, - ACTIONS(590), 1, + [52417] = 3, + ACTIONS(3582), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(588), 10, + ACTIONS(3580), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113453,13 +113632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53493] = 3, - ACTIONS(3580), 1, + [52437] = 3, + ACTIONS(3349), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 10, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113470,13 +113649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53513] = 3, - ACTIONS(3584), 1, + [52457] = 3, + ACTIONS(3586), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3582), 10, + ACTIONS(3584), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113487,24 +113666,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53533] = 3, + [52477] = 9, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, ACTIONS(3588), 1, - anon_sym_EQ, + anon_sym_for, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3586), 10, + ACTIONS(2482), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [53553] = 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52509] = 3, ACTIONS(3592), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -113521,7 +113706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53573] = 3, + [52529] = 3, ACTIONS(3596), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -113538,7 +113723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53593] = 3, + [52549] = 3, ACTIONS(3600), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -113555,7 +113740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53613] = 3, + [52569] = 3, ACTIONS(3604), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -113572,7 +113757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53633] = 3, + [52589] = 3, ACTIONS(3608), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -113589,13 +113774,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53653] = 3, + [52609] = 9, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, + ACTIONS(3610), 1, + anon_sym_for, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2482), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52641] = 9, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, ACTIONS(3612), 1, + anon_sym_for, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2482), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52673] = 9, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, + ACTIONS(3614), 1, + anon_sym_for, + STATE(1343), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2482), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52705] = 3, + ACTIONS(3618), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 10, + ACTIONS(3616), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113606,13 +113860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53673] = 3, - ACTIONS(3616), 1, + [52725] = 3, + ACTIONS(3622), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3614), 10, + ACTIONS(3620), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113623,33 +113877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53693] = 6, - ACTIONS(3510), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3618), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53719] = 3, - ACTIONS(3622), 1, + [52745] = 3, + ACTIONS(3498), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 10, + ACTIONS(3496), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113660,13 +113894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53739] = 3, - ACTIONS(3477), 1, + [52765] = 3, + ACTIONS(3626), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3475), 10, + ACTIONS(3624), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113677,13 +113911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53759] = 3, - ACTIONS(3626), 1, + [52785] = 3, + ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 10, + ACTIONS(3628), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113694,13 +113928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53779] = 3, - ACTIONS(3333), 1, + [52805] = 3, + ACTIONS(3634), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3327), 10, + ACTIONS(3632), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113711,13 +113945,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53799] = 3, - ACTIONS(3630), 1, + [52825] = 6, + ACTIONS(3560), 1, + anon_sym_COLON, + ACTIONS(3562), 1, + anon_sym_BANG, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52851] = 3, + ACTIONS(3640), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 10, + ACTIONS(3638), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113728,13 +113982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53819] = 3, - ACTIONS(3634), 1, + [52871] = 3, + ACTIONS(3644), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3632), 10, + ACTIONS(3642), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113745,13 +113999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53839] = 3, - ACTIONS(3638), 1, + [52891] = 3, + ACTIONS(3648), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3636), 10, + ACTIONS(3646), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113762,13 +114016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53859] = 3, - ACTIONS(3642), 1, + [52911] = 3, + ACTIONS(3652), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3640), 10, + ACTIONS(3650), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113779,199 +114033,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [53879] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3644), 1, - sym_identifier, - ACTIONS(3646), 1, - anon_sym_RBRACE, - ACTIONS(3648), 1, - anon_sym_COMMA, - ACTIONS(3650), 1, + [52931] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3654), 1, sym_crate, - STATE(2086), 1, - sym_field_declaration, - STATE(2490), 1, - sym_visibility_modifier, + STATE(1561), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53912] = 9, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3652), 1, + ACTIONS(3528), 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, + [52955] = 3, + ACTIONS(3658), 1, anon_sym_EQ, - STATE(1351), 1, - sym_parameters, - STATE(1738), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 3, - anon_sym_PLUS, + ACTIONS(3656), 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, - [53943] = 5, - ACTIONS(3512), 1, + anon_sym_in, + anon_sym_PIPE, + [52975] = 5, + ACTIONS(3562), 1, anon_sym_BANG, - ACTIONS(3654), 1, + ACTIONS(3564), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, + ACTIONS(3462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2510), 6, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53966] = 10, + [52998] = 5, + ACTIONS(3562), 1, + anon_sym_BANG, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53021] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3656), 1, + ACTIONS(3660), 1, sym_identifier, - ACTIONS(3658), 1, + ACTIONS(3662), 1, anon_sym_RBRACE, - ACTIONS(3660), 1, + ACTIONS(3664), 1, anon_sym_COMMA, - STATE(1969), 1, + ACTIONS(3666), 1, + sym_crate, + STATE(2051), 1, sym_enum_variant, - STATE(2324), 1, + STATE(2542), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1543), 2, + STATE(1559), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53999] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3387), 1, - anon_sym_trait, - ACTIONS(3662), 1, - anon_sym_impl, - STATE(73), 1, - sym_block, + [53054] = 6, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + STATE(2099), 1, + sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54024] = 8, - ACTIONS(2245), 1, + ACTIONS(3668), 2, + anon_sym_true, + anon_sym_false, + STATE(1070), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [53079] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3664), 1, + ACTIONS(3660), 1, sym_identifier, ACTIONS(3666), 1, + sym_crate, + ACTIONS(3670), 1, anon_sym_RBRACE, - ACTIONS(3668), 1, + ACTIONS(3672), 1, anon_sym_COMMA, - ACTIONS(3670), 1, - anon_sym_DOT_DOT, + STATE(1863), 1, + sym_enum_variant, + STATE(2542), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1824), 2, + STATE(1546), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1922), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54053] = 5, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3618), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54076] = 5, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3514), 1, - anon_sym_COLON_COLON, + [53112] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_trait, + ACTIONS(3674), 1, + anon_sym_impl, + STATE(163), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2510), 6, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54099] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(1867), 1, - sym__literal, + [53137] = 8, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3676), 1, + sym_identifier, + ACTIONS(3678), 1, + anon_sym_RBRACE, + ACTIONS(3680), 1, + anon_sym_COMMA, + ACTIONS(3682), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3672), 2, - anon_sym_true, - anon_sym_false, - STATE(1106), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [54124] = 6, + STATE(1854), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1915), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53166] = 6, ACTIONS(93), 1, aux_sym_string_literal_token1, - STATE(1868), 1, + STATE(2103), 1, sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3672), 2, + ACTIONS(3668), 2, anon_sym_true, anon_sym_false, - STATE(1106), 2, + STATE(1070), 2, sym_string_literal, sym_boolean_literal, ACTIONS(91), 4, @@ -113979,42 +114229,82 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - [54149] = 7, - ACTIONS(3339), 1, + [53191] = 9, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3674), 1, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, + ACTIONS(3684), 1, + anon_sym_EQ, + STATE(1374), 1, + sym_parameters, + STATE(1749), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2482), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [53222] = 5, + ACTIONS(3562), 1, + anon_sym_BANG, + ACTIONS(3686), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53245] = 7, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3688), 1, anon_sym_LBRACE, - STATE(1333), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1356), 1, + STATE(1371), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 5, + ACTIONS(2544), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [54176] = 10, + [53272] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - ACTIONS(3656), 1, + ACTIONS(3690), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3692), 1, anon_sym_RBRACE, - ACTIONS(3678), 1, + ACTIONS(3694), 1, anon_sym_COMMA, - STATE(2048), 1, - sym_enum_variant, - STATE(2324), 1, + STATE(1897), 1, + sym_field_declaration, + STATE(2464), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, @@ -114022,1592 +114312,1755 @@ static const uint16_t ts_small_parse_table[] = { STATE(1547), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54209] = 10, + [53305] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3644), 1, - sym_identifier, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - ACTIONS(3680), 1, + ACTIONS(3690), 1, + sym_identifier, + ACTIONS(3696), 1, anon_sym_RBRACE, - ACTIONS(3682), 1, + ACTIONS(3698), 1, anon_sym_COMMA, - STATE(2064), 1, + STATE(2089), 1, sym_field_declaration, - STATE(2490), 1, + STATE(2464), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1561), 2, + STATE(1551), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54242] = 9, + [53338] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3656), 1, + ACTIONS(3660), 1, sym_identifier, - ACTIONS(3684), 1, + ACTIONS(3666), 1, + sym_crate, + ACTIONS(3700), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2198), 1, sym_enum_variant, - STATE(2324), 1, + STATE(2542), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1565), 2, + STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54272] = 7, - ACTIONS(3339), 1, + [53368] = 9, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(3702), 1, + sym_identifier, + ACTIONS(3704), 1, + anon_sym_const, + ACTIONS(3706), 1, + anon_sym_GT, + ACTIONS(3708), 1, + sym_metavariable, + STATE(1761), 1, + sym_lifetime, + STATE(1990), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2303), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53398] = 7, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3686), 1, + ACTIONS(3710), 1, anon_sym_for, - STATE(1333), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1356), 1, + STATE(1371), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, + ACTIONS(2544), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54298] = 5, - ACTIONS(3688), 1, - anon_sym_SEMI, - ACTIONS(3690), 1, + [53424] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(279), 1, - sym_declaration_list, + ACTIONS(3712), 1, + anon_sym_move, + STATE(99), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54320] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3656), 1, - sym_identifier, - ACTIONS(3692), 1, - anon_sym_RBRACE, - STATE(2223), 1, - sym_enum_variant, - STATE(2324), 1, - sym_visibility_modifier, + [53446] = 7, + ACTIONS(3345), 1, + anon_sym_LPAREN, + ACTIONS(3349), 1, + anon_sym_COLON, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3714), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1565), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54350] = 10, - ACTIONS(3694), 1, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3343), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [53472] = 10, + ACTIONS(3716), 1, anon_sym_SEMI, - ACTIONS(3696), 1, + ACTIONS(3718), 1, anon_sym_LPAREN, - ACTIONS(3698), 1, + ACTIONS(3720), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3702), 1, + ACTIONS(3724), 1, anon_sym_LT, - STATE(1004), 1, + STATE(924), 1, sym_field_declaration_list, - STATE(1588), 1, + STATE(1616), 1, sym_type_parameters, - STATE(2013), 1, + STATE(2014), 1, sym_ordered_field_declaration_list, - STATE(2239), 1, + STATE(2270), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54382] = 9, + [53504] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3644), 1, + ACTIONS(3660), 1, sym_identifier, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - ACTIONS(3704), 1, + ACTIONS(3726), 1, anon_sym_RBRACE, - STATE(2272), 1, - sym_field_declaration, - STATE(2490), 1, + STATE(2198), 1, + sym_enum_variant, + STATE(2542), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1540), 2, + STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54412] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3706), 1, - anon_sym_move, - STATE(89), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54434] = 9, + [53534] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3644), 1, - sym_identifier, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - ACTIONS(3708), 1, + ACTIONS(3690), 1, + sym_identifier, + ACTIONS(3728), 1, anon_sym_RBRACE, - STATE(2272), 1, + STATE(2292), 1, sym_field_declaration, - STATE(2490), 1, + STATE(2464), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1540), 2, + STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54464] = 5, - ACTIONS(3690), 1, + [53564] = 9, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(3702), 1, + sym_identifier, + ACTIONS(3704), 1, + anon_sym_const, + ACTIONS(3708), 1, + sym_metavariable, + ACTIONS(3730), 1, + anon_sym_GT, + STATE(1833), 1, + sym_lifetime, + STATE(1990), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2303), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53594] = 9, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(3702), 1, + sym_identifier, + ACTIONS(3704), 1, + anon_sym_const, + ACTIONS(3708), 1, + sym_metavariable, + ACTIONS(3732), 1, + anon_sym_GT, + STATE(1833), 1, + sym_lifetime, + STATE(1990), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2303), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53624] = 7, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3734), 1, + anon_sym_for, + STATE(1346), 1, + sym_type_arguments, + STATE(1371), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2544), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3710), 1, + anon_sym_PLUS, + anon_sym_where, + [53650] = 5, + ACTIONS(3736), 1, anon_sym_SEMI, - STATE(468), 1, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(312), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54486] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2245), 1, + [53672] = 7, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3656), 1, + ACTIONS(3676), 1, sym_identifier, - ACTIONS(3712), 1, + ACTIONS(3682), 1, + anon_sym_DOT_DOT, + ACTIONS(3740), 1, anon_sym_RBRACE, - STATE(2223), 1, - sym_enum_variant, - STATE(2324), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1565), 2, + STATE(1854), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54516] = 9, - ACTIONS(2241), 1, + STATE(2132), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53698] = 10, + ACTIONS(3718), 1, + anon_sym_LPAREN, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LT, + ACTIONS(3742), 1, + anon_sym_SEMI, + ACTIONS(3744), 1, + anon_sym_LBRACE, + STATE(373), 1, + sym_field_declaration_list, + STATE(1599), 1, + sym_type_parameters, + STATE(2049), 1, + sym_ordered_field_declaration_list, + STATE(2216), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53730] = 9, + ACTIONS(2245), 1, anon_sym_SQUOTE, - ACTIONS(3714), 1, + ACTIONS(3702), 1, sym_identifier, - ACTIONS(3716), 1, + ACTIONS(3704), 1, anon_sym_const, - ACTIONS(3718), 1, - anon_sym_GT, - ACTIONS(3720), 1, + ACTIONS(3708), 1, sym_metavariable, - STATE(1853), 1, + ACTIONS(3746), 1, + anon_sym_GT, + STATE(1833), 1, sym_lifetime, - STATE(1932), 1, + STATE(1990), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2294), 2, + STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [54546] = 10, - ACTIONS(3696), 1, - anon_sym_LPAREN, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3702), 1, - anon_sym_LT, - ACTIONS(3722), 1, + [53760] = 5, + ACTIONS(3748), 1, anon_sym_SEMI, - ACTIONS(3724), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - STATE(460), 1, - sym_field_declaration_list, - STATE(1572), 1, - sym_type_parameters, - STATE(2041), 1, - sym_ordered_field_declaration_list, - STATE(2209), 1, - sym_where_clause, + STATE(944), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53782] = 5, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(3752), 1, + anon_sym_SEMI, + STATE(812), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54578] = 9, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53804] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3644), 1, - sym_identifier, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - ACTIONS(3726), 1, + ACTIONS(3690), 1, + sym_identifier, + ACTIONS(3754), 1, anon_sym_RBRACE, - STATE(2272), 1, + STATE(2292), 1, sym_field_declaration, - STATE(2490), 1, + STATE(2464), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1540), 2, + STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54608] = 7, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_for, - STATE(1333), 1, - sym_type_arguments, - STATE(1356), 1, - sym_parameters, + [53834] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3666), 1, + sym_crate, + ACTIONS(3690), 1, + sym_identifier, + ACTIONS(3756), 1, + anon_sym_RBRACE, + STATE(2292), 1, + sym_field_declaration, + STATE(2464), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54634] = 9, + STATE(1567), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53864] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - ACTIONS(3656), 1, + ACTIONS(3690), 1, sym_identifier, - ACTIONS(3730), 1, + ACTIONS(3758), 1, anon_sym_RBRACE, - STATE(2223), 1, - sym_enum_variant, - STATE(2324), 1, + STATE(2292), 1, + sym_field_declaration, + STATE(2464), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1565), 2, + STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54664] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3732), 1, + [53894] = 9, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(3702), 1, sym_identifier, - STATE(68), 1, - sym_block, + ACTIONS(3704), 1, + anon_sym_const, + ACTIONS(3708), 1, + sym_metavariable, + ACTIONS(3760), 1, + anon_sym_GT, + STATE(1833), 1, + sym_lifetime, + STATE(1990), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54686] = 7, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3736), 1, - anon_sym_for, - STATE(1333), 1, - sym_type_arguments, - STATE(1356), 1, - sym_parameters, + STATE(2303), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53924] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3660), 1, + sym_identifier, + ACTIONS(3666), 1, + sym_crate, + ACTIONS(3762), 1, + anon_sym_RBRACE, + STATE(2198), 1, + sym_enum_variant, + STATE(2542), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54712] = 7, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3738), 1, - anon_sym_for, - STATE(1333), 1, - sym_type_arguments, - STATE(1356), 1, - sym_parameters, + STATE(1548), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53954] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3660), 1, + sym_identifier, + ACTIONS(3666), 1, + sym_crate, + ACTIONS(3764), 1, + anon_sym_RBRACE, + STATE(2198), 1, + sym_enum_variant, + STATE(2542), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54738] = 10, - ACTIONS(3696), 1, - anon_sym_LPAREN, - ACTIONS(3698), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3702), 1, - anon_sym_LT, - ACTIONS(3740), 1, - anon_sym_SEMI, - STATE(898), 1, - sym_field_declaration_list, - STATE(1606), 1, - sym_type_parameters, - STATE(2105), 1, - sym_ordered_field_declaration_list, - STATE(2131), 1, - sym_where_clause, + STATE(1548), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53984] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3666), 1, + sym_crate, + ACTIONS(3690), 1, + sym_identifier, + ACTIONS(3766), 1, + anon_sym_RBRACE, + STATE(2292), 1, + sym_field_declaration, + STATE(2464), 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, + [54014] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3660), 1, + sym_identifier, + ACTIONS(3666), 1, + sym_crate, + ACTIONS(3768), 1, + anon_sym_RBRACE, + STATE(2198), 1, + sym_enum_variant, + STATE(2542), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54770] = 10, - ACTIONS(3696), 1, + STATE(1548), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54044] = 10, + ACTIONS(3718), 1, anon_sym_LPAREN, - ACTIONS(3700), 1, + ACTIONS(3720), 1, + anon_sym_LBRACE, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3702), 1, - anon_sym_LT, ACTIONS(3724), 1, - anon_sym_LBRACE, - ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3770), 1, anon_sym_SEMI, - STATE(374), 1, + STATE(918), 1, sym_field_declaration_list, - STATE(1608), 1, + STATE(1580), 1, sym_type_parameters, - STATE(1891), 1, + STATE(2108), 1, sym_ordered_field_declaration_list, - STATE(2227), 1, + STATE(2146), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54802] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3656), 1, - sym_identifier, - ACTIONS(3744), 1, - anon_sym_RBRACE, - STATE(2223), 1, - sym_enum_variant, - STATE(2324), 1, - sym_visibility_modifier, + [54076] = 5, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(3772), 1, + anon_sym_SEMI, + STATE(466), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1565), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54832] = 7, - ACTIONS(3339), 1, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54098] = 7, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_for, - STATE(1333), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1356), 1, + STATE(1371), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, + ACTIONS(2544), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54858] = 7, - ACTIONS(3329), 1, + [54124] = 7, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3333), 1, - anon_sym_COLON, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3748), 1, - anon_sym_COLON_COLON, + ACTIONS(3776), 1, + anon_sym_for, + STATE(1346), 1, + sym_type_arguments, + STATE(1371), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [54884] = 9, - ACTIONS(2241), 1, + ACTIONS(2544), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54150] = 9, + ACTIONS(2245), 1, anon_sym_SQUOTE, - ACTIONS(3714), 1, + ACTIONS(3702), 1, sym_identifier, - ACTIONS(3716), 1, + ACTIONS(3704), 1, anon_sym_const, - ACTIONS(3720), 1, + ACTIONS(3708), 1, sym_metavariable, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_GT, - STATE(1813), 1, + STATE(1833), 1, sym_lifetime, - STATE(1932), 1, + STATE(1990), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2294), 2, + STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [54914] = 9, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(3714), 1, - sym_identifier, - ACTIONS(3716), 1, - anon_sym_const, - ACTIONS(3720), 1, - sym_metavariable, - ACTIONS(3752), 1, - anon_sym_GT, - STATE(1813), 1, - sym_lifetime, - STATE(1932), 1, - sym_constrained_type_parameter, + [54180] = 7, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_for, + STATE(1346), 1, + sym_type_arguments, + STATE(1371), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2294), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54944] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3656), 1, - sym_identifier, - ACTIONS(3754), 1, - anon_sym_RBRACE, - STATE(2223), 1, - sym_enum_variant, - STATE(2324), 1, - sym_visibility_modifier, + ACTIONS(2544), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54206] = 7, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, + anon_sym_for, + STATE(1346), 1, + sym_type_arguments, + STATE(1371), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1565), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54974] = 9, - ACTIONS(2241), 1, + ACTIONS(2544), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54232] = 9, + ACTIONS(2245), 1, anon_sym_SQUOTE, - ACTIONS(3714), 1, + ACTIONS(3702), 1, sym_identifier, - ACTIONS(3716), 1, + ACTIONS(3704), 1, anon_sym_const, - ACTIONS(3720), 1, + ACTIONS(3708), 1, sym_metavariable, - ACTIONS(3756), 1, + ACTIONS(3784), 1, anon_sym_GT, - STATE(1813), 1, + STATE(1833), 1, sym_lifetime, - STATE(1932), 1, + STATE(1990), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2294), 2, + STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [55004] = 7, + [54262] = 9, ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3670), 1, - anon_sym_DOT_DOT, - ACTIONS(3758), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1824), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2253), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [55030] = 9, - ACTIONS(2241), 1, anon_sym_SQUOTE, - ACTIONS(3714), 1, + ACTIONS(3702), 1, sym_identifier, - ACTIONS(3716), 1, + ACTIONS(3704), 1, anon_sym_const, - ACTIONS(3720), 1, + ACTIONS(3708), 1, sym_metavariable, - ACTIONS(3760), 1, + ACTIONS(3786), 1, anon_sym_GT, - STATE(1813), 1, + STATE(1833), 1, sym_lifetime, - STATE(1932), 1, + STATE(1990), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2294), 2, + STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [55060] = 7, - ACTIONS(3339), 1, + [54292] = 7, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(3788), 1, anon_sym_for, - STATE(1333), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1356), 1, + STATE(1371), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, + ACTIONS(2544), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [55086] = 9, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(3714), 1, - sym_identifier, - ACTIONS(3716), 1, - anon_sym_const, - ACTIONS(3720), 1, - sym_metavariable, - ACTIONS(3764), 1, - anon_sym_GT, - STATE(1813), 1, - sym_lifetime, - STATE(1932), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2294), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55116] = 7, - ACTIONS(3339), 1, + [54318] = 7, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3766), 1, + ACTIONS(3790), 1, anon_sym_for, - STATE(1333), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1356), 1, + STATE(1371), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, + ACTIONS(2544), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [55142] = 7, + [54344] = 9, ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3670), 1, - anon_sym_DOT_DOT, - ACTIONS(3768), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1824), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2253), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [55168] = 9, - ACTIONS(2241), 1, anon_sym_SQUOTE, - ACTIONS(3714), 1, + ACTIONS(3702), 1, sym_identifier, - ACTIONS(3716), 1, + ACTIONS(3704), 1, anon_sym_const, - ACTIONS(3720), 1, + ACTIONS(3708), 1, sym_metavariable, - ACTIONS(3770), 1, + ACTIONS(3792), 1, anon_sym_GT, - STATE(1813), 1, + STATE(1833), 1, sym_lifetime, - STATE(1932), 1, + STATE(1990), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2294), 2, + STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [55198] = 7, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3772), 1, - anon_sym_for, - STATE(1333), 1, - sym_type_arguments, - STATE(1356), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [55224] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2245), 1, + [54374] = 7, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3644), 1, + ACTIONS(3676), 1, sym_identifier, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3774), 1, + ACTIONS(3682), 1, + anon_sym_DOT_DOT, + ACTIONS(3794), 1, anon_sym_RBRACE, - STATE(2272), 1, - sym_field_declaration, - STATE(2490), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1540), 2, + STATE(1854), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55254] = 9, + STATE(2132), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54400] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3796), 1, + sym_identifier, + STATE(102), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3798), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54422] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3644), 1, - sym_identifier, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - ACTIONS(3776), 1, + ACTIONS(3690), 1, + sym_identifier, + ACTIONS(3800), 1, anon_sym_RBRACE, - STATE(2272), 1, + STATE(2292), 1, sym_field_declaration, - STATE(2490), 1, + STATE(2464), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1540), 2, + STATE(1567), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55284] = 9, + [54452] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3644), 1, + ACTIONS(3660), 1, sym_identifier, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - ACTIONS(3778), 1, + ACTIONS(3802), 1, anon_sym_RBRACE, - STATE(2272), 1, - sym_field_declaration, - STATE(2490), 1, + STATE(2198), 1, + sym_enum_variant, + STATE(2542), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1540), 2, + STATE(1548), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55314] = 5, - ACTIONS(3780), 1, - anon_sym_SEMI, - ACTIONS(3782), 1, + [54482] = 10, + ACTIONS(3718), 1, + anon_sym_LPAREN, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_LBRACE, - STATE(996), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55336] = 9, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(3714), 1, - sym_identifier, - ACTIONS(3716), 1, - anon_sym_const, - ACTIONS(3720), 1, - sym_metavariable, - ACTIONS(3784), 1, - anon_sym_GT, - STATE(1813), 1, - sym_lifetime, - STATE(1932), 1, - sym_constrained_type_parameter, + ACTIONS(3804), 1, + anon_sym_SEMI, + STATE(289), 1, + sym_field_declaration_list, + STATE(1612), 1, + sym_type_parameters, + STATE(1872), 1, + sym_ordered_field_declaration_list, + STATE(2170), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2294), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55366] = 5, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_SEMI, - STATE(991), 1, - sym_declaration_list, + [54514] = 4, + ACTIONS(3436), 1, + anon_sym_COLON_COLON, + ACTIONS(3562), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55388] = 9, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(3714), 1, + [54533] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3660), 1, sym_identifier, - ACTIONS(3716), 1, - anon_sym_const, - ACTIONS(3720), 1, - sym_metavariable, - ACTIONS(3788), 1, - anon_sym_GT, - STATE(1813), 1, - sym_lifetime, - STATE(1932), 1, - sym_constrained_type_parameter, + ACTIONS(3666), 1, + sym_crate, + STATE(2198), 1, + sym_enum_variant, + STATE(2542), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2294), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55418] = 4, - ACTIONS(3363), 1, - anon_sym_trait, - ACTIONS(3790), 1, - anon_sym_impl, + STATE(1548), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54560] = 4, + ACTIONS(3808), 1, + anon_sym_PLUS, + STATE(1545), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55437] = 9, - ACTIONS(3700), 1, + ACTIONS(3806), 6, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_where, - ACTIONS(3782), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54579] = 9, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3792), 1, + ACTIONS(3810), 1, anon_sym_COLON, - ACTIONS(3794), 1, + ACTIONS(3812), 1, anon_sym_LT, - STATE(1003), 1, + STATE(939), 1, sym_declaration_list, - STATE(1652), 1, + STATE(1658), 1, sym_type_parameters, - STATE(1783), 1, + STATE(1815), 1, sym_trait_bounds, - STATE(2231), 1, + STATE(2157), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55466] = 4, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, - ACTIONS(3796), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55485] = 6, - ACTIONS(3654), 1, + [54608] = 6, + ACTIONS(3686), 1, anon_sym_COLON_COLON, - ACTIONS(3798), 1, + ACTIONS(3814), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 2, + ACTIONS(2544), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3434), 2, + ACTIONS(3456), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55508] = 6, - ACTIONS(3434), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3514), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3440), 2, + ACTIONS(3462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2532), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55531] = 4, - ACTIONS(3803), 1, - anon_sym_PLUS, - STATE(1545), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3801), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55550] = 8, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(3716), 1, - anon_sym_const, - ACTIONS(3805), 1, + [54631] = 8, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3807), 1, - sym_metavariable, - STATE(1714), 1, - sym_lifetime, - STATE(1804), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1859), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55577] = 6, - ACTIONS(3329), 1, - anon_sym_LPAREN, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3809), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 3, - anon_sym_RBRACK, + ACTIONS(3819), 1, + anon_sym_RBRACE, + ACTIONS(3821), 1, anon_sym_COMMA, - anon_sym_PIPE, - [55600] = 8, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(3716), 1, - anon_sym_const, - ACTIONS(3811), 1, - sym_identifier, - ACTIONS(3813), 1, - sym_metavariable, - STATE(1752), 1, - sym_lifetime, - STATE(1766), 1, - sym_constrained_type_parameter, + ACTIONS(3823), 1, + anon_sym_ref, + ACTIONS(3825), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2000), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55627] = 4, - ACTIONS(3815), 1, + STATE(2112), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54658] = 4, + ACTIONS(3827), 1, anon_sym_PLUS, STATE(1545), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3801), 6, + ACTIONS(3806), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55646] = 4, - ACTIONS(3817), 1, + [54677] = 4, + ACTIONS(3829), 1, anon_sym_PLUS, STATE(1545), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3801), 6, + ACTIONS(3806), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55665] = 4, - ACTIONS(2652), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_BANG, + [54696] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3666), 1, + sym_crate, + ACTIONS(3690), 1, + sym_identifier, + STATE(2292), 1, + sym_field_declaration, + STATE(2464), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55684] = 6, - ACTIONS(3329), 1, + STATE(1567), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54723] = 6, + ACTIONS(3345), 1, anon_sym_LPAREN, - ACTIONS(3403), 1, - anon_sym_COLON_COLON, - ACTIONS(3496), 1, + ACTIONS(3361), 1, anon_sym_BANG, + ACTIONS(3831), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, + ACTIONS(3353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 3, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(3343), 3, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_PIPE, - [55707] = 8, - ACTIONS(53), 1, - anon_sym_pub, + [54746] = 8, ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3644), 1, - sym_identifier, - ACTIONS(3650), 1, - sym_crate, - STATE(2214), 1, - sym_field_declaration, - STATE(2490), 1, - sym_visibility_modifier, + anon_sym_SQUOTE, + ACTIONS(3704), 1, + anon_sym_const, + ACTIONS(3833), 1, + sym_identifier, + ACTIONS(3835), 1, + sym_metavariable, + STATE(1710), 1, + sym_lifetime, + STATE(1806), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1079), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55734] = 4, + STATE(2111), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54773] = 8, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3817), 1, + sym_identifier, ACTIONS(3823), 1, - anon_sym_PLUS, - STATE(1541), 1, - aux_sym_trait_bounds_repeat1, + anon_sym_ref, + ACTIONS(3825), 1, + sym_mutable_specifier, + ACTIONS(3837), 1, + anon_sym_RBRACE, + ACTIONS(3839), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3821), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55753] = 9, - ACTIONS(3700), 1, + STATE(2027), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54800] = 9, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(3792), 1, + ACTIONS(3810), 1, anon_sym_COLON, - ACTIONS(3794), 1, + ACTIONS(3812), 1, anon_sym_LT, - STATE(931), 1, + STATE(330), 1, sym_declaration_list, - STATE(1688), 1, + STATE(1662), 1, sym_type_parameters, - STATE(1818), 1, + STATE(1812), 1, sym_trait_bounds, - STATE(2138), 1, + STATE(2229), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55782] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3656), 1, - sym_identifier, - STATE(1991), 1, - sym_enum_variant, - STATE(2324), 1, - sym_visibility_modifier, + [54829] = 9, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(3810), 1, + anon_sym_COLON, + ACTIONS(3812), 1, + anon_sym_LT, + STATE(260), 1, + sym_declaration_list, + STATE(1673), 1, + sym_type_parameters, + STATE(1805), 1, + sym_trait_bounds, + STATE(2144), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1079), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55809] = 8, - ACTIONS(824), 1, - anon_sym_DOT_DOT, - ACTIONS(3826), 1, + [54858] = 8, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(3704), 1, + anon_sym_const, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3828), 1, - anon_sym_RBRACE, - ACTIONS(3830), 1, - anon_sym_COMMA, - ACTIONS(3832), 1, - anon_sym_ref, - ACTIONS(3834), 1, - sym_mutable_specifier, + ACTIONS(3835), 1, + sym_metavariable, + STATE(1702), 1, + sym_lifetime, + STATE(1806), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2018), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55836] = 4, - ACTIONS(3817), 1, + STATE(2111), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54885] = 4, + ACTIONS(3808), 1, anon_sym_PLUS, - STATE(1541), 1, + STATE(1569), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3836), 6, + ACTIONS(3841), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55855] = 7, - ACTIONS(2532), 1, - anon_sym_PLUS, - ACTIONS(3434), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3618), 1, - anon_sym_COLON_COLON, + [54904] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3660), 1, + sym_identifier, + ACTIONS(3666), 1, + sym_crate, + STATE(1919), 1, + sym_enum_variant, + STATE(2542), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3798), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55880] = 8, + STATE(1058), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54931] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - ACTIONS(3656), 1, + ACTIONS(3690), 1, sym_identifier, - STATE(2119), 1, + STATE(2042), 1, + sym_field_declaration, + STATE(2464), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1058), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54958] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3660), 1, + sym_identifier, + ACTIONS(3666), 1, + sym_crate, + STATE(2159), 1, sym_enum_variant, - STATE(2324), 1, + STATE(2542), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1079), 2, + STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55907] = 9, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(3794), 1, - anon_sym_LT, - STATE(255), 1, - sym_declaration_list, - STATE(1621), 1, - sym_type_parameters, - STATE(1850), 1, - sym_trait_bounds, - STATE(2193), 1, - sym_where_clause, + [54985] = 5, + ACTIONS(3845), 1, + anon_sym_fn, + ACTIONS(3847), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55936] = 4, - ACTIONS(3426), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, - anon_sym_BANG, + STATE(1552), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3843), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [55006] = 4, + ACTIONS(3403), 1, + anon_sym_trait, + ACTIONS(3849), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55955] = 8, + [55025] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3644), 1, - sym_identifier, - ACTIONS(3650), 1, + ACTIONS(3666), 1, sym_crate, - STATE(2272), 1, + ACTIONS(3690), 1, + sym_identifier, + STATE(1860), 1, sym_field_declaration, - STATE(2490), 1, + STATE(2464), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1540), 2, + STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55982] = 8, - ACTIONS(824), 1, - anon_sym_DOT_DOT, - ACTIONS(3826), 1, - sym_identifier, - ACTIONS(3832), 1, - anon_sym_ref, - ACTIONS(3834), 1, - sym_mutable_specifier, - ACTIONS(3838), 1, - anon_sym_RBRACE, - ACTIONS(3840), 1, - anon_sym_COMMA, + [55052] = 5, + ACTIONS(3854), 1, + anon_sym_fn, + ACTIONS(3856), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2009), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56009] = 4, - ACTIONS(732), 1, + STATE(1552), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3851), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [55073] = 8, + ACTIONS(3859), 1, + anon_sym_LPAREN, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(3867), 1, + anon_sym_LBRACK, + STATE(1553), 1, + aux_sym_macro_definition_repeat1, + STATE(2488), 1, + sym_token_tree_pattern, + STATE(2495), 1, + sym_macro_rule, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3862), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [55100] = 4, + ACTIONS(736), 1, aux_sym_string_literal_token1, - STATE(1562), 1, + STATE(1561), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, + ACTIONS(3528), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56028] = 6, - ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3670), 1, - anon_sym_DOT_DOT, + [55119] = 4, + ACTIONS(3494), 1, + anon_sym_COLON_COLON, + ACTIONS(3870), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1824), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2253), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [56051] = 5, - ACTIONS(3845), 1, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(3847), 1, + anon_sym_unsafe, anon_sym_extern, + [55138] = 9, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(3810), 1, + anon_sym_COLON, + ACTIONS(3812), 1, + anon_sym_LT, + STATE(928), 1, + sym_declaration_list, + STATE(1622), 1, + sym_type_parameters, + STATE(1827), 1, + sym_trait_bounds, + STATE(2267), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1554), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3842), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [56072] = 8, - ACTIONS(2241), 1, + [55167] = 6, + ACTIONS(3345), 1, + anon_sym_LPAREN, + ACTIONS(3434), 1, + anon_sym_COLON_COLON, + ACTIONS(3488), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3343), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [55190] = 8, + ACTIONS(2245), 1, anon_sym_SQUOTE, - ACTIONS(3714), 1, + ACTIONS(3702), 1, sym_identifier, - ACTIONS(3716), 1, + ACTIONS(3704), 1, anon_sym_const, - ACTIONS(3720), 1, + ACTIONS(3708), 1, sym_metavariable, - STATE(1813), 1, + STATE(1833), 1, sym_lifetime, - STATE(1932), 1, + STATE(1990), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2294), 2, + STATE(2303), 2, sym_const_parameter, sym_optional_type_parameter, - [56099] = 8, + [55217] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2245), 1, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3656), 1, + ACTIONS(3660), 1, sym_identifier, - STATE(2223), 1, + ACTIONS(3666), 1, + sym_crate, + STATE(2122), 1, sym_enum_variant, - STATE(2324), 1, + STATE(2542), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1565), 2, + STATE(1058), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56126] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2245), 1, + [55244] = 6, + ACTIONS(2249), 1, anon_sym_POUND, - ACTIONS(3644), 1, + ACTIONS(3676), 1, sym_identifier, - ACTIONS(3650), 1, - sym_crate, - STATE(2085), 1, - sym_field_declaration, - STATE(2490), 1, - sym_visibility_modifier, + ACTIONS(3682), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1079), 2, + STATE(1854), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56153] = 9, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(3794), 1, - anon_sym_LT, - STATE(412), 1, - sym_declaration_list, - STATE(1694), 1, - sym_type_parameters, - STATE(1826), 1, - sym_trait_bounds, - STATE(2130), 1, - sym_where_clause, + STATE(2132), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [55267] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56182] = 4, - ACTIONS(884), 1, + ACTIONS(3872), 8, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1452), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2510), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56201] = 9, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [55282] = 9, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3792), 1, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(3810), 1, anon_sym_COLON, - ACTIONS(3794), 1, + ACTIONS(3812), 1, anon_sym_LT, - STATE(379), 1, + STATE(378), 1, sym_declaration_list, - STATE(1655), 1, + STATE(1633), 1, sym_type_parameters, - STATE(1776), 1, + STATE(1823), 1, sym_trait_bounds, - STATE(2229), 1, + STATE(2226), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56230] = 8, - ACTIONS(53), 1, - anon_sym_pub, + [55311] = 8, ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3644), 1, + anon_sym_SQUOTE, + ACTIONS(3704), 1, + anon_sym_const, + ACTIONS(3874), 1, sym_identifier, - ACTIONS(3650), 1, - sym_crate, - STATE(1890), 1, - sym_field_declaration, - STATE(2490), 1, - sym_visibility_modifier, + ACTIONS(3876), 1, + sym_metavariable, + STATE(1748), 1, + sym_lifetime, + STATE(1830), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1079), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [56257] = 2, + STATE(2001), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55338] = 6, + ACTIONS(3456), 1, + anon_sym_PIPE, + ACTIONS(3458), 1, + anon_sym_COLON, + ACTIONS(3564), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3850), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2544), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [55361] = 4, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, + ACTIONS(3878), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56272] = 5, - ACTIONS(3854), 1, - anon_sym_fn, - ACTIONS(3856), 1, - anon_sym_extern, + [55380] = 4, + ACTIONS(888), 1, + anon_sym_LBRACE, + STATE(1435), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1554), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3852), 4, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [56293] = 9, - ACTIONS(3700), 1, + anon_sym_extern, + [55399] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(3666), 1, + sym_crate, + ACTIONS(3690), 1, + sym_identifier, + STATE(2215), 1, + sym_field_declaration, + STATE(2464), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1058), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55426] = 9, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3792), 1, + ACTIONS(3810), 1, anon_sym_COLON, - ACTIONS(3794), 1, + ACTIONS(3812), 1, anon_sym_LT, - STATE(790), 1, + STATE(775), 1, sym_declaration_list, - STATE(1692), 1, + STATE(1680), 1, sym_type_parameters, - STATE(1822), 1, + STATE(1803), 1, sym_trait_bounds, - STATE(2171), 1, + STATE(2174), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56322] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(3650), 1, - sym_crate, - ACTIONS(3656), 1, - sym_identifier, - STATE(2260), 1, - sym_enum_variant, - STATE(2324), 1, - sym_visibility_modifier, + [55455] = 4, + ACTIONS(3882), 1, + anon_sym_PLUS, + STATE(1569), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1079), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [56349] = 8, - ACTIONS(3858), 1, + ACTIONS(3880), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55474] = 7, + ACTIONS(2544), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_PIPE, + ACTIONS(3458), 1, + anon_sym_COLON, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3814), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55499] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3880), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55513] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3880), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55527] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3880), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55541] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3863), 1, + ACTIONS(3887), 1, + anon_sym_RPAREN, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3866), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - STATE(1566), 1, + STATE(1588), 1, aux_sym_macro_definition_repeat1, - STATE(2342), 1, + STATE(2277), 1, + sym_macro_rule, + STATE(2488), 1, sym_token_tree_pattern, - STATE(2444), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55567] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3880), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55581] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3880), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55595] = 6, + ACTIONS(3893), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, + anon_sym_COLON_COLON, + STATE(2009), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3895), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [55617] = 8, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3889), 1, + anon_sym_LBRACE, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3901), 1, + anon_sym_RPAREN, + STATE(1589), 1, + aux_sym_macro_definition_repeat1, + STATE(2274), 1, sym_macro_rule, + STATE(2488), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55643] = 7, + ACTIONS(3343), 1, + anon_sym_PIPE, + ACTIONS(3345), 1, + anon_sym_LPAREN, + ACTIONS(3349), 1, + anon_sym_COLON, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(3903), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55667] = 8, + ACTIONS(3718), 1, + anon_sym_LPAREN, + ACTIONS(3720), 1, + anon_sym_LBRACE, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3905), 1, + anon_sym_SEMI, + STATE(784), 1, + sym_field_declaration_list, + STATE(2090), 1, + sym_ordered_field_declaration_list, + STATE(2171), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55693] = 6, + ACTIONS(3893), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_COLON_COLON, + STATE(2009), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3861), 2, + ACTIONS(3895), 3, anon_sym_RPAREN, - anon_sym_RBRACE, - [56376] = 8, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(3716), 1, - anon_sym_const, - ACTIONS(3805), 1, - sym_identifier, - ACTIONS(3807), 1, - sym_metavariable, - STATE(1640), 1, - sym_lifetime, - STATE(1804), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1859), 2, - sym_const_parameter, - sym_optional_type_parameter, - [56403] = 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [55715] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3821), 7, + ACTIONS(3909), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -115615,426 +116068,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56417] = 6, - ACTIONS(3696), 1, + [55729] = 6, + ACTIONS(3893), 1, anon_sym_LPAREN, - ACTIONS(3698), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, + ACTIONS(3897), 1, anon_sym_EQ, + ACTIONS(3911), 1, + anon_sym_COLON_COLON, + STATE(2009), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3869), 2, - anon_sym_RBRACE, + ACTIONS(3895), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1994), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [56439] = 2, + [55751] = 6, + ACTIONS(3494), 1, + anon_sym_COLON_COLON, + ACTIONS(3893), 1, + anon_sym_LPAREN, + ACTIONS(3915), 1, + anon_sym_EQ, + STATE(2021), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3873), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3913), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [56453] = 8, - ACTIONS(3875), 1, + [55773] = 6, + ACTIONS(3718), 1, anon_sym_LPAREN, - ACTIONS(3877), 1, - anon_sym_RPAREN, - ACTIONS(3879), 1, + ACTIONS(3720), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, - anon_sym_LBRACK, - STATE(1566), 1, - aux_sym_macro_definition_repeat1, - STATE(2241), 1, - sym_macro_rule, - STATE(2342), 1, - sym_token_tree_pattern, + ACTIONS(3919), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56479] = 8, - ACTIONS(3696), 1, - anon_sym_LPAREN, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LBRACE, - ACTIONS(3883), 1, - anon_sym_SEMI, - STATE(283), 1, + ACTIONS(3917), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2056), 2, sym_field_declaration_list, - STATE(1873), 1, sym_ordered_field_declaration_list, - STATE(2175), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56505] = 8, - ACTIONS(3875), 1, - anon_sym_LPAREN, - ACTIONS(3879), 1, - anon_sym_LBRACE, - ACTIONS(3881), 1, - anon_sym_LBRACK, - ACTIONS(3885), 1, - anon_sym_RPAREN, - STATE(1566), 1, - aux_sym_macro_definition_repeat1, - STATE(2246), 1, - sym_macro_rule, - STATE(2342), 1, - sym_token_tree_pattern, + [55795] = 3, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56531] = 7, - ACTIONS(824), 1, - anon_sym_DOT_DOT, - ACTIONS(3826), 1, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55811] = 3, + ACTIONS(3921), 1, sym_identifier, - ACTIONS(3832), 1, - anon_sym_ref, - ACTIONS(3834), 1, - sym_mutable_specifier, - ACTIONS(3887), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2261), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56555] = 8, - ACTIONS(3875), 1, + ACTIONS(3798), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55827] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3889), 1, + ACTIONS(3923), 1, anon_sym_RPAREN, - STATE(1566), 1, + STATE(1553), 1, aux_sym_macro_definition_repeat1, - STATE(2242), 1, + STATE(2249), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56581] = 8, - ACTIONS(3875), 1, + [55853] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, - anon_sym_LBRACK, ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3925), 1, anon_sym_RPAREN, - STATE(1566), 1, + STATE(1553), 1, aux_sym_macro_definition_repeat1, - STATE(2244), 1, + STATE(2247), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56607] = 8, - ACTIONS(3875), 1, - anon_sym_LPAREN, - ACTIONS(3879), 1, - anon_sym_LBRACE, - ACTIONS(3881), 1, - anon_sym_LBRACK, - ACTIONS(3893), 1, + [55879] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + anon_sym_ref, + ACTIONS(3825), 1, + sym_mutable_specifier, + ACTIONS(3927), 1, anon_sym_RBRACE, - STATE(1566), 1, - aux_sym_macro_definition_repeat1, - STATE(2243), 1, - sym_macro_rule, - STATE(2342), 1, - sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56633] = 7, - ACTIONS(824), 1, + STATE(2266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55903] = 7, + ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3826), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3832), 1, + ACTIONS(3823), 1, anon_sym_ref, - ACTIONS(3834), 1, + ACTIONS(3825), 1, sym_mutable_specifier, - ACTIONS(3895), 1, + ACTIONS(3929), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2261), 2, + STATE(2266), 2, sym_field_pattern, sym_remaining_field_pattern, - [56657] = 3, - ACTIONS(2652), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56673] = 3, - ACTIONS(3426), 1, - anon_sym_COLON_COLON, + [55927] = 3, + ACTIONS(3931), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, + ACTIONS(3798), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56689] = 3, - ACTIONS(3897), 1, + [55943] = 3, + ACTIONS(3933), 1, anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56705] = 6, - ACTIONS(3899), 1, - anon_sym_LPAREN, - ACTIONS(3903), 1, - anon_sym_EQ, - ACTIONS(3905), 1, - anon_sym_COLON_COLON, - STATE(2094), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3901), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [56727] = 3, - ACTIONS(3907), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3734), 6, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56743] = 8, - ACTIONS(3875), 1, + [55959] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3909), 1, + ACTIONS(3935), 1, anon_sym_RPAREN, - STATE(1575), 1, + STATE(1602), 1, aux_sym_macro_definition_repeat1, - STATE(2264), 1, + STATE(2199), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56769] = 3, - ACTIONS(3911), 1, - sym_identifier, + [55985] = 3, + ACTIONS(3436), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 6, + ACTIONS(2538), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56785] = 6, - ACTIONS(3899), 1, - anon_sym_LPAREN, - ACTIONS(3903), 1, - anon_sym_EQ, - ACTIONS(3913), 1, - anon_sym_COLON_COLON, - STATE(2094), 1, - sym_meta_arguments, + [56001] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + anon_sym_ref, + ACTIONS(3825), 1, + sym_mutable_specifier, + ACTIONS(3937), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3901), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [56807] = 6, - ACTIONS(3899), 1, - anon_sym_LPAREN, - ACTIONS(3903), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, - STATE(2094), 1, - sym_meta_arguments, + STATE(2266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56025] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + anon_sym_ref, + ACTIONS(3825), 1, + sym_mutable_specifier, + ACTIONS(3939), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3901), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [56829] = 8, - ACTIONS(3696), 1, + STATE(2266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56049] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3698), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3941), 1, + anon_sym_RBRACE, + STATE(1604), 1, + aux_sym_macro_definition_repeat1, + STATE(2224), 1, + sym_macro_rule, + STATE(2488), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56075] = 8, + ACTIONS(3718), 1, + anon_sym_LPAREN, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3917), 1, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(3943), 1, anon_sym_SEMI, - STATE(957), 1, + STATE(366), 1, sym_field_declaration_list, - STATE(2088), 1, + STATE(1870), 1, sym_ordered_field_declaration_list, - STATE(2147), 1, + STATE(2129), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56855] = 8, - ACTIONS(3875), 1, + [56101] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3919), 1, - anon_sym_RPAREN, - STATE(1576), 1, + ACTIONS(3945), 1, + anon_sym_RBRACE, + STATE(1553), 1, aux_sym_macro_definition_repeat1, - STATE(2266), 1, + STATE(2126), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56881] = 3, - ACTIONS(3921), 1, - anon_sym_trait, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2510), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56897] = 3, - ACTIONS(3923), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3734), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56913] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3925), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56927] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3821), 7, - anon_sym_SEMI, + [56127] = 6, + ACTIONS(3718), 1, + anon_sym_LPAREN, + ACTIONS(3720), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + ACTIONS(3949), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56941] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3821), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3947), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [56955] = 6, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, - ACTIONS(3899), 1, + STATE(1917), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [56149] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3929), 1, - anon_sym_EQ, - STATE(2100), 1, - sym_meta_arguments, + ACTIONS(3889), 1, + anon_sym_LBRACE, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3951), 1, + anon_sym_RPAREN, + STATE(1553), 1, + aux_sym_macro_definition_repeat1, + STATE(2244), 1, + sym_macro_rule, + STATE(2488), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3927), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [56977] = 2, + [56175] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3821), 7, + ACTIONS(3953), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -116042,1817 +116403,1661 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56991] = 8, - ACTIONS(3875), 1, + [56189] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3931), 1, + ACTIONS(3955), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1553), 1, aux_sym_macro_definition_repeat1, - STATE(2249), 1, + STATE(2127), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57017] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3821), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [57031] = 8, - ACTIONS(3875), 1, + [56215] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3933), 1, + ACTIONS(3957), 1, anon_sym_RBRACE, - STATE(1611), 1, + STATE(1600), 1, aux_sym_macro_definition_repeat1, - STATE(2212), 1, + STATE(2220), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57057] = 7, - ACTIONS(824), 1, - anon_sym_DOT_DOT, - ACTIONS(3826), 1, - sym_identifier, - ACTIONS(3832), 1, - anon_sym_ref, - ACTIONS(3834), 1, - sym_mutable_specifier, - ACTIONS(3935), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2261), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57081] = 7, - ACTIONS(824), 1, - anon_sym_DOT_DOT, - ACTIONS(3826), 1, - sym_identifier, - ACTIONS(3832), 1, - anon_sym_ref, - ACTIONS(3834), 1, - sym_mutable_specifier, - ACTIONS(3937), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2261), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57105] = 3, - ACTIONS(3939), 1, + [56241] = 3, + ACTIONS(3959), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 6, + ACTIONS(3798), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57121] = 8, - ACTIONS(3875), 1, + [56257] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_RPAREN, - STATE(1573), 1, + ACTIONS(3961), 1, + anon_sym_RBRACE, + STATE(1610), 1, aux_sym_macro_definition_repeat1, - STATE(2278), 1, + STATE(2176), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57147] = 8, - ACTIONS(3875), 1, + [56283] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3943), 1, - anon_sym_RPAREN, - STATE(1571), 1, + ACTIONS(3963), 1, + anon_sym_RBRACE, + STATE(1553), 1, aux_sym_macro_definition_repeat1, - STATE(2291), 1, + STATE(2305), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57173] = 7, - ACTIONS(3327), 1, - anon_sym_PIPE, - ACTIONS(3329), 1, - anon_sym_LPAREN, - ACTIONS(3333), 1, - anon_sym_COLON, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3945), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57197] = 8, - ACTIONS(3696), 1, + [56309] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3698), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3947), 1, - anon_sym_SEMI, - STATE(787), 1, - sym_field_declaration_list, - STATE(2078), 1, - sym_ordered_field_declaration_list, - STATE(2168), 1, - sym_where_clause, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3965), 1, + anon_sym_RPAREN, + STATE(1553), 1, + aux_sym_macro_definition_repeat1, + STATE(2252), 1, + sym_macro_rule, + STATE(2488), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57223] = 8, - ACTIONS(3875), 1, + [56335] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3949), 1, + ACTIONS(3967), 1, anon_sym_RBRACE, - STATE(1577), 1, + STATE(1553), 1, aux_sym_macro_definition_repeat1, - STATE(2284), 1, + STATE(2257), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57249] = 8, - ACTIONS(3696), 1, - anon_sym_LPAREN, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LBRACE, - ACTIONS(3951), 1, - anon_sym_SEMI, - STATE(318), 1, - sym_field_declaration_list, - STATE(2069), 1, - sym_ordered_field_declaration_list, - STATE(2177), 1, - sym_where_clause, + [56361] = 3, + ACTIONS(3969), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57275] = 6, - ACTIONS(3696), 1, + ACTIONS(2538), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56377] = 8, + ACTIONS(3718), 1, anon_sym_LPAREN, - ACTIONS(3698), 1, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3744), 1, anon_sym_LBRACE, - ACTIONS(3955), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3953), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1893), 2, + ACTIONS(3971), 1, + anon_sym_SEMI, + STATE(346), 1, sym_field_declaration_list, + STATE(2114), 1, sym_ordered_field_declaration_list, - [57297] = 8, - ACTIONS(3875), 1, - anon_sym_LPAREN, - ACTIONS(3879), 1, - anon_sym_LBRACE, - ACTIONS(3881), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - anon_sym_RBRACE, - STATE(1566), 1, - aux_sym_macro_definition_repeat1, - STATE(2247), 1, - sym_macro_rule, - STATE(2342), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57323] = 8, - ACTIONS(3875), 1, - anon_sym_LPAREN, - ACTIONS(3879), 1, - anon_sym_LBRACE, - ACTIONS(3881), 1, - anon_sym_LBRACK, - ACTIONS(3959), 1, - anon_sym_RBRACE, - STATE(1566), 1, - aux_sym_macro_definition_repeat1, - STATE(2124), 1, - sym_macro_rule, - STATE(2342), 1, - sym_token_tree_pattern, + STATE(2138), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57349] = 8, - ACTIONS(3875), 1, + [56403] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3961), 1, - anon_sym_RBRACE, - STATE(1566), 1, + ACTIONS(3973), 1, + anon_sym_RPAREN, + STATE(1609), 1, aux_sym_macro_definition_repeat1, - STATE(2226), 1, + STATE(2178), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57375] = 8, - ACTIONS(3875), 1, + [56429] = 8, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3879), 1, + ACTIONS(3889), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3975), 1, anon_sym_RBRACE, - STATE(1612), 1, + STATE(1608), 1, aux_sym_macro_definition_repeat1, - STATE(2205), 1, + STATE(2190), 1, sym_macro_rule, - STATE(2342), 1, + STATE(2488), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57401] = 7, - ACTIONS(3698), 1, + [56455] = 3, + ACTIONS(3977), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3798), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56471] = 8, + ACTIONS(3718), 1, + anon_sym_LPAREN, + ACTIONS(3720), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3702), 1, - anon_sym_LT, - STATE(1000), 1, + ACTIONS(3979), 1, + anon_sym_SEMI, + STATE(968), 1, sym_field_declaration_list, - STATE(1777), 1, - sym_type_parameters, - STATE(2224), 1, + STATE(2091), 1, + sym_ordered_field_declaration_list, + STATE(2167), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57424] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [56497] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3965), 1, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(3981), 1, anon_sym_SEMI, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - STATE(263), 1, + STATE(816), 1, sym_declaration_list, - STATE(2031), 1, + STATE(2098), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57447] = 4, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3762), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + [56520] = 7, + ACTIONS(3722), 1, anon_sym_where, - [57464] = 4, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3766), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2532), 4, - anon_sym_SEMI, + ACTIONS(3738), 1, anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_PLUS, - anon_sym_where, - [57481] = 7, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3969), 1, + ACTIONS(3985), 1, anon_sym_SEMI, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(3973), 1, - anon_sym_DASH_GT, - STATE(248), 1, - sym_block, - STATE(1995), 1, + STATE(454), 1, + sym_declaration_list, + STATE(1882), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57504] = 4, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3772), 1, - anon_sym_for, + [56543] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LT, + ACTIONS(3987), 1, + anon_sym_LBRACE, + STATE(923), 1, + sym_enum_variant_list, + STATE(1814), 1, + sym_type_parameters, + STATE(2147), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57521] = 4, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3746), 1, - anon_sym_for, + [56566] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2648), 2, anon_sym_PLUS, - anon_sym_where, - [57538] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3792), 1, + anon_sym_DASH_GT, + ACTIONS(3646), 2, anon_sym_COLON, - STATE(385), 1, - sym_declaration_list, - STATE(1773), 1, - sym_trait_bounds, - STATE(2273), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57561] = 7, - ACTIONS(3700), 1, + anon_sym_PIPE, + ACTIONS(3989), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56583] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3971), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(3992), 1, anon_sym_SEMI, - ACTIONS(3977), 1, - anon_sym_DASH_GT, - STATE(389), 1, - sym_block, - STATE(1986), 1, + STATE(941), 1, + sym_declaration_list, + STATE(2100), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57584] = 7, - ACTIONS(3700), 1, + [56606] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3979), 1, - anon_sym_SEMI, - ACTIONS(3981), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_DASH_GT, - STATE(981), 1, - sym_block, - STATE(2059), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57607] = 4, - ACTIONS(3985), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2532), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57624] = 5, - ACTIONS(3985), 1, - anon_sym_COLON_COLON, - ACTIONS(3989), 1, + ACTIONS(3810), 1, anon_sym_COLON, + STATE(961), 1, + sym_declaration_list, + STATE(1816), 1, + sym_trait_bounds, + STATE(2163), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3987), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57643] = 4, - ACTIONS(3991), 1, + [56629] = 4, + ACTIONS(3440), 1, anon_sym_COLON_COLON, + ACTIONS(3790), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2532), 3, + ACTIONS(2544), 4, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [57660] = 7, - ACTIONS(3690), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3967), 1, + [56646] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(3993), 1, + ACTIONS(3994), 1, anon_sym_SEMI, - STATE(338), 1, + STATE(1004), 1, sym_declaration_list, - STATE(1960), 1, + STATE(2076), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57683] = 7, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_COMMA, - ACTIONS(3456), 1, - anon_sym_GT, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(2010), 1, - aux_sym_type_parameters_repeat1, - STATE(2027), 1, - sym_trait_bounds, + [56669] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(3996), 1, + anon_sym_SEMI, + STATE(451), 1, + sym_declaration_list, + STATE(1967), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57706] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [56692] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(3995), 1, + ACTIONS(3998), 1, anon_sym_SEMI, - STATE(332), 1, + STATE(447), 1, sym_declaration_list, - STATE(1956), 1, + STATE(1920), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57729] = 7, - ACTIONS(3700), 1, + [56715] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3971), 1, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(3997), 1, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4000), 1, anon_sym_SEMI, - ACTIONS(3999), 1, - anon_sym_DASH_GT, - STATE(297), 1, - sym_block, - STATE(1997), 1, + STATE(335), 1, + sym_declaration_list, + STATE(2088), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57752] = 3, + [56738] = 4, + ACTIONS(3440), 1, + anon_sym_COLON_COLON, + ACTIONS(3780), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3564), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2658), 4, - anon_sym_RPAREN, + ACTIONS(2544), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [57767] = 7, - ACTIONS(3700), 1, anon_sym_where, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4001), 1, + [56755] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(4002), 1, anon_sym_SEMI, - STATE(419), 1, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + anon_sym_DASH_GT, + STATE(1025), 1, sym_block, - STATE(2011), 1, + STATE(2062), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57790] = 4, - ACTIONS(4003), 1, + [56778] = 4, + ACTIONS(3440), 1, anon_sym_COLON_COLON, + ACTIONS(3788), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2532), 3, - anon_sym_RPAREN, + ACTIONS(2544), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - [57807] = 5, - ACTIONS(3989), 1, - anon_sym_COLON, - ACTIONS(4003), 1, - anon_sym_COLON_COLON, + anon_sym_where, + [56795] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4008), 1, + anon_sym_SEMI, + ACTIONS(4010), 1, + anon_sym_LBRACE, + STATE(423), 1, + sym_block, + STATE(1883), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3987), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57826] = 7, - ACTIONS(3700), 1, + [56818] = 7, + ACTIONS(3720), 1, + anon_sym_LBRACE, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3702), 1, + ACTIONS(3724), 1, anon_sym_LT, - ACTIONS(4005), 1, - anon_sym_LBRACE, - STATE(277), 1, - sym_enum_variant_list, - STATE(1837), 1, + STATE(917), 1, + sym_field_declaration_list, + STATE(1810), 1, sym_type_parameters, - STATE(2207), 1, + STATE(2140), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57849] = 7, - ACTIONS(3700), 1, + [56841] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3971), 1, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(4007), 1, - anon_sym_SEMI, - ACTIONS(4009), 1, - anon_sym_DASH_GT, - STATE(349), 1, - sym_block, - STATE(1975), 1, + ACTIONS(3810), 1, + anon_sym_COLON, + STATE(355), 1, + sym_declaration_list, + STATE(1800), 1, + sym_trait_bounds, + STATE(2221), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57872] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [56864] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4011), 1, + ACTIONS(4012), 1, anon_sym_SEMI, - STATE(299), 1, + STATE(404), 1, sym_declaration_list, - STATE(1926), 1, + STATE(1939), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57895] = 6, - ACTIONS(3203), 1, + [56887] = 4, + ACTIONS(3440), 1, anon_sym_COLON_COLON, - ACTIONS(4013), 1, - anon_sym_COMMA, - ACTIONS(4015), 1, - anon_sym_GT, - STATE(2030), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3782), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 2, - anon_sym_PLUS, - anon_sym_as, - [57916] = 7, - ACTIONS(2369), 1, + ACTIONS(2544), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(4013), 1, - anon_sym_COMMA, - ACTIONS(4015), 1, - anon_sym_GT, - STATE(2030), 1, - aux_sym_type_parameters_repeat1, - STATE(2090), 1, - sym_trait_bounds, + anon_sym_where, + [56904] = 7, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4014), 1, + sym_identifier, + ACTIONS(4016), 1, + anon_sym_STAR, + STATE(2059), 1, + sym_use_list, + STATE(2311), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57939] = 7, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(4017), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, - anon_sym_GT, - STATE(1938), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2030), 1, - aux_sym_type_parameters_repeat1, - STATE(2090), 1, - sym_trait_bounds, + [56927] = 7, + ACTIONS(3720), 1, + anon_sym_LBRACE, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LT, + STATE(937), 1, + sym_field_declaration_list, + STATE(1825), 1, + sym_type_parameters, + STATE(2255), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57962] = 7, - ACTIONS(3700), 1, + [56950] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4021), 1, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4018), 1, anon_sym_SEMI, - STATE(975), 1, - sym_declaration_list, - STATE(2073), 1, + STATE(299), 1, + sym_block, + STATE(1876), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57985] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4023), 1, - anon_sym_SEMI, - STATE(459), 1, - sym_declaration_list, - STATE(2040), 1, - sym_where_clause, + [56973] = 7, + ACTIONS(3446), 1, + anon_sym_EQ, + ACTIONS(3810), 1, + anon_sym_COLON, + ACTIONS(4020), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_GT, + STATE(1994), 1, + sym_trait_bounds, + STATE(2071), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58008] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [56996] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4025), 1, + ACTIONS(4024), 1, anon_sym_SEMI, - STATE(465), 1, + STATE(396), 1, sym_declaration_list, - STATE(2045), 1, + STATE(1938), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58031] = 7, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4027), 1, + [57019] = 7, + ACTIONS(3810), 1, + anon_sym_COLON, + ACTIONS(3812), 1, + anon_sym_LT, + ACTIONS(4026), 1, anon_sym_SEMI, - STATE(429), 1, - sym_block, - STATE(2063), 1, - sym_where_clause, + ACTIONS(4028), 1, + anon_sym_EQ, + STATE(1826), 1, + sym_type_parameters, + STATE(2412), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58054] = 4, - ACTIONS(3432), 1, + [57042] = 4, + ACTIONS(3440), 1, anon_sym_COLON_COLON, - ACTIONS(3686), 1, + ACTIONS(3774), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, + ACTIONS(2544), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58071] = 7, - ACTIONS(3700), 1, + [57059] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(3971), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4030), 1, anon_sym_SEMI, - STATE(436), 1, + STATE(300), 1, sym_block, - STATE(1906), 1, + STATE(1894), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58094] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [57082] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4031), 1, + ACTIONS(4032), 1, anon_sym_SEMI, - STATE(350), 1, + STATE(424), 1, sym_declaration_list, - STATE(2042), 1, + STATE(2008), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58117] = 7, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(3794), 1, - anon_sym_LT, - ACTIONS(4033), 1, - anon_sym_SEMI, - ACTIONS(4035), 1, - anon_sym_EQ, - STATE(1757), 1, - sym_type_parameters, - STATE(2440), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58140] = 4, - ACTIONS(4037), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3564), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2658), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [58157] = 5, - ACTIONS(4042), 1, - anon_sym_COLON, - ACTIONS(4044), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4040), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58176] = 7, - ACTIONS(3700), 1, + [57105] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3971), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4046), 1, + ACTIONS(4034), 1, anon_sym_SEMI, - ACTIONS(4048), 1, + ACTIONS(4036), 1, anon_sym_DASH_GT, - STATE(384), 1, + STATE(890), 1, sym_block, - STATE(2081), 1, + STATE(2115), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58199] = 7, - ACTIONS(3700), 1, + [57128] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(954), 1, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4038), 1, + anon_sym_SEMI, + STATE(895), 1, sym_declaration_list, - STATE(1756), 1, - sym_trait_bounds, - STATE(2144), 1, + STATE(2007), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58222] = 4, - ACTIONS(4050), 1, - anon_sym_RBRACK, + [57151] = 4, + ACTIONS(4040), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2618), 3, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2544), 3, anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH_GT, - [58239] = 4, + [57168] = 7, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4014), 1, + sym_identifier, + ACTIONS(4016), 1, + anon_sym_STAR, + STATE(2059), 1, + sym_use_list, + STATE(2443), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3590), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4050), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58256] = 7, - ACTIONS(3690), 1, + [57191] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4042), 1, + anon_sym_SEMI, + STATE(874), 1, + sym_declaration_list, + STATE(2110), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57214] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(347), 1, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4044), 1, + anon_sym_SEMI, + STATE(479), 1, sym_declaration_list, - STATE(1801), 1, - sym_trait_bounds, - STATE(2167), 1, + STATE(2053), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58279] = 4, - ACTIONS(3432), 1, + [57237] = 4, + ACTIONS(3440), 1, anon_sym_COLON_COLON, - ACTIONS(3728), 1, + ACTIONS(3734), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, + ACTIONS(2544), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58296] = 7, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4053), 1, - anon_sym_SEMI, - STATE(936), 1, - sym_declaration_list, - STATE(2097), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58319] = 7, - ACTIONS(3700), 1, + [57254] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3702), 1, + ACTIONS(3724), 1, anon_sym_LT, - ACTIONS(4055), 1, + ACTIONS(4046), 1, anon_sym_LBRACE, - STATE(918), 1, + STATE(276), 1, sym_enum_variant_list, - STATE(1821), 1, + STATE(1788), 1, sym_type_parameters, - STATE(2132), 1, + STATE(2264), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58342] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [57277] = 6, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + anon_sym_ref, + ACTIONS(3825), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [57298] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4057), 1, + ACTIONS(4048), 1, anon_sym_SEMI, - STATE(304), 1, + STATE(859), 1, sym_declaration_list, - STATE(1929), 1, + STATE(2109), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58365] = 7, - ACTIONS(3698), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [57321] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3702), 1, - anon_sym_LT, - STATE(894), 1, - sym_field_declaration_list, - STATE(1839), 1, - sym_type_parameters, - STATE(2129), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58388] = 7, - ACTIONS(3690), 1, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4059), 1, + ACTIONS(4050), 1, anon_sym_SEMI, - STATE(291), 1, + STATE(415), 1, sym_declaration_list, - STATE(1976), 1, + STATE(2004), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58411] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [57344] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4061), 1, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4052), 1, anon_sym_SEMI, - STATE(409), 1, - sym_declaration_list, - STATE(2104), 1, + STATE(305), 1, + sym_block, + STATE(2024), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58434] = 7, - ACTIONS(3700), 1, + [57367] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3702), 1, - anon_sym_LT, ACTIONS(3724), 1, + anon_sym_LT, + ACTIONS(3987), 1, anon_sym_LBRACE, - STATE(387), 1, - sym_field_declaration_list, - STATE(1771), 1, + STATE(847), 1, + sym_enum_variant_list, + STATE(1834), 1, sym_type_parameters, - STATE(2234), 1, + STATE(2284), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58457] = 4, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3736), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + [57390] = 7, + ACTIONS(3722), 1, anon_sym_where, - [58474] = 7, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3792), 1, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(3810), 1, anon_sym_COLON, - ACTIONS(4063), 1, - anon_sym_COMMA, - ACTIONS(4065), 1, - anon_sym_GT, - STATE(2027), 1, + STATE(798), 1, + sym_declaration_list, + STATE(1804), 1, sym_trait_bounds, - STATE(2068), 1, - aux_sym_type_parameters_repeat1, + STATE(2161), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58497] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [57413] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4067), 1, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4054), 1, anon_sym_SEMI, - STATE(303), 1, - sym_declaration_list, - STATE(1928), 1, + ACTIONS(4056), 1, + anon_sym_DASH_GT, + STATE(794), 1, + sym_block, + STATE(2093), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58520] = 3, + [57436] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, + ACTIONS(3646), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2618), 4, + ACTIONS(2648), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH_GT, - [58535] = 6, - ACTIONS(824), 1, - anon_sym_DOT_DOT, - ACTIONS(3826), 1, - sym_identifier, - ACTIONS(3832), 1, - anon_sym_ref, - ACTIONS(3834), 1, - sym_mutable_specifier, + [57451] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4058), 1, + anon_sym_SEMI, + ACTIONS(4060), 1, + anon_sym_DASH_GT, + STATE(338), 1, + sym_block, + STATE(1930), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2261), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [58556] = 7, - ACTIONS(3279), 1, + [57474] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4069), 1, - sym_identifier, - ACTIONS(4071), 1, - anon_sym_STAR, - STATE(2103), 1, - sym_use_list, - STATE(2336), 1, - sym_type_arguments, + ACTIONS(3810), 1, + anon_sym_COLON, + STATE(395), 1, + sym_declaration_list, + STATE(1821), 1, + sym_trait_bounds, + STATE(2200), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58579] = 7, - ACTIONS(3279), 1, - anon_sym_LBRACE, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4069), 1, - sym_identifier, - ACTIONS(4071), 1, - anon_sym_STAR, - STATE(2103), 1, - sym_use_list, - STATE(2428), 1, - sym_type_arguments, + [57497] = 5, + ACTIONS(4064), 1, + anon_sym_COLON, + ACTIONS(4066), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58602] = 7, - ACTIONS(3700), 1, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4062), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57516] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3981), 1, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4068), 1, anon_sym_SEMI, - ACTIONS(4075), 1, - anon_sym_DASH_GT, - STATE(873), 1, - sym_block, - STATE(2106), 1, + STATE(349), 1, + sym_declaration_list, + STATE(2118), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58625] = 7, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3967), 1, + [57539] = 4, + ACTIONS(3440), 1, + anon_sym_COLON_COLON, + ACTIONS(3710), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2544), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3981), 1, + anon_sym_where, + [57556] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(4077), 1, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4070), 1, anon_sym_SEMI, - STATE(945), 1, - sym_block, - STATE(2016), 1, + STATE(430), 1, + sym_declaration_list, + STATE(1956), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58648] = 7, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3967), 1, + [57579] = 4, + ACTIONS(4072), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2544), 3, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(3981), 1, + anon_sym_COMMA, + [57596] = 5, + ACTIONS(4072), 1, + anon_sym_COLON_COLON, + ACTIONS(4076), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4074), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57615] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4079), 1, + ACTIONS(4078), 1, anon_sym_SEMI, - STATE(939), 1, + ACTIONS(4080), 1, + anon_sym_DASH_GT, + STATE(393), 1, sym_block, - STATE(2017), 1, + STATE(1875), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58671] = 7, - ACTIONS(3700), 1, + [57638] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(3981), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4082), 1, anon_sym_SEMI, - STATE(927), 1, + STATE(785), 1, sym_block, - STATE(2019), 1, + STATE(2083), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58694] = 7, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, + [57661] = 7, + ACTIONS(2405), 1, anon_sym_PLUS, - ACTIONS(4083), 1, - anon_sym_SEMI, - STATE(1011), 1, - sym_declaration_list, - STATE(2006), 1, - sym_where_clause, + ACTIONS(3810), 1, + anon_sym_COLON, + ACTIONS(4084), 1, + anon_sym_COMMA, + ACTIONS(4086), 1, + anon_sym_GT, + STATE(1963), 1, + sym_trait_bounds, + STATE(2096), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58717] = 7, - ACTIONS(3700), 1, + [57684] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3981), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4088), 1, anon_sym_SEMI, - ACTIONS(4087), 1, - anon_sym_DASH_GT, - STATE(908), 1, - sym_block, - STATE(2022), 1, + STATE(813), 1, + sym_declaration_list, + STATE(2082), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58740] = 7, - ACTIONS(3700), 1, + [57707] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(3981), 1, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(4089), 1, - anon_sym_SEMI, - STATE(899), 1, - sym_block, - STATE(2026), 1, + ACTIONS(3810), 1, + anon_sym_COLON, + STATE(317), 1, + sym_declaration_list, + STATE(1773), 1, + sym_trait_bounds, + STATE(2271), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58763] = 7, - ACTIONS(3700), 1, + [57730] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4090), 1, anon_sym_SEMI, - STATE(852), 1, + STATE(815), 1, sym_declaration_list, - STATE(2095), 1, + STATE(2077), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58786] = 7, - ACTIONS(3700), 1, + [57753] = 6, + ACTIONS(3115), 1, + anon_sym_COLON_COLON, + ACTIONS(4084), 1, + anon_sym_COMMA, + ACTIONS(4086), 1, + anon_sym_GT, + STATE(2096), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2544), 2, + anon_sym_PLUS, + anon_sym_as, + [57774] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4093), 1, + ACTIONS(4092), 1, anon_sym_SEMI, - STATE(821), 1, - sym_declaration_list, - STATE(2092), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + STATE(307), 1, + sym_block, + STATE(1929), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58809] = 7, - ACTIONS(3700), 1, + [57797] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4095), 1, + ACTIONS(4096), 1, anon_sym_SEMI, - STATE(889), 1, + STATE(849), 1, sym_declaration_list, - STATE(2032), 1, + STATE(2067), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58832] = 7, - ACTIONS(3700), 1, + [57820] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4098), 1, anon_sym_SEMI, - STATE(887), 1, + STATE(860), 1, sym_declaration_list, - STATE(2033), 1, + STATE(2057), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58855] = 7, - ACTIONS(3700), 1, + [57843] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3971), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4100), 1, anon_sym_SEMI, - ACTIONS(4101), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - STATE(410), 1, + STATE(870), 1, sym_block, - STATE(1862), 1, + STATE(1861), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58878] = 7, - ACTIONS(3700), 1, + [57866] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(3971), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, - anon_sym_SEMI, - STATE(427), 1, - sym_block, - STATE(2115), 1, + ACTIONS(3810), 1, + anon_sym_COLON, + STATE(902), 1, + sym_declaration_list, + STATE(1797), 1, + sym_trait_bounds, + STATE(2207), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58901] = 7, - ACTIONS(3700), 1, + [57889] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(3981), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4105), 1, + ACTIONS(4104), 1, anon_sym_SEMI, - STATE(864), 1, + ACTIONS(4106), 1, + anon_sym_DASH_GT, + STATE(912), 1, sym_block, - STATE(2038), 1, + STATE(2054), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58924] = 7, - ACTIONS(3700), 1, + [57912] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4107), 1, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4108), 1, anon_sym_SEMI, - STATE(770), 1, - sym_declaration_list, - STATE(2083), 1, + STATE(934), 1, + sym_block, + STATE(2050), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58947] = 7, - ACTIONS(3700), 1, + [57935] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3981), 1, + ACTIONS(3724), 1, + anon_sym_LT, + ACTIONS(4046), 1, anon_sym_LBRACE, - ACTIONS(4109), 1, - anon_sym_SEMI, - ACTIONS(4111), 1, - anon_sym_DASH_GT, - STATE(856), 1, - sym_block, - STATE(2039), 1, + STATE(263), 1, + sym_enum_variant_list, + STATE(1859), 1, + sym_type_parameters, + STATE(2202), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58970] = 7, - ACTIONS(3690), 1, + [57958] = 4, + ACTIONS(3440), 1, + anon_sym_COLON_COLON, + ACTIONS(3776), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2544), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3700), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3967), 1, + [57975] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4113), 1, + ACTIONS(4110), 1, anon_sym_SEMI, - STATE(440), 1, + STATE(984), 1, sym_declaration_list, - STATE(1883), 1, + STATE(2045), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58993] = 7, - ACTIONS(3700), 1, + [57998] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3724), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_LBRACE, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(775), 1, - sym_declaration_list, - STATE(1828), 1, - sym_trait_bounds, - STATE(2158), 1, + STATE(292), 1, + sym_field_declaration_list, + STATE(1858), 1, + sym_type_parameters, + STATE(2187), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59016] = 4, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3738), 1, - anon_sym_for, + [58021] = 4, + ACTIONS(3989), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 4, + ACTIONS(3646), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2648), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [59033] = 7, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_SEMI, - ACTIONS(4117), 1, anon_sym_DASH_GT, - STATE(778), 1, - sym_block, - STATE(2080), 1, - sym_where_clause, + [58038] = 4, + ACTIONS(4112), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59056] = 7, - ACTIONS(3700), 1, + ACTIONS(3594), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2688), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [58055] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(3971), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4119), 1, + ACTIONS(4115), 1, anon_sym_SEMI, - STATE(325), 1, + STATE(302), 1, sym_block, - STATE(2075), 1, + STATE(1878), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59079] = 7, - ACTIONS(3700), 1, + [58078] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(853), 1, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4117), 1, + anon_sym_SEMI, + STATE(986), 1, sym_declaration_list, - STATE(1792), 1, - sym_trait_bounds, - STATE(2204), 1, + STATE(2044), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59102] = 7, - ACTIONS(3700), 1, + [58101] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3981), 1, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(4119), 1, anon_sym_SEMI, - ACTIONS(4123), 1, - anon_sym_DASH_GT, - STATE(839), 1, + STATE(999), 1, sym_block, - STATE(1858), 1, + STATE(2043), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59125] = 7, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [58124] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(252), 1, - sym_declaration_list, - STATE(1848), 1, - sym_trait_bounds, - STATE(2199), 1, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4121), 1, + anon_sym_SEMI, + ACTIONS(4123), 1, + anon_sym_DASH_GT, + STATE(1023), 1, + sym_block, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59148] = 7, - ACTIONS(3700), 1, + [58147] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, + ACTIONS(4004), 1, + anon_sym_LBRACE, ACTIONS(4125), 1, anon_sym_SEMI, - STATE(833), 1, - sym_declaration_list, - STATE(2044), 1, + STATE(974), 1, + sym_block, + STATE(2038), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59171] = 7, - ACTIONS(3700), 1, + [58170] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, + ACTIONS(4004), 1, + anon_sym_LBRACE, ACTIONS(4127), 1, anon_sym_SEMI, - STATE(828), 1, - sym_declaration_list, - STATE(2046), 1, + STATE(942), 1, + sym_block, + STATE(2036), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59194] = 7, - ACTIONS(3700), 1, + [58193] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(3971), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, ACTIONS(4129), 1, anon_sym_SEMI, - STATE(394), 1, + STATE(901), 1, sym_block, - STATE(2102), 1, + STATE(2034), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59217] = 7, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3702), 1, + [58216] = 7, + ACTIONS(3810), 1, + anon_sym_COLON, + ACTIONS(3812), 1, anon_sym_LT, - ACTIONS(4055), 1, - anon_sym_LBRACE, - STATE(1014), 1, - sym_enum_variant_list, - STATE(1849), 1, + ACTIONS(4131), 1, + anon_sym_SEMI, + ACTIONS(4133), 1, + anon_sym_EQ, + STATE(1824), 1, sym_type_parameters, - STATE(2268), 1, - sym_where_clause, + STATE(2396), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59240] = 4, + [58239] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2658), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3564), 2, + ACTIONS(3594), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4037), 2, + ACTIONS(2688), 4, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [59257] = 7, - ACTIONS(3700), 1, + anon_sym_DASH_GT, + [58254] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4131), 1, + ACTIONS(4135), 1, anon_sym_SEMI, - STATE(811), 1, + STATE(459), 1, sym_declaration_list, - STATE(2053), 1, + STATE(1881), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59280] = 7, - ACTIONS(3700), 1, + [58277] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4133), 1, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4137), 1, anon_sym_SEMI, - STATE(809), 1, - sym_declaration_list, - STATE(2054), 1, + STATE(256), 1, + sym_block, + STATE(1905), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59303] = 7, - ACTIONS(3700), 1, + [58300] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3702), 1, - anon_sym_LT, - ACTIONS(3724), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - STATE(453), 1, - sym_field_declaration_list, - STATE(1781), 1, - sym_type_parameters, - STATE(2211), 1, + ACTIONS(4139), 1, + anon_sym_SEMI, + ACTIONS(4141), 1, + anon_sym_DASH_GT, + STATE(271), 1, + sym_block, + STATE(2023), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59326] = 7, - ACTIONS(3700), 1, + [58323] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(3981), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4135), 1, + ACTIONS(4143), 1, anon_sym_SEMI, - STATE(801), 1, + ACTIONS(4145), 1, + anon_sym_DASH_GT, + STATE(379), 1, sym_block, - STATE(2056), 1, + STATE(2017), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59349] = 7, - ACTIONS(3792), 1, + [58346] = 7, + ACTIONS(3810), 1, anon_sym_COLON, - ACTIONS(3794), 1, - anon_sym_LT, - ACTIONS(4137), 1, - anon_sym_SEMI, - ACTIONS(4139), 1, - anon_sym_EQ, - STATE(1769), 1, - sym_type_parameters, - STATE(2430), 1, + ACTIONS(4147), 1, + anon_sym_COMMA, + ACTIONS(4149), 1, + anon_sym_GT, + STATE(1963), 1, sym_trait_bounds, + STATE(1982), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2096), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59372] = 7, - ACTIONS(3700), 1, + [58369] = 7, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3702), 1, - anon_sym_LT, - ACTIONS(4005), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - STATE(469), 1, - sym_enum_variant_list, - STATE(1802), 1, - sym_type_parameters, - STATE(2195), 1, + ACTIONS(4151), 1, + anon_sym_SEMI, + ACTIONS(4153), 1, + anon_sym_DASH_GT, + STATE(388), 1, + sym_block, + STATE(1949), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59395] = 4, - ACTIONS(15), 1, + [58392] = 7, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3724), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_LBRACE, - ACTIONS(4141), 1, - anon_sym_if, + STATE(386), 1, + sym_field_declaration_list, + STATE(1857), 1, + sym_type_parameters, + STATE(2240), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(50), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59411] = 4, - ACTIONS(3985), 1, + [58415] = 4, + ACTIONS(4155), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, + ACTIONS(3353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4040), 2, + ACTIONS(2544), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [59427] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4143), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + [58432] = 7, + ACTIONS(3446), 1, anon_sym_EQ, + ACTIONS(3448), 1, anon_sym_COMMA, - [59439] = 5, - ACTIONS(4145), 1, - anon_sym_RPAREN, - ACTIONS(4147), 1, - anon_sym_COMMA, - STATE(1984), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3327), 2, + ACTIONS(3450), 1, + anon_sym_GT, + ACTIONS(3810), 1, anon_sym_COLON, - anon_sym_PIPE, - [59457] = 2, + STATE(1992), 1, + aux_sym_type_parameters_repeat1, + STATE(1994), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4149), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59469] = 5, - ACTIONS(3510), 1, + [58455] = 5, + ACTIONS(4076), 1, anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3514), 1, + ACTIONS(4155), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, + ACTIONS(3353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59487] = 5, - ACTIONS(792), 1, + ACTIONS(4074), 2, anon_sym_RPAREN, - ACTIONS(4151), 1, anon_sym_COMMA, - STATE(2060), 1, - aux_sym_parameters_repeat1, + [58474] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3327), 2, + ACTIONS(2688), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3594), 2, anon_sym_COLON, anon_sym_PIPE, - [59505] = 4, - ACTIONS(4155), 1, - anon_sym_as, - ACTIONS(4157), 1, - anon_sym_COLON_COLON, + ACTIONS(4112), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58491] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4153), 3, + ACTIONS(4157), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [59521] = 6, - ACTIONS(3792), 1, + [58503] = 6, + ACTIONS(3810), 1, anon_sym_COLON, - ACTIONS(4013), 1, + ACTIONS(4084), 1, anon_sym_COMMA, - ACTIONS(4015), 1, + ACTIONS(4086), 1, anon_sym_GT, - STATE(2030), 1, - aux_sym_type_parameters_repeat1, - STATE(2090), 1, + STATE(1963), 1, sym_trait_bounds, + STATE(2096), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59541] = 4, + [58523] = 4, ACTIONS(4161), 1, anon_sym_as, ACTIONS(4163), 1, @@ -117864,7 +118069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [59557] = 4, + [58539] = 4, ACTIONS(4161), 1, anon_sym_as, ACTIONS(4165), 1, @@ -117876,1103 +118081,1020 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [59573] = 4, - ACTIONS(4003), 1, + [58555] = 5, + ACTIONS(3560), 1, + anon_sym_COLON, + ACTIONS(3562), 1, + anon_sym_BANG, + ACTIONS(3564), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, + ACTIONS(3462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4167), 2, + [58573] = 5, + ACTIONS(4167), 1, anon_sym_RPAREN, + ACTIONS(4169), 1, anon_sym_COMMA, - [59589] = 4, - ACTIONS(4003), 1, - anon_sym_COLON_COLON, + STATE(1903), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4040), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59605] = 4, - ACTIONS(3985), 1, + ACTIONS(3343), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58591] = 4, + ACTIONS(4161), 1, + anon_sym_as, + ACTIONS(4171), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4167), 2, - anon_sym_RPAREN, + ACTIONS(4159), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [59621] = 2, + [58607] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 5, + ACTIONS(4173), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [59633] = 6, - ACTIONS(4169), 1, - anon_sym_RPAREN, - ACTIONS(4171), 1, - anon_sym_COLON, - ACTIONS(4173), 1, anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_PIPE, - STATE(1974), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59653] = 2, + [58619] = 4, + ACTIONS(4177), 1, + anon_sym_as, + ACTIONS(4179), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4177), 5, + ACTIONS(4175), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59665] = 2, + [58635] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 5, + ACTIONS(4181), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [59677] = 2, + anon_sym_COMMA, + [58647] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 5, + ACTIONS(2829), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [59689] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4179), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59701] = 2, + [58659] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 5, + ACTIONS(2821), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [59713] = 5, - ACTIONS(3510), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3618), 1, - anon_sym_COLON_COLON, + [58671] = 4, + ACTIONS(610), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59731] = 6, - ACTIONS(3339), 1, + STATE(226), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [58687] = 6, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3347), 1, + ACTIONS(3363), 1, anon_sym_COLON_COLON, - ACTIONS(3450), 1, + ACTIONS(3444), 1, anon_sym_COLON, - STATE(1348), 1, + STATE(1343), 1, sym_type_arguments, - STATE(1987), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59751] = 5, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(2027), 1, + STATE(1926), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4181), 2, - anon_sym_COMMA, - anon_sym_GT, - [59769] = 2, + [58707] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4183), 5, + ACTIONS(4185), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59781] = 2, + [58719] = 6, + ACTIONS(4187), 1, + anon_sym_RPAREN, + ACTIONS(4189), 1, + anon_sym_COLON, + ACTIONS(4191), 1, + anon_sym_COMMA, + ACTIONS(4193), 1, + anon_sym_PIPE, + STATE(1975), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4185), 5, + [58739] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4195), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59793] = 2, + [58751] = 4, + ACTIONS(4197), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4187), 5, + ACTIONS(2865), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(3566), 2, anon_sym_COMMA, - [59805] = 2, + anon_sym_PIPE, + [58767] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4189), 5, - anon_sym_SEMI, + ACTIONS(3862), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_LBRACK, + [58779] = 5, + ACTIONS(3560), 1, + anon_sym_COLON, + ACTIONS(3562), 1, + anon_sym_BANG, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58797] = 5, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(4200), 1, anon_sym_COMMA, - [59817] = 5, - ACTIONS(4191), 1, + STATE(2084), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3343), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58815] = 5, + ACTIONS(4202), 1, anon_sym_RPAREN, - ACTIONS(4194), 1, + ACTIONS(4205), 1, anon_sym_COMMA, - STATE(1984), 1, + STATE(1903), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3327), 2, + ACTIONS(3343), 2, anon_sym_COLON, anon_sym_PIPE, - [59835] = 4, - ACTIONS(2782), 1, - anon_sym_PLUS, + [58833] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 2, + ACTIONS(3566), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4197), 2, + ACTIONS(2865), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [59851] = 6, - ACTIONS(2480), 1, - anon_sym_LPAREN, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3347), 1, + [58847] = 4, + ACTIONS(4155), 1, anon_sym_COLON_COLON, - STATE(969), 1, - sym_parameters, - STATE(1348), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59871] = 4, - ACTIONS(4161), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4062), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58863] = 4, + ACTIONS(4072), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4062), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [59887] = 3, - ACTIONS(4202), 1, - anon_sym_EQ, + [58879] = 5, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4208), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [59901] = 6, - ACTIONS(3339), 1, + ACTIONS(3343), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58897] = 6, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(3343), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3347), 1, + ACTIONS(3363), 1, anon_sym_COLON_COLON, - STATE(1348), 1, + STATE(1343), 1, sym_type_arguments, STATE(1365), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59921] = 4, - ACTIONS(4197), 1, - anon_sym_RBRACK, + [58917] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 2, + ACTIONS(2793), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3578), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [59937] = 5, - ACTIONS(782), 1, - anon_sym_RPAREN, - ACTIONS(4204), 1, - anon_sym_COMMA, - STATE(1904), 1, - aux_sym_parameters_repeat1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58929] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3327), 2, - anon_sym_COLON, - anon_sym_PIPE, - [59955] = 4, - ACTIONS(284), 1, + ACTIONS(2875), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4206), 1, - anon_sym_if, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58941] = 4, + ACTIONS(4072), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1059), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59971] = 2, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4210), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58957] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2959), 5, + ACTIONS(2762), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [59983] = 2, + [58969] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4208), 5, + ACTIONS(2809), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [59995] = 2, + [58981] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4210), 5, + ACTIONS(4212), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60007] = 3, + [58993] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2782), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4214), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [60021] = 2, + [59005] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2929), 5, + ACTIONS(4216), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [60033] = 2, + anon_sym_COMMA, + [59017] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4212), 5, + ACTIONS(4218), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60045] = 2, + [59029] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4214), 5, + ACTIONS(4220), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60057] = 4, - ACTIONS(658), 1, + [59041] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4216), 1, + ACTIONS(4222), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(226), 3, + STATE(1122), 3, sym_if_expression, sym_if_let_expression, sym_block, - [60073] = 2, + [59057] = 5, + ACTIONS(4224), 1, + anon_sym_RPAREN, + ACTIONS(4226), 1, + anon_sym_COMMA, + STATE(2119), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3861), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [60085] = 6, - ACTIONS(3792), 1, + ACTIONS(3343), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59075] = 6, + ACTIONS(3810), 1, anon_sym_COLON, - ACTIONS(4218), 1, + ACTIONS(4228), 1, anon_sym_COMMA, - ACTIONS(4220), 1, + ACTIONS(4230), 1, anon_sym_GT, - STATE(2070), 1, - aux_sym_type_parameters_repeat1, - STATE(2090), 1, + STATE(1963), 1, sym_trait_bounds, + STATE(2073), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60105] = 5, - ACTIONS(4222), 1, - anon_sym_RPAREN, - ACTIONS(4224), 1, + [59095] = 3, + ACTIONS(4232), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 4, + anon_sym_PLUS, anon_sym_COMMA, - STATE(2114), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + anon_sym_COLON_COLON, + [59109] = 4, + ACTIONS(2865), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3327), 2, + ACTIONS(3566), 2, anon_sym_COLON, anon_sym_PIPE, - [60123] = 2, + ACTIONS(4197), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59125] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4226), 5, + ACTIONS(4234), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60135] = 2, + [59137] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4228), 5, + ACTIONS(4236), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60147] = 5, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - STATE(891), 1, - sym_declaration_list, - STATE(2152), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60164] = 5, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(4230), 1, - anon_sym_SEMI, - ACTIONS(4232), 1, + [59149] = 5, + ACTIONS(3446), 1, anon_sym_EQ, - STATE(2518), 1, + ACTIONS(3810), 1, + anon_sym_COLON, + STATE(1994), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60181] = 5, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4222), 1, - anon_sym_RPAREN, - ACTIONS(4224), 1, + ACTIONS(4238), 2, anon_sym_COMMA, - STATE(2114), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60198] = 5, - ACTIONS(4234), 1, - anon_sym_LPAREN, - ACTIONS(4236), 1, - anon_sym_LBRACE, - ACTIONS(4238), 1, - anon_sym_LBRACK, - STATE(1397), 1, - sym_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60215] = 4, - ACTIONS(4240), 1, - anon_sym_DQUOTE, - STATE(1809), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4242), 2, - sym__string_content, - sym_escape_sequence, - [60230] = 4, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3618), 1, + anon_sym_GT, + [59167] = 4, + ACTIONS(4155), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, + ACTIONS(3353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60245] = 5, - ACTIONS(4244), 1, + ACTIONS(4210), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59183] = 6, + ACTIONS(2484), 1, anon_sym_LPAREN, - ACTIONS(4246), 1, - anon_sym_LBRACE, - ACTIONS(4248), 1, - anon_sym_LBRACK, - STATE(1887), 1, - sym_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60262] = 5, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(4250), 1, - anon_sym_SEMI, - ACTIONS(4252), 1, - anon_sym_COLON, - ACTIONS(4254), 1, - anon_sym_EQ, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3363), 1, + anon_sym_COLON_COLON, + STATE(990), 1, + sym_parameters, + STATE(1343), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60279] = 3, - ACTIONS(4256), 1, - anon_sym_in, + [59203] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4258), 3, - sym_self, - sym_super, - sym_crate, - [60292] = 3, + ACTIONS(4240), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [59215] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3327), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4260), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60305] = 5, - ACTIONS(4218), 1, - anon_sym_COMMA, - ACTIONS(4220), 1, - anon_sym_GT, - ACTIONS(4262), 1, + ACTIONS(4242), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, anon_sym_EQ, - STATE(2070), 1, - aux_sym_type_parameters_repeat1, + anon_sym_COMMA, + [59227] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4244), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60322] = 5, - ACTIONS(3279), 1, + STATE(73), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59243] = 5, + ACTIONS(3237), 1, anon_sym_LBRACE, - ACTIONS(4069), 1, + ACTIONS(4246), 1, sym_identifier, - ACTIONS(4071), 1, + ACTIONS(4248), 1, anon_sym_STAR, - STATE(2103), 1, + STATE(2080), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60339] = 4, - ACTIONS(3438), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_BANG, + [59260] = 5, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3724), 1, + anon_sym_LT, + STATE(1676), 1, + sym_parameters, + STATE(2151), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60354] = 5, - ACTIONS(3792), 1, + [59277] = 4, + ACTIONS(3810), 1, anon_sym_COLON, - ACTIONS(4264), 1, - anon_sym_SEMI, - ACTIONS(4266), 1, - anon_sym_EQ, - STATE(2519), 1, + STATE(1963), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60371] = 5, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4268), 1, + ACTIONS(4250), 2, anon_sym_COMMA, - ACTIONS(4270), 1, anon_sym_GT, - STATE(2101), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60388] = 5, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LBRACE, - STATE(381), 1, - sym_field_declaration_list, - STATE(2137), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60405] = 4, + [59292] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(998), 1, + ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4272), 1, + ACTIONS(4253), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4274), 3, + ACTIONS(4255), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [60420] = 5, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - STATE(393), 1, - sym_declaration_list, - STATE(2162), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60437] = 4, - ACTIONS(4276), 1, - anon_sym_COMMA, - STATE(1838), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2838), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60452] = 5, - ACTIONS(2369), 1, - anon_sym_PLUS, - ACTIONS(4268), 1, - anon_sym_COMMA, - ACTIONS(4270), 1, - anon_sym_GT, - STATE(2101), 1, - aux_sym_type_arguments_repeat1, + [59307] = 4, + ACTIONS(3562), 1, + anon_sym_BANG, + ACTIONS(3564), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60469] = 5, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - STATE(340), 1, - sym_declaration_list, - STATE(2172), 1, - sym_where_clause, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59322] = 4, + ACTIONS(4257), 1, + anon_sym_DQUOTE, + STATE(1784), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60486] = 5, - ACTIONS(3698), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - STATE(942), 1, - sym_field_declaration_list, - STATE(2140), 1, - sym_where_clause, + ACTIONS(4259), 2, + sym__string_content, + sym_escape_sequence, + [59337] = 4, + ACTIONS(3562), 1, + anon_sym_BANG, + ACTIONS(3686), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60503] = 5, - ACTIONS(3279), 1, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59352] = 5, + ACTIONS(4261), 1, + anon_sym_LPAREN, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, - sym_identifier, - ACTIONS(4280), 1, - anon_sym_STAR, - STATE(2116), 1, - sym_use_list, + ACTIONS(4265), 1, + anon_sym_LBRACK, + STATE(96), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60520] = 5, - ACTIONS(3343), 1, + [59369] = 5, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3724), 1, anon_sym_LT, - STATE(1622), 1, + STATE(1700), 1, sym_parameters, - STATE(2196), 1, + STATE(2262), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60537] = 5, - ACTIONS(4234), 1, + [59386] = 5, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(4236), 1, - anon_sym_LBRACE, - ACTIONS(4238), 1, - anon_sym_LBRACK, - STATE(1399), 1, - sym_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60554] = 5, - ACTIONS(3700), 1, - anon_sym_where, ACTIONS(3724), 1, - anon_sym_LBRACE, - STATE(262), 1, - sym_field_declaration_list, - STATE(2180), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60571] = 4, - ACTIONS(4282), 1, - anon_sym_DQUOTE, - STATE(1814), 1, - aux_sym_string_literal_repeat1, + anon_sym_LT, + STATE(1681), 1, + sym_parameters, + STATE(2239), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4284), 2, - sym__string_content, - sym_escape_sequence, - [60586] = 5, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - STATE(955), 1, - sym_declaration_list, - STATE(2145), 1, - sym_where_clause, + [59403] = 5, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4267), 1, + anon_sym_RPAREN, + ACTIONS(4269), 1, + anon_sym_COMMA, + STATE(2033), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60603] = 5, - ACTIONS(2369), 1, - anon_sym_PLUS, - ACTIONS(4286), 1, - anon_sym_COMMA, - ACTIONS(4288), 1, - anon_sym_GT, - STATE(1912), 1, - aux_sym_type_arguments_repeat1, + [59420] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60620] = 4, - ACTIONS(3438), 1, - anon_sym_COLON_COLON, - ACTIONS(4290), 1, + ACTIONS(3343), 2, anon_sym_COLON, - ACTIONS(3), 2, + anon_sym_PIPE, + ACTIONS(4271), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59433] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1004), 1, sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60635] = 5, - ACTIONS(4292), 1, - anon_sym_LPAREN, - ACTIONS(4294), 1, - anon_sym_LBRACE, - ACTIONS(4296), 1, - anon_sym_LBRACK, - STATE(961), 1, - sym_token_tree, - ACTIONS(3), 2, + ACTIONS(4273), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4275), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59448] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1004), 1, sym_line_comment, - [60652] = 5, - ACTIONS(782), 1, - anon_sym_RPAREN, - ACTIONS(3967), 1, + ACTIONS(4277), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4279), 3, anon_sym_PLUS, - ACTIONS(4204), 1, - anon_sym_COMMA, - STATE(1904), 1, - aux_sym_parameters_repeat1, + anon_sym_STAR, + anon_sym_QMARK, + [59463] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(283), 1, + sym_declaration_list, + STATE(2179), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60669] = 5, - ACTIONS(4292), 1, + [59480] = 5, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(4294), 1, - anon_sym_LBRACE, - ACTIONS(4296), 1, - anon_sym_LBRACK, - STATE(962), 1, - sym_token_tree, + ACTIONS(3724), 1, + anon_sym_LT, + STATE(1659), 1, + sym_parameters, + STATE(2253), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60686] = 5, - ACTIONS(3598), 1, + [59497] = 5, + ACTIONS(4193), 1, anon_sym_PIPE, - ACTIONS(4298), 1, + ACTIONS(4281), 1, anon_sym_SEMI, - ACTIONS(4300), 1, + ACTIONS(4283), 1, anon_sym_COLON, - ACTIONS(4302), 1, + ACTIONS(4285), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60703] = 4, - ACTIONS(4042), 1, - anon_sym_COLON, - ACTIONS(4044), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60718] = 5, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1333), 1, - sym_type_arguments, - STATE(1366), 1, - sym_parameters, + [59514] = 3, + ACTIONS(4287), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60735] = 5, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(3782), 1, - anon_sym_LBRACE, - STATE(904), 1, - sym_declaration_list, - STATE(2222), 1, - sym_where_clause, + ACTIONS(4289), 3, + sym_self, + sym_super, + sym_crate, + [59527] = 3, + ACTIONS(4291), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60752] = 5, - ACTIONS(3967), 1, + ACTIONS(4293), 3, + sym_self, + sym_super, + sym_crate, + [59540] = 5, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4286), 1, + ACTIONS(4295), 1, + anon_sym_RPAREN, + ACTIONS(4297), 1, anon_sym_COMMA, - ACTIONS(4288), 1, - anon_sym_GT, - STATE(1912), 1, - aux_sym_type_arguments_repeat1, + STATE(1889), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60769] = 5, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4151), 1, - anon_sym_COMMA, - STATE(2060), 1, - aux_sym_parameters_repeat1, + [59557] = 5, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3724), 1, + anon_sym_LT, + STATE(1629), 1, + sym_parameters, + STATE(2288), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60786] = 4, - ACTIONS(3989), 1, + [59574] = 4, + ACTIONS(3460), 1, + anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_COLON, - ACTIONS(4044), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59589] = 4, + ACTIONS(3460), 1, anon_sym_COLON_COLON, + ACTIONS(3878), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, + ACTIONS(3462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60801] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, + [59604] = 4, + ACTIONS(4066), 1, + anon_sym_COLON_COLON, + ACTIONS(4076), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4304), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60814] = 4, - ACTIONS(4306), 1, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59619] = 5, + ACTIONS(4189), 1, + anon_sym_COLON, + ACTIONS(4299), 1, anon_sym_COMMA, - STATE(1797), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4301), 1, + anon_sym_PIPE, + STATE(1922), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4304), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60829] = 5, - ACTIONS(2480), 1, - anon_sym_LPAREN, - ACTIONS(3339), 1, - anon_sym_LT2, - STATE(967), 1, - sym_parameters, - STATE(1333), 1, - sym_type_arguments, + [59636] = 4, + ACTIONS(4303), 1, + anon_sym_DQUOTE, + STATE(1852), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60846] = 3, - ACTIONS(4309), 1, - anon_sym_COLON, + ACTIONS(4305), 2, + sym__string_content, + sym_escape_sequence, + [59651] = 5, + ACTIONS(4261), 1, + anon_sym_LPAREN, + ACTIONS(4263), 1, + anon_sym_LBRACE, + ACTIONS(4265), 1, + anon_sym_LBRACK, + STATE(148), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60859] = 5, - ACTIONS(4311), 1, + [59668] = 5, + ACTIONS(4307), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4309), 1, anon_sym_LBRACE, - ACTIONS(4315), 1, + ACTIONS(4311), 1, anon_sym_LBRACK, - STATE(67), 1, + STATE(833), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60876] = 5, - ACTIONS(3690), 1, + [59685] = 5, + ACTIONS(4307), 1, + anon_sym_LPAREN, + ACTIONS(4309), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - STATE(259), 1, - sym_declaration_list, - STATE(2217), 1, - sym_where_clause, + ACTIONS(4311), 1, + anon_sym_LBRACK, + STATE(834), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60893] = 5, - ACTIONS(3700), 1, + [59702] = 5, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(4005), 1, + ACTIONS(4046), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(306), 1, sym_enum_variant_list, - STATE(2151), 1, + STATE(2135), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60910] = 5, - ACTIONS(4169), 1, + [59719] = 5, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(4313), 1, anon_sym_RPAREN, - ACTIONS(4173), 1, + ACTIONS(4315), 1, anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_PIPE, - STATE(1974), 1, + STATE(1904), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60927] = 5, - ACTIONS(4013), 1, - anon_sym_COMMA, - ACTIONS(4015), 1, - anon_sym_GT, - ACTIONS(4262), 1, - anon_sym_EQ, - STATE(2030), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60944] = 5, - ACTIONS(3967), 1, - anon_sym_PLUS, + [59736] = 5, ACTIONS(4317), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(4319), 1, - anon_sym_COMMA, - STATE(1924), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60961] = 5, - ACTIONS(4175), 1, - anon_sym_PIPE, + anon_sym_LBRACE, ACTIONS(4321), 1, - anon_sym_SEMI, - ACTIONS(4323), 1, - anon_sym_COLON, - ACTIONS(4325), 1, - anon_sym_EQ, + anon_sym_LBRACK, + STATE(1385), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60978] = 4, - ACTIONS(4327), 1, + [59753] = 4, + ACTIONS(4323), 1, anon_sym_DQUOTE, - STATE(1760), 1, + STATE(1852), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4329), 2, + ACTIONS(4305), 2, sym__string_content, sym_escape_sequence, - [60993] = 5, - ACTIONS(4244), 1, + [59768] = 5, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(4325), 1, + anon_sym_RBRACK, + ACTIONS(4327), 1, + anon_sym_COMMA, + STATE(2060), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59785] = 5, + ACTIONS(4317), 1, anon_sym_LPAREN, - ACTIONS(4246), 1, + ACTIONS(4319), 1, anon_sym_LBRACE, - ACTIONS(4248), 1, + ACTIONS(4321), 1, anon_sym_LBRACK, - STATE(1134), 1, + STATE(1378), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61010] = 4, - ACTIONS(4331), 1, + [59802] = 4, + ACTIONS(4329), 1, anon_sym_DQUOTE, - STATE(1809), 1, + STATE(1791), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4333), 2, + ACTIONS(4331), 2, sym__string_content, sym_escape_sequence, - [61025] = 5, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4336), 1, + [59817] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3343), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4333), 2, anon_sym_RPAREN, - ACTIONS(4338), 1, anon_sym_COMMA, - STATE(2034), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59830] = 4, + ACTIONS(4337), 1, + anon_sym_COMMA, + STATE(1796), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4335), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [59845] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(1015), 1, + sym_declaration_list, + STATE(2225), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61042] = 3, + [59862] = 5, + ACTIONS(2405), 1, + anon_sym_PLUS, ACTIONS(4340), 1, - anon_sym_in, + anon_sym_COMMA, + ACTIONS(4342), 1, + anon_sym_GT, + STATE(1966), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4342), 3, - sym_self, - sym_super, - sym_crate, - [61055] = 4, + [59879] = 5, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4340), 1, + anon_sym_COMMA, + ACTIONS(4342), 1, + anon_sym_GT, + STATE(1966), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59896] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(468), 1, + sym_declaration_list, + STATE(2218), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59913] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(998), 1, + ACTIONS(1004), 1, sym_line_comment, ACTIONS(4344), 1, aux_sym_token_repetition_pattern_token1, @@ -118980,7845 +119102,8010 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [61070] = 4, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(2090), 1, - sym_trait_bounds, + [59928] = 5, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4348), 1, + anon_sym_RPAREN, + ACTIONS(4350), 1, + anon_sym_COMMA, + STATE(2026), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59945] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_declaration_list, + STATE(2206), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59962] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(864), 1, + sym_declaration_list, + STATE(2201), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59979] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(318), 1, + sym_declaration_list, + STATE(2272), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4348), 2, + [59996] = 5, + ACTIONS(4084), 1, anon_sym_COMMA, + ACTIONS(4086), 1, anon_sym_GT, - [61085] = 4, - ACTIONS(4350), 1, - anon_sym_DQUOTE, - STATE(1809), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4352), 1, + anon_sym_EQ, + STATE(2096), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4242), 2, - sym__string_content, - sym_escape_sequence, - [61100] = 5, - ACTIONS(3343), 1, + [60013] = 5, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4200), 1, + anon_sym_COMMA, + STATE(2084), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60030] = 5, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3702), 1, - anon_sym_LT, - STATE(1623), 1, + STATE(1346), 1, + sym_type_arguments, + STATE(1360), 1, sym_parameters, - STATE(2304), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61117] = 5, - ACTIONS(3967), 1, + [60047] = 3, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4352), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4354), 3, anon_sym_RPAREN, - ACTIONS(4354), 1, anon_sym_COMMA, - STATE(2020), 1, - aux_sym_tuple_type_repeat1, + anon_sym_PIPE, + [60060] = 5, + ACTIONS(3720), 1, + anon_sym_LBRACE, + ACTIONS(3722), 1, + anon_sym_where, + STATE(780), 1, + sym_field_declaration_list, + STATE(2173), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61134] = 5, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - anon_sym_LT, - STATE(1630), 1, - sym_parameters, - STATE(2201), 1, - sym_type_parameters, + [60077] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61151] = 5, - ACTIONS(3700), 1, + ACTIONS(4356), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60090] = 5, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(774), 1, + STATE(410), 1, sym_declaration_list, - STATE(2157), 1, + STATE(2210), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61168] = 5, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_LBRACE, - ACTIONS(4315), 1, - anon_sym_LBRACK, - STATE(55), 1, - sym_token_tree, + [60107] = 5, + ACTIONS(4187), 1, + anon_sym_RPAREN, + ACTIONS(4191), 1, + anon_sym_COMMA, + ACTIONS(4193), 1, + anon_sym_PIPE, + STATE(1975), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61185] = 5, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - anon_sym_LT, - STATE(1690), 1, - sym_parameters, - STATE(2251), 1, - sym_type_parameters, + [60124] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3987), 1, + anon_sym_LBRACE, + STATE(791), 1, + sym_enum_variant_list, + STATE(2168), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61202] = 5, - ACTIONS(3700), 1, + [60141] = 5, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(4055), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - STATE(783), 1, - sym_enum_variant_list, - STATE(2165), 1, + STATE(801), 1, + sym_declaration_list, + STATE(2160), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61219] = 5, - ACTIONS(3700), 1, + [60158] = 5, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3750), 1, anon_sym_LBRACE, - STATE(850), 1, + STATE(821), 1, sym_declaration_list, - STATE(2203), 1, + STATE(2155), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61236] = 4, - ACTIONS(4358), 1, - anon_sym_COMMA, - STATE(1774), 1, - aux_sym_where_clause_repeat1, + [60175] = 4, + ACTIONS(3562), 1, + anon_sym_BANG, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4356), 2, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60190] = 5, + ACTIONS(3642), 1, + anon_sym_PIPE, + ACTIONS(4358), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [61251] = 4, - ACTIONS(2245), 1, - anon_sym_POUND, ACTIONS(4360), 1, - sym_identifier, + anon_sym_COLON, + ACTIONS(4362), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1079), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [61266] = 5, - ACTIONS(3967), 1, + [60207] = 5, + ACTIONS(2405), 1, anon_sym_PLUS, - ACTIONS(4362), 1, - anon_sym_RPAREN, ACTIONS(4364), 1, anon_sym_COMMA, - STATE(1941), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4366), 1, + anon_sym_GT, + STATE(2113), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61283] = 5, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + [60224] = 5, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4364), 1, + anon_sym_COMMA, + ACTIONS(4366), 1, + anon_sym_GT, + STATE(2113), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60241] = 5, + ACTIONS(3722), 1, anon_sym_where, - STATE(281), 1, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(367), 1, sym_declaration_list, - STATE(2200), 1, + STATE(2287), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61300] = 4, - ACTIONS(4366), 1, - anon_sym_DQUOTE, - STATE(1809), 1, - aux_sym_string_literal_repeat1, + [60258] = 5, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4224), 1, + anon_sym_RPAREN, + ACTIONS(4226), 1, + anon_sym_COMMA, + STATE(2119), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4242), 2, - sym__string_content, - sym_escape_sequence, - [61315] = 5, - ACTIONS(3700), 1, + [60275] = 5, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(3782), 1, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(836), 1, + STATE(356), 1, sym_declaration_list, - STATE(2198), 1, + STATE(2153), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61332] = 5, - ACTIONS(3343), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - anon_sym_LT, - STATE(1682), 1, - sym_parameters, - STATE(2186), 1, - sym_type_parameters, + [60292] = 5, + ACTIONS(3810), 1, + anon_sym_COLON, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4370), 1, + anon_sym_EQ, + STATE(2482), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61349] = 5, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(4368), 1, - anon_sym_RBRACK, - ACTIONS(4370), 1, - anon_sym_COMMA, - STATE(2001), 1, - aux_sym_tuple_pattern_repeat1, + [60309] = 5, + ACTIONS(3720), 1, + anon_sym_LBRACE, + ACTIONS(3722), 1, + anon_sym_where, + STATE(951), 1, + sym_field_declaration_list, + STATE(2158), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61366] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + [60326] = 5, + ACTIONS(3810), 1, + anon_sym_COLON, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4374), 1, + anon_sym_EQ, + STATE(2511), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4372), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [61379] = 5, - ACTIONS(4175), 1, + [60343] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(962), 1, + sym_declaration_list, + STATE(2166), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60360] = 5, + ACTIONS(3642), 1, anon_sym_PIPE, - ACTIONS(4374), 1, - anon_sym_RPAREN, ACTIONS(4376), 1, - anon_sym_COMMA, - STATE(1999), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_SEMI, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61396] = 5, - ACTIONS(3343), 1, + [60377] = 5, + ACTIONS(2484), 1, anon_sym_LPAREN, - ACTIONS(3702), 1, - anon_sym_LT, - STATE(1686), 1, + ACTIONS(3355), 1, + anon_sym_LT2, + STATE(987), 1, sym_parameters, - STATE(2228), 1, - sym_type_parameters, + STATE(1346), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61413] = 3, + [60394] = 5, + ACTIONS(4228), 1, + anon_sym_COMMA, + ACTIONS(4230), 1, + anon_sym_GT, + ACTIONS(4352), 1, + anon_sym_EQ, + STATE(2073), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3327), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4378), 2, + [60411] = 5, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4382), 1, anon_sym_RPAREN, + ACTIONS(4384), 1, anon_sym_COMMA, - [61426] = 5, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(1333), 1, - sym_type_arguments, - STATE(1990), 1, - sym_trait_bounds, + STATE(2069), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61443] = 3, - ACTIONS(3967), 1, + [60428] = 5, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4380), 3, + ACTIONS(4167), 1, anon_sym_RPAREN, + ACTIONS(4169), 1, anon_sym_COMMA, - anon_sym_PIPE, - [61456] = 5, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(4005), 1, - anon_sym_LBRACE, - STATE(370), 1, - sym_enum_variant_list, - STATE(2277), 1, - sym_where_clause, + STATE(1903), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61473] = 4, - ACTIONS(4384), 1, - anon_sym_COMMA, - STATE(1838), 1, - aux_sym_where_clause_repeat1, + [60445] = 4, + ACTIONS(3810), 1, + anon_sym_COLON, + STATE(1963), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4382), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [61488] = 5, - ACTIONS(3698), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, + ACTIONS(4386), 2, + anon_sym_COMMA, + anon_sym_GT, + [60460] = 5, + ACTIONS(3722), 1, anon_sym_where, - STATE(789), 1, - sym_field_declaration_list, - STATE(2170), 1, + ACTIONS(3987), 1, + anon_sym_LBRACE, + STATE(1014), 1, + sym_enum_variant_list, + STATE(2211), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61505] = 4, - ACTIONS(3), 1, + [60477] = 5, + ACTIONS(4388), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, + anon_sym_LBRACE, + ACTIONS(4392), 1, + anon_sym_LBRACK, + STATE(1092), 1, + sym_token_tree, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(998), 1, sym_line_comment, - ACTIONS(4387), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4389), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61520] = 4, - ACTIONS(4391), 1, + [60494] = 4, + ACTIONS(4394), 1, anon_sym_DQUOTE, - STATE(1827), 1, + STATE(1852), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4393), 2, + ACTIONS(4305), 2, sym__string_content, sym_escape_sequence, - [61535] = 4, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3654), 1, - anon_sym_COLON_COLON, + [60509] = 5, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + sym_identifier, + ACTIONS(4016), 1, + anon_sym_STAR, + STATE(2059), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61550] = 4, - ACTIONS(3438), 1, - anon_sym_COLON_COLON, - ACTIONS(3510), 1, + [60526] = 5, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(4396), 1, + anon_sym_SEMI, + ACTIONS(4398), 1, anon_sym_COLON, + ACTIONS(4400), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61565] = 5, - ACTIONS(4244), 1, - anon_sym_LPAREN, - ACTIONS(4246), 1, - anon_sym_LBRACE, - ACTIONS(4248), 1, - anon_sym_LBRACK, - STATE(1025), 1, - sym_token_tree, + [60543] = 4, + ACTIONS(4404), 1, + anon_sym_COMMA, + STATE(1839), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61582] = 5, - ACTIONS(3598), 1, - anon_sym_PIPE, - ACTIONS(4395), 1, - anon_sym_SEMI, - ACTIONS(4397), 1, - anon_sym_COLON, - ACTIONS(4399), 1, - anon_sym_EQ, + ACTIONS(4402), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [60558] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61599] = 5, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4145), 1, + ACTIONS(4407), 3, anon_sym_RPAREN, - ACTIONS(4147), 1, anon_sym_COMMA, - STATE(1984), 1, - aux_sym_parameters_repeat1, + anon_sym_PIPE, + [60571] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61616] = 4, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3514), 1, - anon_sym_COLON_COLON, + ACTIONS(4409), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60584] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61631] = 5, - ACTIONS(3690), 1, + ACTIONS(4402), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [60597] = 5, + ACTIONS(4388), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - STATE(342), 1, - sym_declaration_list, - STATE(2122), 1, - sym_where_clause, + ACTIONS(4392), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61648] = 5, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(4055), 1, - anon_sym_LBRACE, - STATE(987), 1, - sym_enum_variant_list, - STATE(2190), 1, - sym_where_clause, + [60614] = 5, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4208), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61665] = 5, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_where, - STATE(382), 1, - sym_declaration_list, - STATE(2274), 1, - sym_where_clause, + [60631] = 4, + ACTIONS(4411), 1, + anon_sym_DQUOTE, + STATE(1836), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61682] = 5, - ACTIONS(3967), 1, + ACTIONS(4413), 2, + sym__string_content, + sym_escape_sequence, + [60646] = 4, + ACTIONS(3460), 1, + anon_sym_COLON_COLON, + ACTIONS(4415), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60661] = 5, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4401), 1, + ACTIONS(4417), 1, anon_sym_RPAREN, - ACTIONS(4403), 1, + ACTIONS(4419), 1, anon_sym_COMMA, - STATE(2066), 1, - aux_sym_tuple_type_repeat1, + STATE(1953), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61699] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(998), 1, - sym_line_comment, - ACTIONS(4405), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4407), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61714] = 4, - ACTIONS(3792), 1, + [60678] = 5, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3810), 1, anon_sym_COLON, - STATE(2090), 1, + STATE(1346), 1, + sym_type_arguments, + STATE(1924), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4409), 2, + [60695] = 4, + ACTIONS(4421), 1, anon_sym_COMMA, - anon_sym_GT, - [61729] = 5, - ACTIONS(4171), 1, + STATE(1796), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2833), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [60710] = 4, + ACTIONS(4064), 1, anon_sym_COLON, - ACTIONS(4412), 1, - anon_sym_COMMA, - ACTIONS(4414), 1, - anon_sym_PIPE, - STATE(1916), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4066), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61746] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60725] = 3, + ACTIONS(4423), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4416), 3, + ACTIONS(3642), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [61759] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + [60738] = 4, + ACTIONS(4425), 1, + anon_sym_DQUOTE, + STATE(1852), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4418), 3, - anon_sym_RPAREN, + ACTIONS(4427), 2, + sym__string_content, + sym_escape_sequence, + [60753] = 4, + ACTIONS(4432), 1, anon_sym_COMMA, - anon_sym_PIPE, - [61772] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, + STATE(1849), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4420), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61784] = 4, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(4422), 1, + ACTIONS(4430), 2, anon_sym_SEMI, - STATE(896), 1, - sym_block, + anon_sym_LBRACE, + [60768] = 4, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(4434), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61798] = 4, - ACTIONS(4013), 1, - anon_sym_COMMA, - ACTIONS(4015), 1, - anon_sym_GT, - STATE(2030), 1, - aux_sym_type_parameters_repeat1, + STATE(1058), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [60783] = 5, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3724), 1, + anon_sym_LT, + STATE(1701), 1, + sym_parameters, + STATE(2243), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61812] = 3, - ACTIONS(4424), 1, - sym_identifier, + [60800] = 5, + ACTIONS(4388), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, + anon_sym_LBRACE, + ACTIONS(4392), 1, + anon_sym_LBRACK, + STATE(2086), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4426), 2, - anon_sym_default, - anon_sym_union, - [61824] = 4, - ACTIONS(4428), 1, + [60817] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3744), 1, + anon_sym_LBRACE, + STATE(344), 1, + sym_field_declaration_list, + STATE(2194), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60834] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(3744), 1, + anon_sym_LBRACE, + STATE(399), 1, + sym_field_declaration_list, + STATE(2142), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60851] = 5, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(4046), 1, + anon_sym_LBRACE, + STATE(374), 1, + sym_enum_variant_list, + STATE(2128), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60868] = 4, + ACTIONS(3756), 1, anon_sym_RBRACE, - ACTIONS(4430), 1, + ACTIONS(4436), 1, anon_sym_COMMA, - STATE(1861), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2068), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61838] = 4, - ACTIONS(3971), 1, + [60882] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4433), 1, + ACTIONS(4438), 1, anon_sym_SEMI, - STATE(353), 1, + STATE(996), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61852] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4435), 1, - sym_identifier, - STATE(2428), 1, - sym_type_arguments, + [60896] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61866] = 4, - ACTIONS(4437), 1, - sym_identifier, - ACTIONS(4439), 1, - anon_sym_ref, - ACTIONS(4441), 1, - sym_mutable_specifier, + ACTIONS(4440), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60906] = 4, + ACTIONS(4442), 1, + anon_sym_RBRACE, + ACTIONS(4444), 1, + anon_sym_COMMA, + STATE(1918), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61880] = 4, - ACTIONS(4443), 1, + [60920] = 4, + ACTIONS(4446), 1, sym_identifier, - ACTIONS(4445), 1, + ACTIONS(4448), 1, anon_sym_ref, - ACTIONS(4447), 1, + ACTIONS(4450), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61894] = 4, - ACTIONS(3967), 1, + [60934] = 3, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4449), 1, - anon_sym_SEMI, - ACTIONS(4451), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61908] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4453), 3, + ACTIONS(4452), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [61918] = 2, + [60946] = 4, + ACTIONS(4454), 1, + sym_identifier, + ACTIONS(4456), 1, + anon_sym_ref, + ACTIONS(4458), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4455), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61928] = 4, - ACTIONS(3702), 1, - anon_sym_LT, - ACTIONS(4457), 1, + [60960] = 4, + ACTIONS(4460), 1, + sym_identifier, + ACTIONS(4462), 1, + anon_sym_ref, + ACTIONS(4464), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60974] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4466), 1, + anon_sym_SEMI, + ACTIONS(4468), 1, anon_sym_EQ, - STATE(2509), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61942] = 4, - ACTIONS(548), 1, + [60988] = 4, + ACTIONS(546), 1, anon_sym_RBRACK, - ACTIONS(3061), 1, + ACTIONS(4470), 1, anon_sym_COMMA, - STATE(1963), 1, + STATE(1959), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61956] = 4, - ACTIONS(4459), 1, - anon_sym_RPAREN, - ACTIONS(4461), 1, - anon_sym_COMMA, - STATE(1973), 1, - aux_sym_meta_arguments_repeat1, + [61002] = 4, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(4472), 1, + anon_sym_SEMI, + STATE(2462), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61970] = 2, + [61016] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4463), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61980] = 4, - ACTIONS(3700), 1, + ACTIONS(4474), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61026] = 4, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(4465), 1, + ACTIONS(4476), 1, anon_sym_SEMI, - STATE(2312), 1, + STATE(2538), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61994] = 4, - ACTIONS(4467), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_COMMA, - STATE(1874), 1, - aux_sym_use_list_repeat1, + [61040] = 4, + ACTIONS(3724), 1, + anon_sym_LT, + ACTIONS(4478), 1, + anon_sym_EQ, + STATE(2512), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62008] = 2, + [61054] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4472), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4480), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [62018] = 3, - ACTIONS(4474), 1, - sym_identifier, + [61064] = 4, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4482), 1, + anon_sym_SEMI, + STATE(432), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4476), 2, - anon_sym_default, - anon_sym_union, - [62030] = 3, - ACTIONS(3991), 1, - anon_sym_COLON_COLON, + [61078] = 4, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4484), 1, + anon_sym_SEMI, + STATE(385), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62042] = 4, - ACTIONS(4478), 1, - sym_identifier, - ACTIONS(4480), 1, - anon_sym_ref, - ACTIONS(4482), 1, - sym_mutable_specifier, + [61092] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4486), 1, + anon_sym_SEMI, + ACTIONS(4488), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62056] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4435), 1, - sym_identifier, - STATE(2336), 1, - sym_type_arguments, + [61106] = 4, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4490), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62070] = 4, - ACTIONS(3189), 1, + [61120] = 4, + ACTIONS(4492), 1, anon_sym_RPAREN, - ACTIONS(4484), 1, + ACTIONS(4494), 1, anon_sym_COMMA, - STATE(1880), 1, - aux_sym_arguments_repeat1, + STATE(1879), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62084] = 4, - ACTIONS(382), 1, + [61134] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4497), 3, anon_sym_RPAREN, - ACTIONS(4487), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1880), 1, - aux_sym_arguments_repeat1, + [61144] = 4, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(4499), 1, + anon_sym_SEMI, + STATE(462), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62098] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4489), 1, + [61158] = 4, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(4501), 1, anon_sym_SEMI, - ACTIONS(4491), 1, - anon_sym_RBRACK, + STATE(434), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62112] = 4, - ACTIONS(3690), 1, + [61172] = 4, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4493), 1, + ACTIONS(4503), 1, anon_sym_SEMI, - STATE(334), 1, - sym_declaration_list, + STATE(273), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62126] = 2, + [61186] = 3, + ACTIONS(4505), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4495), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62136] = 4, - ACTIONS(4497), 1, - anon_sym_for, - ACTIONS(4499), 1, - anon_sym_loop, - ACTIONS(4501), 1, - anon_sym_while, + ACTIONS(4507), 2, + anon_sym_default, + anon_sym_union, + [61198] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62150] = 3, - ACTIONS(4003), 1, + ACTIONS(4509), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61210] = 3, + ACTIONS(4040), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, + ACTIONS(3353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62162] = 2, + [61222] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4503), 3, - anon_sym_SEMI, + ACTIONS(4511), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61232] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, + anon_sym_PLUS, + STATE(1111), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61246] = 4, + ACTIONS(4513), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [62172] = 4, - ACTIONS(4505), 1, + ACTIONS(4515), 1, + anon_sym_COMMA, + STATE(1948), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61260] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4517), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61272] = 4, + ACTIONS(4519), 1, anon_sym_for, - ACTIONS(4507), 1, + ACTIONS(4521), 1, anon_sym_loop, - ACTIONS(4509), 1, + ACTIONS(4523), 1, anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62186] = 4, - ACTIONS(4511), 1, - anon_sym_RBRACE, - ACTIONS(4513), 1, + [61286] = 4, + ACTIONS(382), 1, + anon_sym_RPAREN, + ACTIONS(3141), 1, anon_sym_COMMA, - STATE(1889), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2101), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62200] = 4, - ACTIONS(3708), 1, - anon_sym_RBRACE, - ACTIONS(4516), 1, - anon_sym_COMMA, - STATE(1951), 1, - aux_sym_field_declaration_list_repeat1, + [61300] = 3, + ACTIONS(4072), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62214] = 4, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(4518), 1, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61312] = 4, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4525), 1, anon_sym_SEMI, - STATE(2491), 1, - sym_where_clause, + STATE(262), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62228] = 4, - ACTIONS(2488), 1, - anon_sym_LT2, - ACTIONS(4520), 1, - sym_identifier, - STATE(799), 1, - sym_type_arguments, + [61326] = 4, + ACTIONS(2548), 1, + anon_sym_LBRACE, + ACTIONS(4527), 1, + anon_sym_COLON_COLON, + STATE(1097), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62242] = 3, - ACTIONS(4524), 1, + [61340] = 4, + ACTIONS(3724), 1, + anon_sym_LT, + ACTIONS(4529), 1, anon_sym_EQ, + STATE(2502), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4522), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62254] = 4, - ACTIONS(3684), 1, + [61354] = 4, + ACTIONS(4531), 1, anon_sym_RBRACE, - ACTIONS(4526), 1, + ACTIONS(4533), 1, anon_sym_COMMA, - STATE(1889), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2035), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62268] = 4, - ACTIONS(4528), 1, - sym_identifier, - ACTIONS(4530), 1, - anon_sym_await, - ACTIONS(4532), 1, - sym_integer_literal, + [61368] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4535), 1, + anon_sym_move, + STATE(1115), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62282] = 4, - ACTIONS(2498), 1, + [61382] = 4, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(4534), 1, - anon_sym_COLON_COLON, - STATE(1021), 1, - sym_field_initializer_list, + ACTIONS(4537), 1, + anon_sym_SEMI, + STATE(267), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62296] = 2, + [61396] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4382), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [62306] = 4, - ACTIONS(3708), 1, - anon_sym_RBRACE, - ACTIONS(4516), 1, + ACTIONS(4539), 2, anon_sym_COMMA, - STATE(1949), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_GT, + [61408] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62320] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + ACTIONS(4541), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61420] = 3, + ACTIONS(3460), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4378), 2, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61432] = 4, + ACTIONS(792), 1, anon_sym_RPAREN, + ACTIONS(4208), 1, anon_sym_COMMA, - [62332] = 4, - ACTIONS(4378), 1, + STATE(2097), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61446] = 4, + ACTIONS(2363), 1, anon_sym_RPAREN, - ACTIONS(4536), 1, + ACTIONS(4543), 1, anon_sym_COMMA, - STATE(1900), 1, - aux_sym_parameters_repeat1, + STATE(1839), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62346] = 4, - ACTIONS(284), 1, + [61460] = 4, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4539), 1, - anon_sym_move, - STATE(1139), 1, + ACTIONS(4545), 1, + anon_sym_SEMI, + STATE(400), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62360] = 3, - ACTIONS(3203), 1, + [61474] = 4, + ACTIONS(3494), 1, anon_sym_COLON_COLON, + ACTIONS(3870), 1, + anon_sym_BANG, + ACTIONS(4547), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4167), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62372] = 4, - ACTIONS(4541), 1, - anon_sym_RBRACE, - ACTIONS(4543), 1, - anon_sym_COMMA, - STATE(2110), 1, - aux_sym_use_list_repeat1, + [61488] = 3, + ACTIONS(3115), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62386] = 4, - ACTIONS(790), 1, + ACTIONS(4549), 2, anon_sym_RPAREN, - ACTIONS(4545), 1, anon_sym_COMMA, - STATE(1900), 1, - aux_sym_parameters_repeat1, + [61500] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62400] = 2, + ACTIONS(4271), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61512] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4547), 3, - anon_sym_SEMI, + ACTIONS(4551), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62410] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4549), 1, - anon_sym_SEMI, - STATE(421), 1, - sym_block, + [61524] = 3, + ACTIONS(4066), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62424] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4551), 1, - anon_sym_SEMI, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61536] = 3, ACTIONS(4553), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62438] = 3, - ACTIONS(4557), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(4555), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62450] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, + anon_sym_default, + anon_sym_union, + [61548] = 4, + ACTIONS(3436), 1, + anon_sym_COLON_COLON, + ACTIONS(3444), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4559), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62462] = 4, - ACTIONS(4561), 1, - anon_sym_RBRACE, - ACTIONS(4563), 1, - anon_sym_COMMA, - STATE(1910), 1, - aux_sym_struct_pattern_repeat1, + [61562] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(3688), 1, + anon_sym_LBRACE, + STATE(1346), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62476] = 3, - ACTIONS(3967), 1, + [61576] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, + ACTIONS(4557), 1, + anon_sym_SEMI, + ACTIONS(4559), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4566), 2, - anon_sym_COMMA, - anon_sym_GT, - [62488] = 4, - ACTIONS(894), 1, - anon_sym_GT, - ACTIONS(4568), 1, + [61590] = 4, + ACTIONS(4561), 1, + anon_sym_RBRACE, + ACTIONS(4563), 1, anon_sym_COMMA, - STATE(1915), 1, - aux_sym_type_arguments_repeat1, + STATE(1957), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62502] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + [61604] = 3, + ACTIONS(4567), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4570), 2, + ACTIONS(4565), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [62514] = 3, - ACTIONS(2369), 1, - anon_sym_PLUS, + [61616] = 3, + ACTIONS(4571), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4570), 2, + ACTIONS(4569), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [62526] = 4, - ACTIONS(4570), 1, - anon_sym_GT, - ACTIONS(4572), 1, + [61628] = 4, + ACTIONS(3700), 1, + anon_sym_RBRACE, + ACTIONS(4573), 1, anon_sym_COMMA, - STATE(1915), 1, - aux_sym_type_arguments_repeat1, + STATE(2066), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62540] = 4, - ACTIONS(4412), 1, + [61642] = 4, + ACTIONS(3700), 1, + anon_sym_RBRACE, + ACTIONS(4573), 1, anon_sym_COMMA, - ACTIONS(4575), 1, - anon_sym_PIPE, - STATE(2074), 1, - aux_sym_closure_parameters_repeat1, + STATE(2055), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62554] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4577), 1, + [61656] = 4, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(4575), 1, anon_sym_SEMI, - ACTIONS(4579), 1, - anon_sym_EQ, + STATE(304), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62568] = 4, - ACTIONS(4581), 1, - sym_identifier, - ACTIONS(4583), 1, - anon_sym_ref, - ACTIONS(4585), 1, - sym_mutable_specifier, + [61670] = 3, + ACTIONS(4579), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62582] = 4, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(4587), 1, - anon_sym_GT, - STATE(2269), 1, - sym_lifetime, + ACTIONS(4577), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61682] = 4, + ACTIONS(4299), 1, + anon_sym_COMMA, + ACTIONS(4581), 1, + anon_sym_PIPE, + STATE(1941), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62596] = 4, - ACTIONS(4589), 1, - anon_sym_COMMA, - ACTIONS(4592), 1, - anon_sym_GT, - STATE(1920), 1, - aux_sym_for_lifetimes_repeat1, + [61696] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62610] = 3, - ACTIONS(4596), 1, - anon_sym_COLON, + ACTIONS(4583), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61706] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4594), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62622] = 4, - ACTIONS(4598), 1, - anon_sym_RBRACE, - ACTIONS(4600), 1, + ACTIONS(4585), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(2061), 1, - aux_sym_field_initializer_list_repeat1, + [61716] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4587), 1, + anon_sym_SEMI, + ACTIONS(4589), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62636] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + [61730] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4602), 2, - anon_sym_COMMA, - anon_sym_GT, - [62648] = 4, - ACTIONS(4604), 1, - anon_sym_RPAREN, - ACTIONS(4606), 1, + ACTIONS(4591), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1946), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61740] = 4, + ACTIONS(3440), 1, + anon_sym_COLON_COLON, + ACTIONS(3444), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62662] = 4, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, - ACTIONS(3796), 1, - anon_sym_BANG, - ACTIONS(4608), 1, - sym_identifier, + [61754] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, + anon_sym_PLUS, + STATE(1032), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62676] = 4, - ACTIONS(3690), 1, + [61768] = 4, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4610), 1, + ACTIONS(4593), 1, anon_sym_SEMI, - STATE(433), 1, - sym_declaration_list, + STATE(453), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62690] = 3, - ACTIONS(3438), 1, - anon_sym_COLON_COLON, + [61782] = 4, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4595), 1, + anon_sym_SEMI, + STATE(315), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62702] = 4, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(4612), 1, - anon_sym_SEMI, - STATE(437), 1, - sym_declaration_list, + [61796] = 4, + ACTIONS(3075), 1, + anon_sym_RPAREN, + ACTIONS(4597), 1, + anon_sym_COMMA, + STATE(1879), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62716] = 4, - ACTIONS(3690), 1, + [61810] = 4, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4599), 1, anon_sym_SEMI, - STATE(294), 1, + STATE(364), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62730] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4616), 2, - anon_sym_COMMA, - anon_sym_GT, - [62742] = 4, - ACTIONS(4348), 1, - anon_sym_GT, - ACTIONS(4618), 1, - anon_sym_COMMA, - STATE(1931), 1, - aux_sym_type_parameters_repeat1, + [61824] = 4, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(4601), 1, + anon_sym_EQ_GT, + ACTIONS(4603), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62756] = 3, - ACTIONS(4262), 1, - anon_sym_EQ, + [61838] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4348), 2, + ACTIONS(4605), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [62768] = 4, - ACTIONS(4621), 1, - anon_sym_for, - ACTIONS(4623), 1, - anon_sym_loop, - ACTIONS(4625), 1, - anon_sym_while, + [61848] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62782] = 4, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(4627), 1, + ACTIONS(4607), 3, anon_sym_SEMI, - STATE(463), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [61858] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4208), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62796] = 4, - ACTIONS(658), 1, + [61872] = 4, + ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(4629), 1, + ACTIONS(4609), 1, anon_sym_move, - STATE(234), 1, + STATE(240), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62810] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4631), 1, + [61886] = 4, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(4611), 1, anon_sym_SEMI, - ACTIONS(4633), 1, - anon_sym_EQ, + STATE(469), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62824] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + [61900] = 4, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, + anon_sym_SEMI, + STATE(440), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4635), 2, + [61914] = 4, + ACTIONS(3728), 1, + anon_sym_RBRACE, + ACTIONS(4615), 1, anon_sym_COMMA, - anon_sym_GT, - [62836] = 4, - ACTIONS(4637), 1, + STATE(1942), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61928] = 4, + ACTIONS(4617), 1, anon_sym_COMMA, - ACTIONS(4639), 1, - anon_sym_GT, - STATE(1920), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4620), 1, + anon_sym_PIPE, + STATE(1941), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62850] = 4, - ACTIONS(2488), 1, - anon_sym_LT2, - ACTIONS(4520), 1, - sym_identifier, - STATE(803), 1, - sym_type_arguments, + [61942] = 4, + ACTIONS(4622), 1, + anon_sym_RBRACE, + ACTIONS(4624), 1, + anon_sym_COMMA, + STATE(1942), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62864] = 4, - ACTIONS(3702), 1, - anon_sym_LT, - ACTIONS(4641), 1, - anon_sym_EQ, - STATE(2452), 1, - sym_type_parameters, + [61956] = 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, - [62878] = 4, - ACTIONS(4643), 1, - anon_sym_RPAREN, - ACTIONS(4645), 1, - anon_sym_COMMA, - STATE(1946), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61970] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62892] = 3, - ACTIONS(3967), 1, + ACTIONS(4633), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61980] = 3, + ACTIONS(3983), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4647), 2, - anon_sym_RPAREN, + ACTIONS(4635), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [62904] = 3, - ACTIONS(4044), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62916] = 4, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - ACTIONS(4639), 1, - anon_sym_GT, - STATE(2269), 1, - sym_lifetime, + [61992] = 3, + ACTIONS(4189), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62930] = 3, - ACTIONS(3985), 1, - anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [62004] = 4, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + sym_identifier, + STATE(1970), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62942] = 4, - ACTIONS(4649), 1, + [62018] = 4, + ACTIONS(4639), 1, anon_sym_RPAREN, - ACTIONS(4651), 1, + ACTIONS(4641), 1, anon_sym_COMMA, - STATE(1946), 1, + STATE(1948), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62956] = 3, - ACTIONS(3967), 1, + [62032] = 4, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4644), 1, + anon_sym_SEMI, + STATE(298), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62046] = 3, + ACTIONS(3983), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4654), 2, - anon_sym_RBRACE, + ACTIONS(4646), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [62968] = 4, - ACTIONS(2498), 1, - anon_sym_LBRACE, - ACTIONS(4656), 1, + [62058] = 3, + ACTIONS(4155), 1, anon_sym_COLON_COLON, - STATE(1021), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62982] = 4, - ACTIONS(4658), 1, - anon_sym_RBRACE, - ACTIONS(4660), 1, - anon_sym_COMMA, - STATE(1949), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(3353), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62070] = 4, + ACTIONS(2548), 1, + anon_sym_LBRACE, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + STATE(1097), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62996] = 4, - ACTIONS(4663), 1, + [62084] = 4, + ACTIONS(4650), 1, anon_sym_RPAREN, - ACTIONS(4665), 1, + ACTIONS(4652), 1, anon_sym_COMMA, - STATE(1950), 1, - aux_sym_tuple_type_repeat1, + STATE(1948), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63010] = 4, - ACTIONS(3776), 1, - anon_sym_RBRACE, - ACTIONS(4668), 1, - anon_sym_COMMA, - STATE(1949), 1, - aux_sym_field_declaration_list_repeat1, + [62098] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4654), 1, + anon_sym_SEMI, + ACTIONS(4656), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63024] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, + [62112] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, - STATE(1133), 1, - sym_block, + ACTIONS(4658), 1, + anon_sym_as, + ACTIONS(4660), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63038] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(3674), 1, + [62126] = 4, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(1333), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63052] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + ACTIONS(4662), 1, + anon_sym_SEMI, + STATE(419), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4663), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63064] = 4, - ACTIONS(3935), 1, + [62140] = 4, + ACTIONS(3740), 1, anon_sym_RBRACE, - ACTIONS(4670), 1, + ACTIONS(4664), 1, anon_sym_COMMA, - STATE(1910), 1, - aux_sym_struct_pattern_repeat1, + STATE(2123), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63078] = 4, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(4672), 1, - anon_sym_SEMI, - STATE(456), 1, - sym_declaration_list, + [62154] = 4, + ACTIONS(4299), 1, + anon_sym_COMMA, + ACTIONS(4666), 1, + anon_sym_PIPE, + STATE(1922), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63092] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - sym_identifier, - STATE(2428), 1, - sym_type_arguments, + [62168] = 4, + ACTIONS(3229), 1, + anon_sym_RBRACK, + ACTIONS(4668), 1, + anon_sym_COMMA, + STATE(1959), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63106] = 4, - ACTIONS(3339), 1, + [62182] = 4, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4671), 1, sym_identifier, - STATE(2336), 1, + STATE(2443), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63120] = 4, - ACTIONS(3782), 1, + [62196] = 4, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4676), 1, + ACTIONS(4673), 1, anon_sym_SEMI, - STATE(1007), 1, + STATE(914), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63134] = 4, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(4678), 1, - anon_sym_SEMI, - STATE(472), 1, - sym_declaration_list, + [62210] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + sym_identifier, + STATE(2311), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63148] = 4, - ACTIONS(3937), 1, - anon_sym_RBRACE, - ACTIONS(4680), 1, - anon_sym_COMMA, - STATE(1910), 1, - aux_sym_struct_pattern_repeat1, + [62224] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63162] = 3, - ACTIONS(4684), 1, + ACTIONS(4675), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [62234] = 3, + ACTIONS(4679), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4682), 2, + ACTIONS(4677), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63174] = 4, - ACTIONS(3165), 1, - anon_sym_RBRACK, - ACTIONS(4686), 1, + [62246] = 4, + ACTIONS(3929), 1, + anon_sym_RBRACE, + ACTIONS(4681), 1, anon_sym_COMMA, - STATE(1963), 1, - aux_sym_array_expression_repeat1, + STATE(2015), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63188] = 4, - ACTIONS(626), 1, - anon_sym_RBRACK, - ACTIONS(4689), 1, + [62260] = 4, + ACTIONS(916), 1, + anon_sym_GT, + ACTIONS(4683), 1, anon_sym_COMMA, - STATE(1963), 1, - aux_sym_array_expression_repeat1, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63202] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4691), 1, - sym_identifier, - STATE(2428), 1, - sym_type_arguments, + [62274] = 4, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(4685), 1, + anon_sym_SEMI, + STATE(331), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63216] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4693), 1, - anon_sym_SEMI, - ACTIONS(4695), 1, - anon_sym_EQ, + [62288] = 4, + ACTIONS(3937), 1, + anon_sym_RBRACE, + ACTIONS(4687), 1, + anon_sym_COMMA, + STATE(2015), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63230] = 4, - ACTIONS(3339), 1, + [62302] = 4, + ACTIONS(2492), 1, anon_sym_LT2, - ACTIONS(4691), 1, + ACTIONS(4689), 1, sym_identifier, - STATE(2336), 1, + STATE(831), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63244] = 2, + [62316] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4697), 3, + ACTIONS(4691), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63254] = 4, - ACTIONS(4699), 1, - anon_sym_RBRACE, - ACTIONS(4701), 1, - anon_sym_COMMA, - STATE(1993), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63268] = 2, + [62326] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4703), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4693), 2, anon_sym_COMMA, - [63278] = 4, - ACTIONS(3426), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, - anon_sym_COLON, - STATE(1990), 1, - sym_trait_bounds, + anon_sym_GT, + [62338] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4695), 1, + sym_identifier, + STATE(2443), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63292] = 4, - ACTIONS(2488), 1, + [62352] = 4, + ACTIONS(2492), 1, anon_sym_LT2, - ACTIONS(4705), 1, + ACTIONS(4697), 1, sym_identifier, - STATE(1256), 1, + STATE(1187), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63306] = 4, - ACTIONS(3073), 1, - anon_sym_RPAREN, - ACTIONS(4707), 1, - anon_sym_COMMA, - STATE(2052), 1, - aux_sym_meta_arguments_repeat1, + [62366] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4695), 1, + sym_identifier, + STATE(2311), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63320] = 4, - ACTIONS(2349), 1, + [62380] = 4, + ACTIONS(2357), 1, anon_sym_RPAREN, - ACTIONS(4709), 1, + ACTIONS(4699), 1, anon_sym_COMMA, - STATE(1797), 1, + STATE(1839), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63334] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4711), 1, - anon_sym_SEMI, - STATE(474), 1, - sym_block, + [62394] = 4, + ACTIONS(4701), 1, + anon_sym_RPAREN, + ACTIONS(4703), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63348] = 4, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(4713), 1, - anon_sym_SEMI, - STATE(307), 1, - sym_declaration_list, + [62408] = 4, + ACTIONS(4706), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_ref, + ACTIONS(4710), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63362] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, + [62422] = 4, + ACTIONS(4712), 1, + anon_sym_COMMA, ACTIONS(4715), 1, - sym_identifier, - STATE(2428), 1, - sym_type_arguments, + anon_sym_GT, + STATE(1978), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63376] = 4, - ACTIONS(2488), 1, + [62436] = 4, + ACTIONS(2492), 1, anon_sym_LT2, - ACTIONS(4705), 1, + ACTIONS(4697), 1, sym_identifier, - STATE(1284), 1, + STATE(1181), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63390] = 4, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, - anon_sym_COLON, - STATE(1990), 1, - sym_trait_bounds, + [62450] = 4, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(4717), 1, + anon_sym_GT, + STATE(2233), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63404] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4715), 1, - sym_identifier, - STATE(2336), 1, - sym_type_arguments, + [62464] = 4, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + ACTIONS(4719), 1, + anon_sym_GT, + STATE(2233), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63418] = 4, - ACTIONS(782), 1, - anon_sym_RPAREN, - ACTIONS(4204), 1, + [62478] = 4, + ACTIONS(4719), 1, + anon_sym_GT, + ACTIONS(4721), 1, anon_sym_COMMA, - STATE(1904), 1, - aux_sym_parameters_repeat1, + STATE(1978), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63432] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4717), 1, - sym_identifier, - STATE(2428), 1, - sym_type_arguments, + [62492] = 4, + ACTIONS(4723), 1, + anon_sym_RBRACE, + ACTIONS(4725), 1, + anon_sym_COMMA, + STATE(2102), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63446] = 4, - ACTIONS(3339), 1, + [62506] = 4, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(4717), 1, + ACTIONS(4727), 1, sym_identifier, - STATE(2336), 1, + STATE(2443), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63460] = 4, - ACTIONS(782), 1, - anon_sym_RPAREN, - ACTIONS(4204), 1, - anon_sym_COMMA, - STATE(1900), 1, - aux_sym_parameters_repeat1, + [62520] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63474] = 4, - ACTIONS(4412), 1, + ACTIONS(4729), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4719), 1, - anon_sym_PIPE, - STATE(1916), 1, - aux_sym_closure_parameters_repeat1, + [62530] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63488] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4721), 1, - anon_sym_SEMI, - STATE(357), 1, - sym_block, + ACTIONS(4731), 2, + anon_sym_COMMA, + anon_sym_GT, + [62542] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4727), 1, + sym_identifier, + STATE(2311), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63502] = 2, + [62556] = 4, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(4735), 1, + anon_sym_await, + ACTIONS(4737), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4723), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [63512] = 4, - ACTIONS(4145), 1, - anon_sym_RPAREN, - ACTIONS(4147), 1, - anon_sym_COMMA, - STATE(1984), 1, - aux_sym_parameters_repeat1, + [62570] = 4, + ACTIONS(2492), 1, + anon_sym_LT2, + ACTIONS(4689), 1, + sym_identifier, + STATE(866), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63526] = 4, - ACTIONS(2369), 1, - anon_sym_PLUS, - ACTIONS(4725), 1, - sym_mutable_specifier, - ACTIONS(4727), 1, - sym_self, + [62584] = 3, + ACTIONS(4352), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63540] = 2, + ACTIONS(4386), 2, + anon_sym_COMMA, + anon_sym_GT, + [62596] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4014), 1, + sym_identifier, + STATE(2443), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4729), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [63550] = 4, - ACTIONS(3730), 1, - anon_sym_RBRACE, - ACTIONS(4731), 1, + [62610] = 4, + ACTIONS(3784), 1, + anon_sym_GT, + ACTIONS(4739), 1, anon_sym_COMMA, - STATE(1894), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2000), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63564] = 4, - ACTIONS(3339), 1, + [62624] = 4, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(4733), 1, + ACTIONS(4741), 1, sym_identifier, - STATE(2336), 1, + STATE(2311), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63578] = 4, - ACTIONS(3730), 1, - anon_sym_RBRACE, - ACTIONS(4731), 1, - anon_sym_COMMA, - STATE(1889), 1, - aux_sym_enum_variant_list_repeat2, + [62638] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63592] = 3, - ACTIONS(4737), 1, + ACTIONS(4743), 3, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [62648] = 4, + ACTIONS(4745), 1, + anon_sym_for, + ACTIONS(4747), 1, + anon_sym_loop, + ACTIONS(4749), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4735), 2, - anon_sym_RBRACE, + [62662] = 4, + ACTIONS(4751), 1, anon_sym_COMMA, - [63604] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_SEMI, - STATE(269), 1, - sym_block, + ACTIONS(4754), 1, + anon_sym_GT, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63618] = 4, - ACTIONS(3339), 1, + [62676] = 4, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(4733), 1, + ACTIONS(4741), 1, sym_identifier, - STATE(2428), 1, + STATE(2443), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63632] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - anon_sym_SEMI, - STATE(354), 1, - sym_block, + [62690] = 4, + ACTIONS(4167), 1, + anon_sym_RPAREN, + ACTIONS(4169), 1, + anon_sym_COMMA, + STATE(1903), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63646] = 4, - ACTIONS(3967), 1, + [62704] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4743), 1, + ACTIONS(4756), 1, anon_sym_SEMI, - ACTIONS(4745), 1, + ACTIONS(4758), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63660] = 4, - ACTIONS(2361), 1, - anon_sym_RPAREN, - ACTIONS(4747), 1, + [62718] = 4, + ACTIONS(4386), 1, + anon_sym_GT, + ACTIONS(4760), 1, anon_sym_COMMA, - STATE(1797), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2000), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63674] = 4, - ACTIONS(4218), 1, + [62732] = 4, + ACTIONS(4228), 1, anon_sym_COMMA, - ACTIONS(4220), 1, + ACTIONS(4230), 1, anon_sym_GT, - STATE(2070), 1, + STATE(2073), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63688] = 4, - ACTIONS(2363), 1, - anon_sym_RBRACK, - ACTIONS(4749), 1, - anon_sym_COMMA, - STATE(1797), 1, - aux_sym_tuple_pattern_repeat1, + [62746] = 4, + ACTIONS(2405), 1, + anon_sym_PLUS, + ACTIONS(4763), 1, + sym_mutable_specifier, + ACTIONS(4765), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63702] = 4, - ACTIONS(3690), 1, + [62760] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4767), 2, + anon_sym_COMMA, + anon_sym_GT, + [62772] = 4, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(4751), 1, + ACTIONS(4769), 1, anon_sym_SEMI, - STATE(365), 1, + STATE(437), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63716] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4753), 1, - sym_identifier, - STATE(2428), 1, - sym_type_arguments, + [62786] = 3, + ACTIONS(2405), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63730] = 4, - ACTIONS(3339), 1, + ACTIONS(4754), 2, + anon_sym_COMMA, + anon_sym_GT, + [62798] = 4, + ACTIONS(3355), 1, anon_sym_LT2, - ACTIONS(4753), 1, + ACTIONS(4771), 1, sym_identifier, - STATE(2336), 1, + STATE(2443), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63744] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + [62812] = 4, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(4773), 1, + anon_sym_SEMI, + STATE(994), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4260), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63756] = 4, - ACTIONS(3782), 1, + [62826] = 4, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(4755), 1, + ACTIONS(4775), 1, anon_sym_SEMI, - STATE(973), 1, + STATE(481), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63770] = 3, - ACTIONS(3203), 1, - anon_sym_COLON_COLON, + [62840] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4757), 2, + ACTIONS(4777), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [63782] = 3, - ACTIONS(4761), 1, - anon_sym_COLON, + [62850] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4014), 1, + sym_identifier, + STATE(2311), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4759), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63794] = 4, - ACTIONS(4763), 1, - anon_sym_RBRACE, - ACTIONS(4765), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_struct_pattern_repeat1, + [62864] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63808] = 4, - ACTIONS(3760), 1, - anon_sym_GT, - ACTIONS(4767), 1, + ACTIONS(4754), 2, anon_sym_COMMA, - STATE(1931), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63822] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4769), 1, - anon_sym_SEMI, - STATE(457), 1, - sym_block, + anon_sym_GT, + [62876] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63836] = 4, - ACTIONS(4286), 1, + ACTIONS(4779), 2, anon_sym_COMMA, - ACTIONS(4288), 1, anon_sym_GT, - STATE(1912), 1, - aux_sym_type_arguments_repeat1, + [62888] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4771), 1, + sym_identifier, + STATE(2311), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63850] = 4, - ACTIONS(3700), 1, + [62902] = 4, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(4771), 1, + ACTIONS(4781), 1, anon_sym_SEMI, - STATE(2515), 1, + STATE(2506), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63864] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4773), 2, + [62916] = 4, + ACTIONS(4783), 1, anon_sym_RBRACE, + ACTIONS(4785), 1, anon_sym_COMMA, - [63876] = 3, - ACTIONS(3967), 1, + STATE(2015), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62930] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, + ACTIONS(4788), 1, + anon_sym_SEMI, + ACTIONS(4790), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4775), 2, - anon_sym_COMMA, - anon_sym_GT, - [63888] = 4, - ACTIONS(3981), 1, + [62944] = 4, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4777), 1, + ACTIONS(4792), 1, anon_sym_SEMI, - STATE(950), 1, + STATE(336), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63902] = 4, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(4779), 1, - anon_sym_SEMI, - STATE(947), 1, - sym_block, + [62958] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63916] = 4, - ACTIONS(4781), 1, + ACTIONS(4794), 2, anon_sym_RBRACE, - ACTIONS(4783), 1, anon_sym_COMMA, - STATE(1955), 1, - aux_sym_struct_pattern_repeat1, + [62970] = 3, + ACTIONS(4798), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63930] = 4, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(4785), 1, - anon_sym_SEMI, - STATE(943), 1, - sym_block, + ACTIONS(4796), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62982] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4800), 1, + sym_identifier, + STATE(2443), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63944] = 4, - ACTIONS(2456), 1, - anon_sym_RPAREN, - ACTIONS(4787), 1, - anon_sym_COMMA, - STATE(1950), 1, - aux_sym_tuple_type_repeat1, + [62996] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63958] = 4, - ACTIONS(384), 1, + ACTIONS(4802), 3, anon_sym_RPAREN, - ACTIONS(3087), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1880), 1, - aux_sym_arguments_repeat1, + [63006] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4800), 1, + sym_identifier, + STATE(2311), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63972] = 4, - ACTIONS(3981), 1, + [63020] = 4, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4804), 1, + anon_sym_SEMI, + STATE(390), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63034] = 4, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4789), 1, + ACTIONS(4806), 1, anon_sym_SEMI, - STATE(935), 1, + STATE(261), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63986] = 4, - ACTIONS(4791), 1, + [63048] = 4, + ACTIONS(4808), 1, anon_sym_COMMA, - ACTIONS(4793), 1, + ACTIONS(4810), 1, anon_sym_GT, - STATE(1938), 1, + STATE(1982), 1, aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64000] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4795), 1, - anon_sym_SEMI, - ACTIONS(4797), 1, - anon_sym_EQ, + [63062] = 4, + ACTIONS(2454), 1, + anon_sym_RPAREN, + ACTIONS(4812), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64014] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + [63076] = 4, + ACTIONS(4814), 1, + anon_sym_RBRACE, + ACTIONS(4816), 1, + anon_sym_COMMA, + STATE(1968), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4799), 2, + [63090] = 4, + ACTIONS(798), 1, anon_sym_RPAREN, + ACTIONS(4818), 1, anon_sym_COMMA, - [64026] = 4, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, - anon_sym_SEMI, - STATE(929), 1, - sym_block, + STATE(2097), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64040] = 2, + [63104] = 3, + ACTIONS(3115), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4803), 3, - anon_sym_EQ, + ACTIONS(4210), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [64050] = 3, - ACTIONS(3967), 1, + [63116] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, + ACTIONS(4820), 1, + anon_sym_SEMI, + ACTIONS(4822), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4805), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64062] = 4, - ACTIONS(3782), 1, + [63130] = 4, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4807), 1, + ACTIONS(4824), 1, anon_sym_SEMI, - STATE(911), 1, + STATE(920), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64076] = 4, - ACTIONS(3756), 1, - anon_sym_GT, - ACTIONS(4809), 1, + [63144] = 4, + ACTIONS(388), 1, + anon_sym_RPAREN, + ACTIONS(4826), 1, anon_sym_COMMA, - STATE(1931), 1, - aux_sym_type_parameters_repeat1, + STATE(2101), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64090] = 4, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(4811), 1, - anon_sym_SEMI, - STATE(296), 1, - sym_declaration_list, + [63158] = 4, + ACTIONS(4828), 1, + anon_sym_RPAREN, + ACTIONS(4830), 1, + anon_sym_COMMA, + STATE(1948), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64104] = 4, - ACTIONS(3782), 1, + [63172] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4813), 1, + ACTIONS(4832), 1, anon_sym_SEMI, - STATE(924), 1, - sym_declaration_list, + STATE(878), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64118] = 4, - ACTIONS(3782), 1, + [63186] = 4, + ACTIONS(3754), 1, + anon_sym_RBRACE, + ACTIONS(4834), 1, + anon_sym_COMMA, + STATE(1942), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63200] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4815), 1, + ACTIONS(4836), 1, anon_sym_SEMI, - STATE(922), 1, - sym_declaration_list, + STATE(885), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63214] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64132] = 4, - ACTIONS(4817), 1, + ACTIONS(4333), 2, anon_sym_RPAREN, - ACTIONS(4819), 1, anon_sym_COMMA, - STATE(1946), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [63226] = 4, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4838), 1, + anon_sym_SEMI, + STATE(904), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64146] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, + [63240] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4840), 1, + sym_identifier, + STATE(2311), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4821), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64158] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4823), 1, - anon_sym_as, - ACTIONS(4825), 1, - anon_sym_GT, + [63254] = 4, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4842), 1, + anon_sym_SEMI, + STATE(947), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64172] = 4, - ACTIONS(3967), 1, + [63268] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4827), 1, + ACTIONS(4844), 1, anon_sym_SEMI, - ACTIONS(4829), 1, + ACTIONS(4846), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64186] = 4, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(4831), 1, - anon_sym_SEMI, - STATE(916), 1, - sym_block, + [63282] = 4, + ACTIONS(3754), 1, + anon_sym_RBRACE, + ACTIONS(4834), 1, + anon_sym_COMMA, + STATE(1940), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64200] = 4, - ACTIONS(3981), 1, + [63296] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4833), 1, + ACTIONS(4848), 1, anon_sym_SEMI, - STATE(910), 1, + STATE(965), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64214] = 4, - ACTIONS(3690), 1, + [63310] = 4, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4835), 1, + ACTIONS(4850), 1, anon_sym_SEMI, - STATE(443), 1, + STATE(976), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64228] = 4, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_SEMI, - STATE(2498), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64242] = 4, - ACTIONS(3690), 1, + [63324] = 4, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4839), 1, + ACTIONS(4852), 1, anon_sym_SEMI, - STATE(272), 1, + STATE(988), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64256] = 4, - ACTIONS(3967), 1, + [63338] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4841), 1, + ACTIONS(4854), 1, anon_sym_SEMI, - ACTIONS(4843), 1, + ACTIONS(4856), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64270] = 4, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(4845), 1, - anon_sym_SEMI, - STATE(844), 1, - sym_declaration_list, + [63352] = 4, + ACTIONS(4340), 1, + anon_sym_COMMA, + ACTIONS(4342), 1, + anon_sym_GT, + STATE(1966), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64284] = 4, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - anon_sym_SEMI, - STATE(435), 1, - sym_declaration_list, + [63366] = 4, + ACTIONS(3355), 1, + anon_sym_LT2, + ACTIONS(4840), 1, + sym_identifier, + STATE(2443), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64298] = 4, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(4849), 1, + [63380] = 4, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(4858), 1, anon_sym_SEMI, - STATE(885), 1, - sym_declaration_list, + STATE(2470), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64312] = 4, - ACTIONS(3704), 1, - anon_sym_RBRACE, - ACTIONS(4851), 1, - anon_sym_COMMA, - STATE(1949), 1, - aux_sym_field_declaration_list_repeat1, + [63394] = 4, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4860), 1, + anon_sym_SEMI, + STATE(1012), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64326] = 4, - ACTIONS(4853), 1, + [63408] = 4, + ACTIONS(4862), 1, anon_sym_RBRACE, - ACTIONS(4855), 1, + ACTIONS(4864), 1, anon_sym_COMMA, - STATE(2121), 1, + STATE(2124), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64340] = 4, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(4857), 1, - anon_sym_EQ_GT, - ACTIONS(4859), 1, - anon_sym_if, + [63422] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64354] = 2, + ACTIONS(4335), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [63432] = 4, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(4866), 1, + anon_sym_SEMI, + STATE(401), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4861), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64364] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4863), 1, + [63446] = 4, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4868), 1, anon_sym_SEMI, - ACTIONS(4865), 1, - anon_sym_EQ, + STATE(1019), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64378] = 4, - ACTIONS(4867), 1, - anon_sym_RPAREN, - ACTIONS(4869), 1, + [63460] = 4, + ACTIONS(3768), 1, + anon_sym_RBRACE, + ACTIONS(4870), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_meta_arguments_repeat1, + STATE(2066), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64392] = 4, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_SEMI, - STATE(875), 1, - sym_declaration_list, + [63474] = 3, + ACTIONS(4874), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64406] = 4, - ACTIONS(3782), 1, + ACTIONS(4872), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63486] = 4, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, + ACTIONS(4876), 1, anon_sym_SEMI, - STATE(871), 1, + STATE(992), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64420] = 4, - ACTIONS(4222), 1, - anon_sym_RPAREN, + [63500] = 4, ACTIONS(4224), 1, + anon_sym_RPAREN, + ACTIONS(4226), 1, anon_sym_COMMA, - STATE(2114), 1, + STATE(2119), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64434] = 4, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(4876), 1, - anon_sym_SEMI, - STATE(866), 1, - sym_block, + [63514] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64448] = 3, + ACTIONS(4878), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63524] = 4, + ACTIONS(2367), 1, + anon_sym_RBRACK, ACTIONS(4880), 1, - anon_sym_COLON, + anon_sym_COMMA, + STATE(1839), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4878), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64460] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4882), 1, - anon_sym_SEMI, - ACTIONS(4884), 1, - anon_sym_EQ, + [63538] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64474] = 4, - ACTIONS(3981), 1, + ACTIONS(4882), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63548] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4886), 1, + ACTIONS(4884), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(887), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64488] = 4, - ACTIONS(788), 1, - anon_sym_RPAREN, - ACTIONS(4888), 1, - anon_sym_COMMA, - STATE(1900), 1, - aux_sym_parameters_repeat1, + [63562] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64502] = 4, - ACTIONS(3768), 1, + ACTIONS(4886), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4890), 1, anon_sym_COMMA, - STATE(1861), 1, - aux_sym_field_initializer_list_repeat1, + [63572] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64516] = 4, - ACTIONS(4268), 1, + ACTIONS(4888), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63582] = 4, + ACTIONS(4364), 1, anon_sym_COMMA, - ACTIONS(4270), 1, + ACTIONS(4366), 1, anon_sym_GT, - STATE(2101), 1, + STATE(2113), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64530] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, + [63596] = 4, + ACTIONS(4890), 1, + anon_sym_RBRACE, ACTIONS(4892), 1, - anon_sym_SEMI, - STATE(423), 1, - sym_block, + anon_sym_COMMA, + STATE(2066), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64544] = 4, - ACTIONS(4894), 1, - anon_sym_RBRACE, - ACTIONS(4896), 1, - anon_sym_COMMA, - STATE(1898), 1, - aux_sym_field_declaration_list_repeat1, + [63610] = 4, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(4895), 1, + anon_sym_SEMI, + STATE(981), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64558] = 4, - ACTIONS(3692), 1, + [63624] = 4, + ACTIONS(3766), 1, anon_sym_RBRACE, - ACTIONS(4898), 1, + ACTIONS(4897), 1, anon_sym_COMMA, - STATE(1889), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1942), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64572] = 4, - ACTIONS(2452), 1, + [63638] = 4, + ACTIONS(2444), 1, anon_sym_RPAREN, - ACTIONS(4900), 1, + ACTIONS(4899), 1, anon_sym_COMMA, - STATE(1950), 1, + STATE(1976), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64586] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4902), 1, - anon_sym_SEMI, - ACTIONS(4904), 1, - anon_sym_EQ, + [63652] = 4, + ACTIONS(4901), 1, + anon_sym_RBRACE, + ACTIONS(4903), 1, + anon_sym_COMMA, + STATE(2070), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64600] = 4, - ACTIONS(3750), 1, + [63666] = 4, + ACTIONS(3760), 1, anon_sym_GT, ACTIONS(4906), 1, anon_sym_COMMA, - STATE(1931), 1, + STATE(2000), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64614] = 4, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(4908), 1, - anon_sym_SEMI, - STATE(2442), 1, - sym_where_clause, + [63680] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64628] = 4, - ACTIONS(3752), 1, + ACTIONS(4908), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [63690] = 4, + ACTIONS(3746), 1, anon_sym_GT, ACTIONS(4910), 1, anon_sym_COMMA, - STATE(1931), 1, + STATE(2000), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64642] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4069), 1, - sym_identifier, - STATE(2428), 1, - sym_type_arguments, + [63704] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4912), 1, + anon_sym_SEMI, + ACTIONS(4914), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64656] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, + [63718] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, - STATE(1066), 1, - sym_block, + ACTIONS(4916), 1, + anon_sym_SEMI, + ACTIONS(4918), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64670] = 4, - ACTIONS(3782), 1, + [63732] = 4, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4912), 1, + ACTIONS(4920), 1, anon_sym_SEMI, - STATE(829), 1, + STATE(867), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64684] = 4, - ACTIONS(4914), 1, - anon_sym_COMMA, - ACTIONS(4917), 1, - anon_sym_PIPE, - STATE(2074), 1, - aux_sym_closure_parameters_repeat1, + [63746] = 4, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_SEMI, + STATE(963), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64698] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4919), 1, - anon_sym_SEMI, - STATE(309), 1, - sym_block, + [63760] = 4, + ACTIONS(4924), 1, + anon_sym_RPAREN, + ACTIONS(4926), 1, + anon_sym_COMMA, + STATE(1931), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64712] = 4, - ACTIONS(3967), 1, + [63774] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4921), 1, + ACTIONS(4928), 1, anon_sym_SEMI, - ACTIONS(4923), 1, + ACTIONS(4930), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64726] = 3, - ACTIONS(4171), 1, - anon_sym_COLON, + [63788] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4917), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [64738] = 4, - ACTIONS(3700), 1, - anon_sym_where, - ACTIONS(4925), 1, + ACTIONS(4932), 3, anon_sym_SEMI, - STATE(2461), 1, - sym_where_clause, + anon_sym_RBRACE, + anon_sym_COMMA, + [63798] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64752] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4927), 1, + ACTIONS(4934), 3, anon_sym_SEMI, - ACTIONS(4929), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + [63808] = 4, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(4936), 1, + anon_sym_SEMI, + STATE(956), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64766] = 4, - ACTIONS(3981), 1, + [63822] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4931), 1, + ACTIONS(4938), 1, anon_sym_SEMI, - STATE(841), 1, + STATE(938), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64780] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4933), 1, - anon_sym_SEMI, - STATE(401), 1, - sym_block, + [63836] = 4, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4940), 1, + anon_sym_COMMA, + STATE(2097), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64794] = 2, + [63850] = 4, + ACTIONS(3764), 1, + anon_sym_RBRACE, + ACTIONS(4942), 1, + anon_sym_COMMA, + STATE(2066), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4935), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64804] = 4, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(4937), 1, - anon_sym_SEMI, - STATE(831), 1, - sym_declaration_list, + [63864] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64818] = 4, - ACTIONS(3967), 1, + ACTIONS(4944), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [63874] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4939), 1, + ACTIONS(4946), 1, anon_sym_SEMI, - ACTIONS(4941), 1, + ACTIONS(4948), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64832] = 4, - ACTIONS(3774), 1, - anon_sym_RBRACE, - ACTIONS(4943), 1, - anon_sym_COMMA, - STATE(2047), 1, - aux_sym_field_declaration_list_repeat1, + [63888] = 4, + ACTIONS(3738), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + anon_sym_SEMI, + STATE(413), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64846] = 4, - ACTIONS(4945), 1, + [63902] = 4, + ACTIONS(4952), 1, anon_sym_RBRACE, - ACTIONS(4947), 1, + ACTIONS(4954), 1, anon_sym_COMMA, - STATE(2087), 1, + STATE(2104), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64860] = 4, - ACTIONS(3774), 1, - anon_sym_RBRACE, - ACTIONS(4943), 1, - anon_sym_COMMA, - STATE(1949), 1, - aux_sym_field_declaration_list_repeat1, + [63916] = 4, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(4956), 1, + anon_sym_SEMI, + STATE(2312), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64874] = 4, - ACTIONS(3700), 1, + [63930] = 4, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(4949), 1, + ACTIONS(4958), 1, anon_sym_SEMI, - STATE(2510), 1, + STATE(2513), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64888] = 4, - ACTIONS(3967), 1, + [63944] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(4951), 1, + ACTIONS(4960), 1, anon_sym_SEMI, - ACTIONS(4953), 1, + ACTIONS(4962), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64902] = 2, + [63958] = 4, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, + anon_sym_SEMI, + STATE(873), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4955), 3, - anon_sym_EQ, + [63972] = 4, + ACTIONS(552), 1, + anon_sym_RBRACK, + ACTIONS(3109), 1, anon_sym_COMMA, - anon_sym_GT, - [64912] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(4957), 1, - anon_sym_SEMI, - ACTIONS(4959), 1, - anon_sym_EQ, + STATE(1959), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64926] = 4, - ACTIONS(3782), 1, - anon_sym_LBRACE, - ACTIONS(4961), 1, - anon_sym_SEMI, - STATE(815), 1, - sym_declaration_list, + [63986] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64940] = 2, + ACTIONS(4966), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63996] = 4, + ACTIONS(3786), 1, + anon_sym_GT, + ACTIONS(4968), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4963), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64950] = 2, + [64010] = 4, + ACTIONS(4333), 1, + anon_sym_RPAREN, + ACTIONS(4970), 1, + anon_sym_COMMA, + STATE(2097), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4965), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64960] = 4, - ACTIONS(3782), 1, + [64024] = 4, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4967), 1, + ACTIONS(4973), 1, anon_sym_SEMI, - STATE(807), 1, + STATE(856), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64974] = 4, - ACTIONS(3339), 1, - anon_sym_LT2, - ACTIONS(4069), 1, - sym_identifier, - STATE(2336), 1, - sym_type_arguments, + [64038] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64988] = 4, - ACTIONS(3782), 1, + ACTIONS(4975), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64048] = 4, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4969), 1, + ACTIONS(4977), 1, anon_sym_SEMI, - STATE(772), 1, + STATE(809), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65002] = 2, + [64062] = 4, + ACTIONS(3211), 1, + anon_sym_RPAREN, + ACTIONS(4979), 1, + anon_sym_COMMA, + STATE(2101), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4971), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [65012] = 2, + [64076] = 4, + ACTIONS(3267), 1, + anon_sym_RBRACE, + ACTIONS(4982), 1, + anon_sym_COMMA, + STATE(2070), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4973), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [65022] = 2, + [64090] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4975), 3, + ACTIONS(4984), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [65032] = 4, - ACTIONS(918), 1, - anon_sym_GT, - ACTIONS(4977), 1, + [64100] = 4, + ACTIONS(3756), 1, + anon_sym_RBRACE, + ACTIONS(4436), 1, anon_sym_COMMA, - STATE(1915), 1, - aux_sym_type_arguments_repeat1, + STATE(1942), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65046] = 4, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(4979), 1, + [64114] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4986), 1, anon_sym_SEMI, - STATE(322), 1, - sym_block, + ACTIONS(4988), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65060] = 2, + [64128] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(4990), 1, + anon_sym_SEMI, + ACTIONS(4992), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4981), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65070] = 4, - ACTIONS(3690), 1, - anon_sym_LBRACE, - ACTIONS(4983), 1, - anon_sym_SEMI, - STATE(301), 1, - sym_declaration_list, + [64142] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65084] = 4, - ACTIONS(3700), 1, + ACTIONS(4994), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [64152] = 4, + ACTIONS(3722), 1, anon_sym_where, - ACTIONS(4985), 1, + ACTIONS(4996), 1, anon_sym_SEMI, - STATE(2494), 1, + STATE(2507), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65098] = 4, - ACTIONS(3981), 1, + [64166] = 4, + ACTIONS(3750), 1, anon_sym_LBRACE, - ACTIONS(4987), 1, + ACTIONS(4998), 1, anon_sym_SEMI, - STATE(798), 1, - sym_block, + STATE(835), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65112] = 2, + [64180] = 4, + ACTIONS(3750), 1, + anon_sym_LBRACE, + ACTIONS(5000), 1, + anon_sym_SEMI, + STATE(800), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4989), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65122] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4151), 1, + [64194] = 4, + ACTIONS(4084), 1, anon_sym_COMMA, - STATE(2060), 1, - aux_sym_parameters_repeat1, + ACTIONS(4086), 1, + anon_sym_GT, + STATE(2096), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65136] = 2, + [64208] = 4, + ACTIONS(5002), 1, + anon_sym_RBRACE, + ACTIONS(5004), 1, + anon_sym_COMMA, + STATE(1965), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4991), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65146] = 4, - ACTIONS(3297), 1, - anon_sym_RBRACE, - ACTIONS(4993), 1, + [64222] = 4, + ACTIONS(898), 1, + anon_sym_GT, + ACTIONS(5006), 1, anon_sym_COMMA, - STATE(1874), 1, - aux_sym_use_list_repeat1, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65160] = 2, + [64236] = 4, + ACTIONS(3722), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_SEMI, + STATE(2394), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4995), 3, + [64250] = 4, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65170] = 2, + STATE(782), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4997), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65180] = 2, + [64264] = 3, + ACTIONS(5014), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4999), 3, - anon_sym_SEMI, + ACTIONS(5012), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65190] = 4, - ACTIONS(792), 1, + [64276] = 4, + ACTIONS(794), 1, anon_sym_RPAREN, - ACTIONS(4151), 1, + ACTIONS(4200), 1, anon_sym_COMMA, - STATE(1900), 1, + STATE(2084), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65204] = 4, - ACTIONS(3971), 1, + [64290] = 4, + ACTIONS(3738), 1, anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(5016), 1, anon_sym_SEMI, - STATE(345), 1, - sym_block, + STATE(425), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65218] = 2, + [64304] = 4, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(4200), 1, + anon_sym_COMMA, + STATE(2097), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5003), 3, + [64318] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(5018), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65228] = 4, - ACTIONS(3279), 1, - anon_sym_LBRACE, - ACTIONS(5005), 1, - sym_identifier, - STATE(1905), 1, - sym_use_list, + ACTIONS(5020), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65242] = 2, + [64332] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5007), 3, + ACTIONS(4701), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [65252] = 4, - ACTIONS(3744), 1, + [64344] = 4, + ACTIONS(3762), 1, anon_sym_RBRACE, - ACTIONS(5009), 1, + ACTIONS(5022), 1, anon_sym_COMMA, - STATE(2065), 1, + STATE(2085), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65266] = 2, + [64358] = 4, + ACTIONS(5024), 1, + anon_sym_RBRACE, + ACTIONS(5026), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5011), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65276] = 4, - ACTIONS(3744), 1, + [64372] = 4, + ACTIONS(3762), 1, anon_sym_RBRACE, - ACTIONS(5009), 1, + ACTIONS(5022), 1, anon_sym_COMMA, - STATE(1889), 1, + STATE(2066), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65290] = 3, - ACTIONS(3690), 1, + [64386] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(473), 1, - sym_declaration_list, + STATE(92), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65301] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5013), 1, - anon_sym_EQ, + [64397] = 3, + ACTIONS(5029), 1, + anon_sym_SEMI, + ACTIONS(5031), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65312] = 3, - ACTIONS(5015), 1, + [64408] = 3, + ACTIONS(5029), 1, anon_sym_SEMI, - ACTIONS(5017), 1, + ACTIONS(5033), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65323] = 2, + [64419] = 3, + ACTIONS(4046), 1, + anon_sym_LBRACE, + STATE(329), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5019), 2, - sym_identifier, - sym_metavariable, - [65332] = 3, - ACTIONS(5021), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_mutable_specifier, + [64430] = 3, + ACTIONS(3744), 1, + anon_sym_LBRACE, + STATE(458), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65343] = 3, - ACTIONS(2862), 1, - anon_sym_COLON, - ACTIONS(3967), 1, - anon_sym_PLUS, + [64441] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65354] = 3, - ACTIONS(5025), 1, - anon_sym_SEMI, - ACTIONS(5027), 1, - anon_sym_as, + ACTIONS(5035), 2, + sym_identifier, + sym_metavariable, + [64450] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65365] = 3, - ACTIONS(3698), 1, - anon_sym_LBRACE, - STATE(788), 1, - sym_field_declaration_list, + [64461] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65376] = 3, - ACTIONS(3690), 1, - anon_sym_LBRACE, - STATE(288), 1, - sym_declaration_list, + ACTIONS(5024), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64470] = 3, + ACTIONS(5037), 1, + sym_identifier, + ACTIONS(5039), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65387] = 3, - ACTIONS(3698), 1, - anon_sym_LBRACE, - STATE(785), 1, - sym_field_declaration_list, + [64481] = 3, + ACTIONS(2937), 1, + anon_sym_COLON, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65398] = 3, - ACTIONS(4055), 1, + [64492] = 3, + ACTIONS(4046), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(354), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65409] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(5029), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65420] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(76), 1, - sym_block, + [64503] = 3, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1372), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65431] = 3, - ACTIONS(4437), 1, + [64514] = 3, + ACTIONS(5041), 1, sym_identifier, - ACTIONS(4441), 1, + ACTIONS(5043), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65442] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5031), 1, - anon_sym_EQ, + [64525] = 3, + ACTIONS(3744), 1, + anon_sym_LBRACE, + STATE(324), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65453] = 3, - ACTIONS(3724), 1, - anon_sym_LBRACE, - STATE(257), 1, - sym_field_declaration_list, + [64536] = 3, + ACTIONS(4446), 1, + sym_identifier, + ACTIONS(4450), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65464] = 3, - ACTIONS(3782), 1, + [64547] = 3, + ACTIONS(3720), 1, anon_sym_LBRACE, - STATE(773), 1, - sym_declaration_list, + STATE(781), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65475] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5033), 1, - anon_sym_in, + [64558] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(5045), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65486] = 3, - ACTIONS(3698), 1, + [64569] = 3, + ACTIONS(3744), 1, anon_sym_LBRACE, - STATE(766), 1, + STATE(322), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65497] = 3, - ACTIONS(4175), 1, + [64580] = 3, + ACTIONS(4193), 1, anon_sym_PIPE, - ACTIONS(5035), 1, + ACTIONS(5047), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65508] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(5037), 1, - anon_sym_SEMI, + [64591] = 3, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(321), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65519] = 3, - ACTIONS(3967), 1, - anon_sym_PLUS, - ACTIONS(5039), 1, - anon_sym_SEMI, + [64602] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(5049), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65530] = 3, - ACTIONS(3782), 1, + [64613] = 3, + ACTIONS(3720), 1, anon_sym_LBRACE, - STATE(780), 1, - sym_declaration_list, + STATE(788), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65541] = 3, - ACTIONS(3782), 1, + [64624] = 3, + ACTIONS(3987), 1, anon_sym_LBRACE, - STATE(781), 1, - sym_declaration_list, + STATE(793), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65552] = 3, - ACTIONS(4175), 1, + [64635] = 3, + ACTIONS(4193), 1, anon_sym_PIPE, - ACTIONS(5041), 1, + ACTIONS(5051), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65563] = 3, - ACTIONS(3698), 1, - anon_sym_LBRACE, - STATE(804), 1, - sym_field_declaration_list, + [64646] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(5053), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65574] = 3, - ACTIONS(4175), 1, + [64657] = 3, + ACTIONS(4193), 1, anon_sym_PIPE, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65585] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5045), 1, - anon_sym_EQ, + [64668] = 3, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65596] = 3, - ACTIONS(4175), 1, + [64679] = 3, + ACTIONS(4193), 1, anon_sym_PIPE, - ACTIONS(5047), 1, - anon_sym_in, + ACTIONS(5057), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65607] = 3, - ACTIONS(4005), 1, + [64690] = 3, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(366), 1, - sym_enum_variant_list, + STATE(463), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65618] = 3, - ACTIONS(3782), 1, + [64701] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(5059), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64712] = 3, + ACTIONS(3750), 1, anon_sym_LBRACE, - STATE(825), 1, + STATE(841), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65629] = 3, - ACTIONS(3967), 1, + [64723] = 3, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(5049), 1, + ACTIONS(5061), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65640] = 2, + [64734] = 3, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(805), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5051), 2, - sym_identifier, - sym_metavariable, - [65649] = 3, - ACTIONS(3905), 1, - anon_sym_COLON_COLON, - ACTIONS(5053), 1, - anon_sym_RPAREN, + [64745] = 3, + ACTIONS(3720), 1, + anon_sym_LBRACE, + STATE(818), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65660] = 3, - ACTIONS(3913), 1, - anon_sym_COLON_COLON, - ACTIONS(5053), 1, - anon_sym_RPAREN, + [64756] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65671] = 3, - ACTIONS(3782), 1, + ACTIONS(5063), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64765] = 3, + ACTIONS(3750), 1, anon_sym_LBRACE, - STATE(834), 1, + STATE(862), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65682] = 3, - ACTIONS(3782), 1, + [64776] = 3, + ACTIONS(3750), 1, anon_sym_LBRACE, - STATE(835), 1, + STATE(863), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65693] = 3, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, - ACTIONS(5053), 1, - anon_sym_RPAREN, + [64787] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(5065), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64798] = 3, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(823), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65704] = 2, + [64809] = 3, + ACTIONS(3500), 1, + anon_sym_COLON_COLON, + ACTIONS(5067), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4917), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [65713] = 3, - ACTIONS(4175), 1, + [64820] = 3, + ACTIONS(4193), 1, anon_sym_PIPE, - ACTIONS(5055), 1, + ACTIONS(5069), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65724] = 3, - ACTIONS(3690), 1, + [64831] = 3, + ACTIONS(3750), 1, anon_sym_LBRACE, - STATE(411), 1, + STATE(824), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65735] = 3, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, - ACTIONS(5057), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65746] = 2, + [64842] = 3, + ACTIONS(3720), 1, + anon_sym_LBRACE, + STATE(825), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2303), 2, - anon_sym_COMMA, - anon_sym_GT, - [65755] = 3, - ACTIONS(4055), 1, + [64853] = 3, + ACTIONS(3987), 1, anon_sym_LBRACE, - STATE(843), 1, + STATE(876), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65766] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5059), 1, - anon_sym_EQ, + [64864] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65777] = 3, - ACTIONS(3690), 1, + ACTIONS(5071), 2, + sym_identifier, + sym_metavariable, + [64873] = 3, + ACTIONS(3744), 1, anon_sym_LBRACE, - STATE(266), 1, - sym_declaration_list, + STATE(371), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65788] = 3, - ACTIONS(3698), 1, + [64884] = 3, + ACTIONS(3720), 1, anon_sym_LBRACE, - STATE(846), 1, + STATE(889), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65799] = 3, - ACTIONS(3967), 1, + [64895] = 3, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(5061), 1, + ACTIONS(5073), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65810] = 3, - ACTIONS(3698), 1, + [64906] = 3, + ACTIONS(3720), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(770), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65821] = 3, - ACTIONS(3782), 1, + [64917] = 3, + ACTIONS(3750), 1, anon_sym_LBRACE, - STATE(849), 1, + STATE(894), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65832] = 3, - ACTIONS(3690), 1, + [64928] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(5075), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64939] = 3, + ACTIONS(3967), 1, + anon_sym_RBRACE, + ACTIONS(5029), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64950] = 3, + ACTIONS(3899), 1, + anon_sym_COLON_COLON, + ACTIONS(5077), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64961] = 3, + ACTIONS(3965), 1, + anon_sym_RPAREN, + ACTIONS(5029), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64972] = 3, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(270), 1, + STATE(461), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65843] = 3, - ACTIONS(2480), 1, - anon_sym_LPAREN, - STATE(824), 1, - sym_parameters, + [64983] = 3, + ACTIONS(2722), 1, + anon_sym_COLON, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65854] = 3, - ACTIONS(5063), 1, - anon_sym_LT, - STATE(708), 1, - sym_type_parameters, + [64994] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(5079), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65865] = 3, - ACTIONS(3724), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_field_declaration_list, + [65005] = 3, + ACTIONS(3907), 1, + anon_sym_COLON_COLON, + ACTIONS(5077), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65876] = 3, - ACTIONS(3967), 1, + [65016] = 3, + ACTIONS(2726), 1, + anon_sym_COLON, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(5065), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65887] = 3, - ACTIONS(3724), 1, - anon_sym_LBRACE, - STATE(397), 1, - sym_field_declaration_list, + [65027] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65898] = 2, + ACTIONS(4492), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65036] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5067), 2, + ACTIONS(5081), 2, sym_identifier, sym_metavariable, - [65907] = 2, + [65045] = 3, + ACTIONS(3911), 1, + anon_sym_COLON_COLON, + ACTIONS(5077), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4467), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65916] = 3, - ACTIONS(3724), 1, + [65056] = 3, + ACTIONS(3744), 1, anon_sym_LBRACE, - STATE(376), 1, + STATE(340), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65927] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5069), 1, - anon_sym_in, + [65067] = 3, + ACTIONS(3494), 1, + anon_sym_COLON_COLON, + ACTIONS(5083), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65938] = 3, - ACTIONS(2241), 1, + [65078] = 3, + ACTIONS(2245), 1, anon_sym_SQUOTE, - STATE(2023), 1, + STATE(2025), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65949] = 3, - ACTIONS(5071), 1, - anon_sym_LBRACK, - ACTIONS(5073), 1, - anon_sym_BANG, + [65089] = 3, + ACTIONS(3963), 1, + anon_sym_RBRACE, + ACTIONS(5029), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65960] = 2, + [65100] = 3, + ACTIONS(2484), 1, + anon_sym_LPAREN, + STATE(865), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5075), 2, - sym_identifier, - sym_metavariable, - [65969] = 3, - ACTIONS(3905), 1, - anon_sym_COLON_COLON, - ACTIONS(5077), 1, - anon_sym_RPAREN, + [65111] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(5085), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65980] = 3, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1636), 1, - sym_parameters, + [65122] = 3, + ACTIONS(5087), 1, + anon_sym_SEMI, + ACTIONS(5089), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65991] = 3, - ACTIONS(3913), 1, - anon_sym_COLON_COLON, - ACTIONS(5077), 1, - anon_sym_RPAREN, + [65133] = 3, + ACTIONS(3744), 1, + anon_sym_LBRACE, + STATE(474), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66002] = 3, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1357), 1, - sym_parameters, + [65144] = 3, + ACTIONS(5091), 1, + anon_sym_LBRACK, + ACTIONS(5093), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [66013] = 3, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, - ACTIONS(5077), 1, - anon_sym_RPAREN, + sym_line_comment, + [65155] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66024] = 3, - ACTIONS(4055), 1, - anon_sym_LBRACE, - STATE(880), 1, - sym_enum_variant_list, + ACTIONS(5095), 2, + sym_identifier, + sym_metavariable, + [65164] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66035] = 2, + ACTIONS(4901), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65173] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4867), 2, - anon_sym_RPAREN, + ACTIONS(4890), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [66044] = 3, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, - ACTIONS(5079), 1, + [65182] = 3, + ACTIONS(3951), 1, anon_sym_RPAREN, + ACTIONS(5029), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66055] = 3, - ACTIONS(3690), 1, + [65193] = 3, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(380), 1, + STATE(381), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66066] = 3, - ACTIONS(2786), 1, - anon_sym_COLON, - ACTIONS(3967), 1, - anon_sym_PLUS, + [65204] = 3, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(993), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66077] = 3, - ACTIONS(4005), 1, + [65215] = 3, + ACTIONS(4046), 1, anon_sym_LBRACE, - STATE(391), 1, + STATE(375), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66088] = 3, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1651), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66099] = 3, - ACTIONS(2778), 1, + [65226] = 3, + ACTIONS(2961), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66110] = 3, - ACTIONS(3782), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_declaration_list, + [65237] = 3, + ACTIONS(5097), 1, + anon_sym_LBRACK, + ACTIONS(5099), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66121] = 3, - ACTIONS(3690), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym_declaration_list, + [65248] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, + ACTIONS(5101), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66132] = 3, - ACTIONS(3690), 1, + [65259] = 3, + ACTIONS(3750), 1, anon_sym_LBRACE, - STATE(339), 1, + STATE(1008), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66143] = 3, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1618), 1, - sym_parameters, + [65270] = 3, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(1010), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66154] = 3, - ACTIONS(3967), 1, + [65281] = 3, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(5081), 1, + ACTIONS(5103), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66165] = 3, - ACTIONS(3782), 1, + [65292] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(902), 1, - sym_declaration_list, + STATE(85), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66176] = 3, - ACTIONS(3782), 1, + [65303] = 3, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(903), 1, + STATE(254), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66187] = 3, - ACTIONS(3961), 1, - anon_sym_RBRACE, - ACTIONS(5015), 1, - anon_sym_SEMI, + [65314] = 3, + ACTIONS(3987), 1, + anon_sym_LBRACE, + STATE(898), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66198] = 3, - ACTIONS(4175), 1, + [65325] = 3, + ACTIONS(4193), 1, anon_sym_PIPE, - ACTIONS(5083), 1, + ACTIONS(5105), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66209] = 3, - ACTIONS(4005), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66220] = 3, - ACTIONS(2903), 1, + [65336] = 3, + ACTIONS(3909), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(3983), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66231] = 3, - ACTIONS(3724), 1, - anon_sym_LBRACE, - STATE(313), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66242] = 3, - ACTIONS(3967), 1, + [65347] = 3, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(5085), 1, + ACTIONS(5107), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66253] = 3, - ACTIONS(3724), 1, - anon_sym_LBRACE, - STATE(273), 1, - sym_field_declaration_list, + [65358] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66264] = 3, - ACTIONS(3959), 1, + ACTIONS(5109), 2, anon_sym_RBRACE, - ACTIONS(5015), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [65367] = 3, + ACTIONS(3744), 1, + anon_sym_LBRACE, + STATE(369), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66275] = 3, - ACTIONS(5087), 1, - anon_sym_LBRACK, - ACTIONS(5089), 1, - anon_sym_BANG, + [65378] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(58), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66286] = 2, + [65389] = 3, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(411), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5091), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66295] = 3, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1363), 1, - sym_parameters, + [65400] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66306] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_block, + ACTIONS(5111), 2, + sym_identifier, + sym_metavariable, + [65409] = 3, + ACTIONS(3945), 1, + anon_sym_RBRACE, + ACTIONS(5029), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66317] = 3, - ACTIONS(3690), 1, + [65420] = 3, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(328), 1, + STATE(467), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66328] = 3, - ACTIONS(5093), 1, - anon_sym_SEMI, - ACTIONS(5095), 1, - anon_sym_as, + [65431] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(5113), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66339] = 3, - ACTIONS(5097), 1, - anon_sym_SEMI, - ACTIONS(5099), 1, - anon_sym_as, + [65442] = 3, + ACTIONS(2548), 1, + anon_sym_LBRACE, + STATE(1097), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66350] = 3, - ACTIONS(2488), 1, - anon_sym_LT2, - STATE(1100), 1, - sym_type_arguments, + [65453] = 3, + ACTIONS(3955), 1, + anon_sym_RBRACE, + ACTIONS(5029), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66361] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(70), 1, - sym_closure_parameters, + [65464] = 3, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(954), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66372] = 3, - ACTIONS(3782), 1, + [65475] = 3, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(357), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66383] = 2, + [65486] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4511), 2, - anon_sym_RBRACE, + ACTIONS(4333), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [66392] = 3, - ACTIONS(3698), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66403] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5101), 1, - anon_sym_in, + [65495] = 3, + ACTIONS(2245), 1, + anon_sym_SQUOTE, + STATE(2233), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66414] = 3, - ACTIONS(5015), 1, - anon_sym_SEMI, - ACTIONS(5103), 1, - anon_sym_RBRACE, + [65506] = 3, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66425] = 3, - ACTIONS(3724), 1, + [65517] = 3, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, anon_sym_LBRACE, - STATE(314), 1, - sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66436] = 3, - ACTIONS(3343), 1, + [65528] = 3, + ACTIONS(5119), 1, anon_sym_LPAREN, - STATE(1676), 1, - sym_parameters, + ACTIONS(5121), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66447] = 3, - ACTIONS(3690), 1, + [65539] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(336), 1, - sym_declaration_list, + STATE(1026), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66458] = 3, - ACTIONS(2241), 1, - anon_sym_SQUOTE, - STATE(2269), 1, - sym_lifetime, + [65550] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66469] = 3, - ACTIONS(3782), 1, - anon_sym_LBRACE, - STATE(956), 1, - sym_declaration_list, + ACTIONS(4715), 2, + anon_sym_COMMA, + anon_sym_GT, + [65559] = 3, + ACTIONS(5123), 1, + sym_identifier, + ACTIONS(5125), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66480] = 3, - ACTIONS(3925), 1, - anon_sym_COLON, - ACTIONS(3967), 1, - anon_sym_PLUS, + [65570] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1114), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66491] = 3, - ACTIONS(658), 1, + [65581] = 3, + ACTIONS(610), 1, anon_sym_LBRACE, - STATE(231), 1, + STATE(239), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66502] = 3, - ACTIONS(3724), 1, + [65592] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(378), 1, - sym_field_declaration_list, + STATE(1084), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66513] = 3, - ACTIONS(658), 1, + [65603] = 3, + ACTIONS(610), 1, anon_sym_LBRACE, STATE(220), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66524] = 3, - ACTIONS(2498), 1, - anon_sym_LBRACE, - STATE(1021), 1, - sym_field_initializer_list, + [65614] = 3, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1692), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66535] = 2, + [65625] = 3, + ACTIONS(3744), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4378), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66544] = 3, - ACTIONS(658), 1, + [65636] = 3, + ACTIONS(610), 1, anon_sym_LBRACE, - STATE(223), 1, + STATE(221), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66555] = 3, - ACTIONS(3698), 1, - anon_sym_LBRACE, - STATE(959), 1, - sym_field_declaration_list, + [65647] = 3, + ACTIONS(3502), 1, + anon_sym_COLON_COLON, + ACTIONS(5067), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66566] = 3, - ACTIONS(5105), 1, + [65658] = 3, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(5107), 1, - anon_sym_LBRACE, + STATE(1661), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66577] = 3, - ACTIONS(5015), 1, + [65669] = 3, + ACTIONS(5029), 1, anon_sym_SEMI, - ACTIONS(5109), 1, + ACTIONS(5127), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66588] = 3, - ACTIONS(5015), 1, - anon_sym_SEMI, - ACTIONS(5111), 1, - anon_sym_RPAREN, + [65680] = 3, + ACTIONS(4193), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66599] = 3, - ACTIONS(5015), 1, - anon_sym_SEMI, - ACTIONS(5113), 1, - anon_sym_RBRACE, + [65691] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66610] = 3, - ACTIONS(5015), 1, + ACTIONS(5131), 2, + sym_float_literal, + sym_integer_literal, + [65700] = 3, + ACTIONS(5029), 1, anon_sym_SEMI, - ACTIONS(5115), 1, + ACTIONS(5133), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66621] = 3, - ACTIONS(5117), 1, - anon_sym_LPAREN, - ACTIONS(5119), 1, - anon_sym_LBRACE, + [65711] = 3, + ACTIONS(5135), 1, + anon_sym_SEMI, + ACTIONS(5137), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66632] = 3, - ACTIONS(5015), 1, + [65722] = 3, + ACTIONS(5029), 1, anon_sym_SEMI, - ACTIONS(5121), 1, + ACTIONS(5139), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66643] = 3, - ACTIONS(5015), 1, - anon_sym_SEMI, - ACTIONS(5123), 1, - anon_sym_RBRACE, + [65733] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66654] = 3, - ACTIONS(4581), 1, - sym_identifier, - ACTIONS(4585), 1, - sym_mutable_specifier, + ACTIONS(4210), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65742] = 3, + ACTIONS(5141), 1, + anon_sym_LT, + STATE(719), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66665] = 3, - ACTIONS(3957), 1, - anon_sym_RBRACE, - ACTIONS(5015), 1, + [65753] = 3, + ACTIONS(5029), 1, anon_sym_SEMI, + ACTIONS(5143), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66676] = 3, - ACTIONS(5125), 1, - sym_identifier, - ACTIONS(5127), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66687] = 3, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1693), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66698] = 3, - ACTIONS(2480), 1, + [65764] = 3, + ACTIONS(3359), 1, anon_sym_LPAREN, - STATE(977), 1, + STATE(1679), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66709] = 2, + [65775] = 3, + ACTIONS(3724), 1, + anon_sym_LT, + STATE(713), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4428), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66718] = 3, - ACTIONS(284), 1, + [65786] = 3, + ACTIONS(3720), 1, anon_sym_LBRACE, - STATE(1113), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66729] = 2, + STATE(952), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4167), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66738] = 3, - ACTIONS(4175), 1, + [65797] = 3, + ACTIONS(4193), 1, anon_sym_PIPE, - ACTIONS(5129), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66749] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(56), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66760] = 3, - ACTIONS(658), 1, - anon_sym_LBRACE, - STATE(222), 1, - sym_block, + ACTIONS(5145), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66771] = 2, + [65808] = 3, + ACTIONS(5029), 1, + anon_sym_SEMI, + ACTIONS(5147), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4260), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66780] = 2, + [65819] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5131), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66789] = 2, + ACTIONS(5149), 2, + anon_sym_const, + sym_mutable_specifier, + [65828] = 3, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1364), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4561), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66798] = 3, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(5133), 1, + [65839] = 3, + ACTIONS(3436), 1, anon_sym_COLON_COLON, + ACTIONS(3562), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66809] = 3, - ACTIONS(5135), 1, - anon_sym_SEMI, - ACTIONS(5137), 1, - anon_sym_as, + [65850] = 3, + ACTIONS(610), 1, + anon_sym_LBRACE, + STATE(230), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66820] = 3, - ACTIONS(3889), 1, - anon_sym_RPAREN, - ACTIONS(5015), 1, - anon_sym_SEMI, + [65861] = 3, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1703), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66831] = 2, + [65872] = 3, + ACTIONS(3810), 1, + anon_sym_COLON, + STATE(1924), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4570), 2, - anon_sym_COMMA, - anon_sym_GT, - [66840] = 3, - ACTIONS(3891), 1, - anon_sym_RPAREN, - ACTIONS(5015), 1, - anon_sym_SEMI, + [65883] = 3, + ACTIONS(4046), 1, + anon_sym_LBRACE, + STATE(309), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66851] = 3, - ACTIONS(4171), 1, + [65894] = 3, + ACTIONS(4189), 1, anon_sym_COLON, - ACTIONS(4175), 1, + ACTIONS(4193), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66862] = 3, - ACTIONS(4055), 1, - anon_sym_LBRACE, - STATE(988), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66873] = 2, + [65905] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4592), 2, + ACTIONS(4783), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [66882] = 2, + [65914] = 3, + ACTIONS(3750), 1, + anon_sym_LBRACE, + STATE(964), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5139), 2, + [65925] = 3, + ACTIONS(3899), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [66891] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5141), 2, - sym_identifier, - sym_metavariable, - [66900] = 2, + [65936] = 3, + ACTIONS(3907), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4658), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66909] = 3, - ACTIONS(3690), 1, + [65947] = 3, + ACTIONS(3720), 1, anon_sym_LBRACE, - STATE(399), 1, - sym_declaration_list, + STATE(970), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66920] = 3, - ACTIONS(3690), 1, + [65958] = 3, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(407), 1, + STATE(286), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66931] = 3, - ACTIONS(3496), 1, - anon_sym_BANG, - ACTIONS(5143), 1, - anon_sym_COLON_COLON, + [65969] = 3, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(288), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66942] = 3, - ACTIONS(3967), 1, + [65980] = 3, + ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(5145), 1, + ACTIONS(5153), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66953] = 3, - ACTIONS(4005), 1, - anon_sym_LBRACE, - STATE(388), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66964] = 3, - ACTIONS(3885), 1, + [65991] = 3, + ACTIONS(3925), 1, anon_sym_RPAREN, - ACTIONS(5015), 1, + ACTIONS(5029), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66975] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5147), 2, - anon_sym_const, - sym_mutable_specifier, - [66984] = 3, - ACTIONS(884), 1, - anon_sym_LBRACE, - STATE(1452), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66995] = 3, - ACTIONS(5149), 1, - sym_identifier, - ACTIONS(5151), 1, - sym_mutable_specifier, + [66002] = 3, + ACTIONS(2484), 1, + anon_sym_LPAREN, + STATE(1006), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67006] = 2, + [66013] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4040), 2, - anon_sym_RPAREN, + ACTIONS(4754), 2, anon_sym_COMMA, - [67015] = 3, - ACTIONS(5153), 1, - anon_sym_LPAREN, - ACTIONS(5155), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67026] = 3, - ACTIONS(3893), 1, - anon_sym_RBRACE, - ACTIONS(5015), 1, + anon_sym_GT, + [66022] = 3, + ACTIONS(3923), 1, + anon_sym_RPAREN, + ACTIONS(5029), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67037] = 3, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACE, + [66033] = 3, + ACTIONS(2492), 1, + anon_sym_LT2, + STATE(1027), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67048] = 2, + [66044] = 3, + ACTIONS(3911), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5161), 2, - sym_identifier, - sym_metavariable, - [67057] = 2, + [66055] = 3, + ACTIONS(3361), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5163), 2, - sym_float_literal, - sym_integer_literal, - [67066] = 3, - ACTIONS(3479), 1, + [66066] = 3, + ACTIONS(3494), 1, anon_sym_COLON_COLON, - ACTIONS(5165), 1, - anon_sym_BANG, + ACTIONS(5157), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67077] = 3, - ACTIONS(658), 1, + [66077] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(225), 1, + STATE(1089), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67088] = 3, - ACTIONS(3426), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67099] = 3, - ACTIONS(3877), 1, - anon_sym_RPAREN, - ACTIONS(5015), 1, - anon_sym_SEMI, + [66088] = 3, + ACTIONS(4706), 1, + sym_identifier, + ACTIONS(4710), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67110] = 3, - ACTIONS(3792), 1, - anon_sym_COLON, - STATE(1990), 1, - sym_trait_bounds, + [66099] = 3, + ACTIONS(3987), 1, + anon_sym_LBRACE, + STATE(1009), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67121] = 3, - ACTIONS(3702), 1, - anon_sym_LT, - STATE(693), 1, - sym_type_parameters, + [66110] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(59), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67132] = 2, + [66121] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4348), 2, + ACTIONS(2315), 2, anon_sym_COMMA, anon_sym_GT, - [67141] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5167), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67152] = 3, - ACTIONS(15), 1, + [66130] = 3, + ACTIONS(3738), 1, anon_sym_LBRACE, - STATE(65), 1, - sym_block, + STATE(475), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67163] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(91), 1, - sym_closure_parameters, + [66141] = 3, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1645), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67174] = 3, - ACTIONS(284), 1, + [66152] = 3, + ACTIONS(888), 1, anon_sym_LBRACE, - STATE(1130), 1, + STATE(1435), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67185] = 2, + [66163] = 3, + ACTIONS(610), 1, + anon_sym_LBRACE, + STATE(238), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5169), 2, - anon_sym_const, - sym_mutable_specifier, - [67194] = 3, - ACTIONS(3481), 1, - anon_sym_COLON_COLON, - ACTIONS(5165), 1, - anon_sym_BANG, + [66174] = 3, + ACTIONS(5159), 1, + anon_sym_SEMI, + ACTIONS(5161), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67205] = 3, - ACTIONS(2652), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_BANG, + [66185] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67216] = 3, - ACTIONS(2480), 1, - anon_sym_LPAREN, - STATE(1018), 1, - sym_parameters, + ACTIONS(4622), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66194] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67227] = 3, + ACTIONS(4271), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66203] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1122), 1, + STATE(1063), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67238] = 3, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_parameters, + [66214] = 3, + ACTIONS(3488), 1, + anon_sym_BANG, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67249] = 2, + [66225] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5171), 2, - anon_sym_const, - sym_mutable_specifier, - [67258] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1095), 1, - sym_block, + ACTIONS(4062), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66234] = 3, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, + ACTIONS(3878), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67269] = 3, - ACTIONS(3343), 1, - anon_sym_LPAREN, - STATE(1364), 1, - sym_parameters, + [66245] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67280] = 2, - ACTIONS(2275), 1, - anon_sym_EQ_GT, + ACTIONS(5165), 2, + anon_sym_const, + sym_mutable_specifier, + [66254] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67288] = 2, + ACTIONS(5167), 2, + anon_sym_const, + sym_mutable_specifier, + [66263] = 3, + ACTIONS(5169), 1, + anon_sym_LPAREN, + ACTIONS(5171), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66274] = 3, ACTIONS(5173), 1, - anon_sym_COLON, + anon_sym_LPAREN, + ACTIONS(5175), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67296] = 2, - ACTIONS(4145), 1, - anon_sym_RPAREN, + [66285] = 3, + ACTIONS(2484), 1, + anon_sym_LPAREN, + STATE(857), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67304] = 2, - ACTIONS(5175), 1, - sym_identifier, + [66296] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67312] = 2, + ACTIONS(4386), 2, + anon_sym_COMMA, + anon_sym_GT, + [66305] = 3, ACTIONS(5177), 1, anon_sym_SEMI, + ACTIONS(5179), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67320] = 2, - ACTIONS(5179), 1, - sym_self, + [66316] = 3, + ACTIONS(5029), 1, + anon_sym_SEMI, + ACTIONS(5181), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67328] = 2, - ACTIONS(2369), 1, - anon_sym_PLUS, + [66327] = 3, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1356), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67336] = 2, - ACTIONS(5181), 1, - anon_sym_fn, + [66338] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67344] = 2, - ACTIONS(5183), 1, - sym_identifier, + ACTIONS(4620), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [66347] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67352] = 2, + ACTIONS(5183), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66356] = 3, + ACTIONS(3983), 1, + anon_sym_PLUS, ACTIONS(5185), 1, - sym_identifier, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67360] = 2, - ACTIONS(4715), 1, - sym_identifier, + [66367] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67368] = 2, - ACTIONS(5187), 1, + ACTIONS(5187), 2, sym_identifier, + sym_metavariable, + [66376] = 2, + ACTIONS(2604), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67376] = 2, + [66384] = 2, ACTIONS(5189), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67384] = 2, + [66392] = 2, ACTIONS(5191), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67392] = 2, - ACTIONS(4717), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67400] = 2, - ACTIONS(4705), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67408] = 2, + [66400] = 2, ACTIONS(5193), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67416] = 2, + [66408] = 2, ACTIONS(5195), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67424] = 2, + [66416] = 2, ACTIONS(5197), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67432] = 2, - ACTIONS(3187), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67440] = 2, + [66424] = 2, ACTIONS(5199), 1, - anon_sym_LT, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67448] = 2, + [66432] = 2, ACTIONS(5201), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67456] = 2, - ACTIONS(5203), 1, - anon_sym_LPAREN, + [66440] = 2, + ACTIONS(4167), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67464] = 2, - ACTIONS(4691), 1, + [66448] = 2, + ACTIONS(5203), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67472] = 2, + [66456] = 2, ACTIONS(5205), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67480] = 2, + [66464] = 2, ACTIONS(5207), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67488] = 2, + [66472] = 2, ACTIONS(5209), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67496] = 2, + [66480] = 2, ACTIONS(5211), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67504] = 2, - ACTIONS(2598), 1, - anon_sym_COLON_COLON, + [66488] = 2, + ACTIONS(2377), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67512] = 2, + [66496] = 2, ACTIONS(5213), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67520] = 2, - ACTIONS(3957), 1, - anon_sym_SEMI, + [66504] = 2, + ACTIONS(4695), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67528] = 2, - ACTIONS(5215), 1, - sym_identifier, + [66512] = 2, + ACTIONS(4660), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67536] = 2, - ACTIONS(4674), 1, + [66520] = 2, + ACTIONS(5215), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67544] = 2, + [66528] = 2, ACTIONS(5217), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67552] = 2, + [66536] = 2, ACTIONS(5219), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67560] = 2, - ACTIONS(2388), 1, - anon_sym_PLUS, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67568] = 2, + [66544] = 2, ACTIONS(5221), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67576] = 2, - ACTIONS(3893), 1, - anon_sym_SEMI, + [66552] = 2, + ACTIONS(4697), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67584] = 2, + [66560] = 2, ACTIONS(5223), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67592] = 2, + [66568] = 2, ACTIONS(5225), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67600] = 2, + [66576] = 2, ACTIONS(5227), 1, - sym_identifier, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67608] = 2, - ACTIONS(5229), 1, - sym_identifier, + [66584] = 2, + ACTIONS(3135), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67616] = 2, - ACTIONS(5231), 1, + [66592] = 2, + ACTIONS(5229), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67624] = 2, - ACTIONS(5233), 1, + [66600] = 2, + ACTIONS(3417), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67632] = 2, - ACTIONS(3229), 1, - anon_sym_COLON_COLON, + [66608] = 2, + ACTIONS(5231), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67640] = 2, - ACTIONS(3401), 1, + [66616] = 2, + ACTIONS(5233), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67648] = 2, - ACTIONS(3083), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67656] = 2, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, + [66624] = 2, + ACTIONS(4771), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67664] = 2, + [66632] = 2, ACTIONS(5235), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67672] = 2, + [66640] = 2, ACTIONS(5237), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67680] = 2, - ACTIONS(3203), 1, - anon_sym_COLON_COLON, + [66648] = 2, + ACTIONS(5239), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67688] = 2, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, + [66656] = 2, + ACTIONS(5241), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67696] = 2, - ACTIONS(4044), 1, + [66664] = 2, + ACTIONS(3115), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67704] = 2, - ACTIONS(5241), 1, - anon_sym_SEMI, + [66672] = 2, + ACTIONS(5243), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67712] = 2, - ACTIONS(5243), 1, - anon_sym_fn, + [66680] = 2, + ACTIONS(4637), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67720] = 2, + [66688] = 2, ACTIONS(5245), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67728] = 2, + [66696] = 2, ACTIONS(5247), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67736] = 2, + [66704] = 2, ACTIONS(5249), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67744] = 2, + [66712] = 2, ACTIONS(5251), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67752] = 2, + [66720] = 2, ACTIONS(5253), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67760] = 2, + [66728] = 2, ACTIONS(5255), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67768] = 2, + [66736] = 2, ACTIONS(5257), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67776] = 2, + [66744] = 2, ACTIONS(5259), 1, - sym_identifier, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67784] = 2, + [66752] = 2, ACTIONS(5261), 1, - anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67792] = 2, + [66760] = 2, ACTIONS(5263), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67800] = 2, + [66768] = 2, ACTIONS(5265), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67808] = 2, + [66776] = 2, ACTIONS(5267), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67816] = 2, - ACTIONS(2652), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67824] = 2, - ACTIONS(5143), 1, - anon_sym_COLON_COLON, + [66784] = 2, + ACTIONS(5269), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67832] = 2, - ACTIONS(4520), 1, + [66792] = 2, + ACTIONS(5271), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67840] = 2, - ACTIONS(5269), 1, - anon_sym_fn, + [66800] = 2, + ACTIONS(5273), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67848] = 2, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, + [66808] = 2, + ACTIONS(5275), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67856] = 2, - ACTIONS(5271), 1, + [66816] = 2, + ACTIONS(5277), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67864] = 2, - ACTIONS(5273), 1, - sym_identifier, + [66824] = 2, + ACTIONS(5279), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67872] = 2, - ACTIONS(5275), 1, + [66832] = 2, + ACTIONS(5281), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67880] = 2, - ACTIONS(5277), 1, - anon_sym_RPAREN, + [66840] = 2, + ACTIONS(5283), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67888] = 2, - ACTIONS(4598), 1, + [66848] = 2, + ACTIONS(4723), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67896] = 2, - ACTIONS(5279), 1, - anon_sym_COLON_COLON, + [66856] = 2, + ACTIONS(5285), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67904] = 2, - ACTIONS(5281), 1, - anon_sym_EQ_GT, + [66864] = 2, + ACTIONS(4727), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67912] = 2, - ACTIONS(5283), 1, + [66872] = 2, + ACTIONS(5287), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67920] = 2, - ACTIONS(5285), 1, + [66880] = 2, + ACTIONS(5289), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67928] = 2, - ACTIONS(5287), 1, - anon_sym_COLON, + [66888] = 2, + ACTIONS(4014), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67936] = 2, - ACTIONS(5289), 1, - anon_sym_RBRACE, + [66896] = 2, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67944] = 2, + [66904] = 2, ACTIONS(5291), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67952] = 2, - ACTIONS(5293), 1, - anon_sym_RBRACE, + [66912] = 2, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67960] = 2, - ACTIONS(5295), 1, - sym_identifier, + [66920] = 2, + ACTIONS(5293), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67968] = 2, - ACTIONS(5297), 1, - sym_identifier, + [66928] = 2, + ACTIONS(5295), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67976] = 2, - ACTIONS(4733), 1, + [66936] = 2, + ACTIONS(5297), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67984] = 2, + [66944] = 2, ACTIONS(5299), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67992] = 2, + [66952] = 2, ACTIONS(5301), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68000] = 2, + [66960] = 2, ACTIONS(5303), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68008] = 2, - ACTIONS(5005), 1, + [66968] = 2, + ACTIONS(5305), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68016] = 2, - ACTIONS(5305), 1, - anon_sym_RBRACE, + [66976] = 2, + ACTIONS(5307), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68024] = 2, - ACTIONS(5307), 1, + [66984] = 2, + ACTIONS(4741), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68032] = 2, + [66992] = 2, ACTIONS(5309), 1, - sym_identifier, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68040] = 2, + [67000] = 2, ACTIONS(5311), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68048] = 2, + [67008] = 2, ACTIONS(5313), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68056] = 2, - ACTIONS(368), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68064] = 2, + [67016] = 2, ACTIONS(5315), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68072] = 2, - ACTIONS(4169), 1, - anon_sym_RPAREN, + [67024] = 2, + ACTIONS(2405), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68080] = 2, + [67032] = 2, ACTIONS(5317), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68088] = 2, + [67040] = 2, ACTIONS(5319), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67048] = 2, + ACTIONS(5321), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68096] = 2, - ACTIONS(4825), 1, - anon_sym_GT, + [67056] = 2, + ACTIONS(5323), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68104] = 2, - ACTIONS(5321), 1, - anon_sym_LBRACK, + [67064] = 2, + ACTIONS(5325), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67072] = 2, + ACTIONS(5327), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67080] = 2, + ACTIONS(552), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67088] = 2, + ACTIONS(5329), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67096] = 2, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67104] = 2, + ACTIONS(5333), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67112] = 2, + ACTIONS(5335), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67120] = 2, + ACTIONS(5337), 1, + anon_sym_fn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67128] = 2, + ACTIONS(5339), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67136] = 2, + ACTIONS(5341), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67144] = 2, + ACTIONS(5343), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67152] = 2, + ACTIONS(5345), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67160] = 2, + ACTIONS(5347), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67168] = 2, + ACTIONS(4561), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67176] = 2, + ACTIONS(5349), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67184] = 2, + ACTIONS(5351), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67192] = 2, + ACTIONS(5353), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68112] = 2, - ACTIONS(4763), 1, - anon_sym_RBRACE, + [67200] = 2, + ACTIONS(4800), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68120] = 2, - ACTIONS(5323), 1, + [67208] = 2, + ACTIONS(5355), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68128] = 2, - ACTIONS(4541), 1, - anon_sym_RBRACE, + [67216] = 2, + ACTIONS(3494), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68136] = 2, - ACTIONS(5325), 1, - sym_identifier, + [67224] = 2, + ACTIONS(3440), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68144] = 2, - ACTIONS(4753), 1, + [67232] = 2, + ACTIONS(5357), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68152] = 2, - ACTIONS(5103), 1, - anon_sym_SEMI, + [67240] = 2, + ACTIONS(5359), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68160] = 2, - ACTIONS(5327), 1, - sym_identifier, + [67248] = 2, + ACTIONS(4066), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68168] = 2, - ACTIONS(4069), 1, - sym_identifier, + [67256] = 2, + ACTIONS(4313), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68176] = 2, - ACTIONS(5329), 1, - anon_sym_RPAREN, + [67264] = 2, + ACTIONS(5361), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68184] = 2, - ACTIONS(5123), 1, - anon_sym_SEMI, + [67272] = 2, + ACTIONS(5363), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68192] = 2, - ACTIONS(5331), 1, - sym_identifier, + [67280] = 2, + ACTIONS(4325), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68200] = 2, - ACTIONS(5333), 1, - sym_identifier, + [67288] = 2, + ACTIONS(4814), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68208] = 2, - ACTIONS(5335), 1, - sym_identifier, + [67296] = 2, + ACTIONS(5365), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68216] = 2, - ACTIONS(5337), 1, + [67304] = 2, + ACTIONS(5147), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68224] = 2, - ACTIONS(5339), 1, - anon_sym_COLON, + [67312] = 2, + ACTIONS(4689), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68232] = 2, - ACTIONS(5341), 1, + [67320] = 2, + ACTIONS(4671), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68240] = 2, - ACTIONS(2590), 1, - anon_sym_COLON_COLON, + [67328] = 2, + ACTIONS(5367), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68248] = 2, - ACTIONS(5113), 1, + [67336] = 2, + ACTIONS(5181), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68256] = 2, - ACTIONS(5343), 1, - anon_sym_SEMI, + [67344] = 2, + ACTIONS(4531), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68264] = 2, - ACTIONS(5345), 1, + [67352] = 2, + ACTIONS(5369), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68272] = 2, - ACTIONS(3913), 1, - anon_sym_COLON_COLON, + [67360] = 2, + ACTIONS(5371), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68280] = 2, - ACTIONS(5347), 1, - sym_identifier, + [67368] = 2, + ACTIONS(5373), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68288] = 2, - ACTIONS(4781), 1, - anon_sym_RBRACE, + [67376] = 2, + ACTIONS(5375), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68296] = 2, - ACTIONS(5349), 1, - anon_sym_LPAREN, + [67384] = 2, + ACTIONS(5377), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68304] = 2, - ACTIONS(5351), 1, - anon_sym_COLON, + [67392] = 2, + ACTIONS(5031), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68312] = 2, - ACTIONS(5353), 1, - sym_identifier, + [67400] = 2, + ACTIONS(5379), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68320] = 2, - ACTIONS(3379), 1, - anon_sym_fn, + [67408] = 2, + ACTIONS(5381), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68328] = 2, - ACTIONS(5355), 1, - ts_builtin_sym_end, + [67416] = 2, + ACTIONS(368), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68336] = 2, - ACTIONS(5357), 1, - anon_sym_SEMI, + [67424] = 2, + ACTIONS(5383), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68344] = 2, - ACTIONS(2882), 1, + [67432] = 2, + ACTIONS(2636), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68352] = 2, - ACTIONS(5359), 1, - anon_sym_SEMI, + [67440] = 2, + ACTIONS(4246), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68360] = 2, - ACTIONS(5361), 1, + [67448] = 2, + ACTIONS(5385), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68368] = 2, - ACTIONS(5015), 1, - anon_sym_SEMI, + [67456] = 2, + ACTIONS(5387), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68376] = 2, - ACTIONS(5363), 1, + [67464] = 2, + ACTIONS(3955), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68384] = 2, - ACTIONS(4699), 1, - anon_sym_RBRACE, + [67472] = 2, + ACTIONS(4840), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68392] = 2, - ACTIONS(5365), 1, + [67480] = 2, + ACTIONS(5389), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68400] = 2, - ACTIONS(5367), 1, - sym_identifier, + [67488] = 2, + ACTIONS(2347), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68408] = 2, - ACTIONS(5369), 1, - anon_sym_RBRACK, + [67496] = 2, + ACTIONS(5391), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68416] = 2, - ACTIONS(5371), 1, + [67504] = 2, + ACTIONS(3945), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68424] = 2, - ACTIONS(3959), 1, - anon_sym_SEMI, + [67512] = 2, + ACTIONS(3907), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68432] = 2, - ACTIONS(5373), 1, - anon_sym_EQ, + [67520] = 2, + ACTIONS(5393), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68440] = 2, - ACTIONS(2656), 1, + [67528] = 2, + ACTIONS(5395), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67536] = 2, + ACTIONS(2598), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68448] = 2, - ACTIONS(5375), 1, + [67544] = 2, + ACTIONS(5397), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68456] = 2, - ACTIONS(2317), 1, - anon_sym_EQ_GT, + [67552] = 2, + ACTIONS(3371), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68464] = 2, - ACTIONS(5377), 1, - anon_sym_RPAREN, + [67560] = 2, + ACTIONS(5399), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68472] = 2, - ACTIONS(5379), 1, - anon_sym_EQ_GT, + [67568] = 2, + ACTIONS(5401), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68480] = 2, - ACTIONS(3961), 1, - anon_sym_SEMI, + [67576] = 2, + ACTIONS(2730), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68488] = 2, - ACTIONS(5381), 1, + [67584] = 2, + ACTIONS(5403), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68496] = 2, - ACTIONS(5383), 1, - anon_sym_fn, + [67592] = 2, + ACTIONS(3137), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68504] = 2, - ACTIONS(5385), 1, - anon_sym_SEMI, + [67600] = 2, + ACTIONS(5405), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68512] = 2, - ACTIONS(5387), 1, + [67608] = 2, + ACTIONS(5407), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68520] = 2, - ACTIONS(5389), 1, + [67616] = 2, + ACTIONS(5409), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68528] = 2, - ACTIONS(5391), 1, - sym_identifier, + [67624] = 2, + ACTIONS(4862), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68536] = 2, - ACTIONS(5393), 1, - sym_identifier, + [67632] = 2, + ACTIONS(5411), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68544] = 2, - ACTIONS(5395), 1, - anon_sym_RBRACE, + [67640] = 2, + ACTIONS(5413), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68552] = 2, - ACTIONS(5397), 1, - anon_sym_EQ_GT, + [67648] = 2, + ACTIONS(5415), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68560] = 2, - ACTIONS(5399), 1, - sym_identifier, + [67656] = 2, + ACTIONS(4224), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68568] = 2, - ACTIONS(3985), 1, + [67664] = 2, + ACTIONS(4155), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68576] = 2, - ACTIONS(5401), 1, + [67672] = 2, + ACTIONS(5417), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68584] = 2, - ACTIONS(5403), 1, - sym_identifier, + [67680] = 2, + ACTIONS(3963), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68592] = 2, - ACTIONS(4003), 1, + [67688] = 2, + ACTIONS(4072), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68600] = 2, - ACTIONS(5405), 1, + [67696] = 2, + ACTIONS(5419), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68608] = 2, - ACTIONS(5407), 1, - anon_sym_LBRACK, + [67704] = 2, + ACTIONS(5421), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68616] = 2, - ACTIONS(3991), 1, + [67712] = 2, + ACTIONS(4040), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68624] = 2, - ACTIONS(5409), 1, + [67720] = 2, + ACTIONS(5423), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68632] = 2, - ACTIONS(4853), 1, - anon_sym_RBRACE, + [67728] = 2, + ACTIONS(5425), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68640] = 2, - ACTIONS(4222), 1, - anon_sym_RPAREN, + [67736] = 2, + ACTIONS(5427), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68648] = 2, - ACTIONS(5411), 1, - anon_sym_COLON, + [67744] = 2, + ACTIONS(5429), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68656] = 2, - ACTIONS(5413), 1, + [67752] = 2, + ACTIONS(5431), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68664] = 2, - ACTIONS(5415), 1, + [67760] = 2, + ACTIONS(5433), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68672] = 2, - ACTIONS(5417), 1, + [67768] = 2, + ACTIONS(5435), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68680] = 2, - ACTIONS(5419), 1, + [67776] = 2, + ACTIONS(5437), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68688] = 2, - ACTIONS(5421), 1, + [67784] = 2, + ACTIONS(4924), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68696] = 2, - ACTIONS(4894), 1, - anon_sym_RBRACE, + [67792] = 2, + ACTIONS(5439), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68704] = 2, - ACTIONS(5423), 1, - anon_sym_COLON, + [67800] = 2, + ACTIONS(5441), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68712] = 2, - ACTIONS(5425), 1, - anon_sym_fn, + [67808] = 2, + ACTIONS(5443), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68720] = 2, - ACTIONS(5427), 1, + [67816] = 2, + ACTIONS(5445), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68728] = 2, - ACTIONS(5429), 1, + [67824] = 2, + ACTIONS(5447), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68736] = 2, - ACTIONS(5431), 1, - sym_identifier, + [67832] = 2, + ACTIONS(5449), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68744] = 2, - ACTIONS(5433), 1, - anon_sym_SEMI, + [67840] = 2, + ACTIONS(3436), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68752] = 2, - ACTIONS(5435), 1, + [67848] = 2, + ACTIONS(5029), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68760] = 2, - ACTIONS(5437), 1, + [67856] = 2, + ACTIONS(5451), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68768] = 2, - ACTIONS(5439), 1, - anon_sym_SEMI, + [67864] = 2, + ACTIONS(5155), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68776] = 2, - ACTIONS(4374), 1, - anon_sym_RPAREN, + [67872] = 2, + ACTIONS(3967), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68784] = 2, - ACTIONS(4459), 1, - anon_sym_RPAREN, + [67880] = 2, + ACTIONS(5453), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68792] = 2, - ACTIONS(5441), 1, + [67888] = 2, + ACTIONS(5455), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68800] = 2, - ACTIONS(5443), 1, + [67896] = 2, + ACTIONS(5457), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68808] = 2, - ACTIONS(4435), 1, - sym_identifier, + [67904] = 2, + ACTIONS(5459), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68816] = 2, - ACTIONS(5445), 1, - anon_sym_COLON, + [67912] = 2, + ACTIONS(2311), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68824] = 2, - ACTIONS(5447), 1, + [67920] = 2, + ACTIONS(4952), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68832] = 2, - ACTIONS(5449), 1, + [67928] = 2, + ACTIONS(5461), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68840] = 2, - ACTIONS(5451), 1, - sym_identifier, + [67936] = 2, + ACTIONS(5463), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68848] = 2, - ACTIONS(5453), 1, + [67944] = 2, + ACTIONS(5465), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68856] = 2, - ACTIONS(5455), 1, + [67952] = 2, + ACTIONS(5467), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68864] = 2, - ACTIONS(5457), 1, - sym_identifier, + [67960] = 2, + ACTIONS(5469), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68872] = 2, - ACTIONS(4368), 1, - anon_sym_RBRACK, + [67968] = 2, + ACTIONS(5471), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68880] = 2, - ACTIONS(548), 1, - anon_sym_RBRACK, + [67976] = 2, + ACTIONS(5473), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68888] = 2, - ACTIONS(5459), 1, + [67984] = 2, + ACTIONS(5475), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68896] = 2, - ACTIONS(5461), 1, + [67992] = 2, + ACTIONS(5477), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68904] = 2, - ACTIONS(5463), 1, + [68000] = 2, + ACTIONS(5479), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68912] = 2, - ACTIONS(4945), 1, - anon_sym_RBRACE, + [68008] = 2, + ACTIONS(5481), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68920] = 2, - ACTIONS(5465), 1, + [68016] = 2, + ACTIONS(5483), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68928] = 2, - ACTIONS(5467), 1, + [68024] = 2, + ACTIONS(5485), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68936] = 2, - ACTIONS(5469), 1, + [68032] = 2, + ACTIONS(5487), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68944] = 2, - ACTIONS(5471), 1, - anon_sym_RBRACK, + [68040] = 2, + ACTIONS(5489), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68952] = 2, - ACTIONS(5473), 1, - anon_sym_RBRACE, + [68048] = 2, + ACTIONS(5491), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68960] = 2, - ACTIONS(5475), 1, - anon_sym_SEMI, + [68056] = 2, + ACTIONS(5493), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68968] = 2, - ACTIONS(5477), 1, - anon_sym_SEMI, + [68064] = 2, + ACTIONS(4187), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68976] = 2, - ACTIONS(5479), 1, + [68072] = 2, + ACTIONS(5495), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68984] = 2, - ACTIONS(5481), 1, - sym_identifier, + [68080] = 2, + ACTIONS(5497), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68992] = 2, - ACTIONS(3355), 1, + [68088] = 2, + ACTIONS(3395), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69000] = 2, - ACTIONS(5483), 1, + [68096] = 2, + ACTIONS(5499), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69008] = 2, - ACTIONS(5485), 1, - sym_identifier, + [68104] = 2, + ACTIONS(5002), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69016] = 2, - ACTIONS(5487), 1, + [68112] = 2, + ACTIONS(5501), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69024] = 2, - ACTIONS(4278), 1, - sym_identifier, + [68120] = 2, + ACTIONS(4442), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69032] = 2, - ACTIONS(5489), 1, - anon_sym_SEMI, + [68128] = 2, + ACTIONS(5503), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69040] = 2, - ACTIONS(5491), 1, - anon_sym_RBRACK, + [68136] = 2, + ACTIONS(3113), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69048] = 2, - ACTIONS(5493), 1, + [68144] = 2, + ACTIONS(5505), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69056] = 2, - ACTIONS(5495), 1, + [68152] = 2, + ACTIONS(5507), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69064] = 2, - ACTIONS(5497), 1, + [68160] = 2, + ACTIONS(5509), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69072] = 2, - ACTIONS(5499), 1, - anon_sym_COLON_COLON, + [68168] = 2, + ACTIONS(5511), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69080] = 2, - ACTIONS(5501), 1, - anon_sym_SEMI, + [68176] = 2, + ACTIONS(5513), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69088] = 2, - ACTIONS(5503), 1, + [68184] = 2, + ACTIONS(5515), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69096] = 2, - ACTIONS(5505), 1, - sym_identifier, + [68192] = 2, + ACTIONS(5517), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69104] = 2, - ACTIONS(3426), 1, - anon_sym_COLON_COLON, + [68200] = 2, + ACTIONS(5519), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69112] = 2, - ACTIONS(5507), 1, - anon_sym_EQ_GT, + [68208] = 2, + ACTIONS(5521), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69120] = 2, - ACTIONS(5509), 1, - sym_identifier, + [68216] = 2, + ACTIONS(5033), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69128] = 2, - ACTIONS(5133), 1, - anon_sym_COLON_COLON, + [68224] = 2, + ACTIONS(5523), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69136] = 2, - ACTIONS(5017), 1, - anon_sym_SEMI, + [68232] = 2, + ACTIONS(5525), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(622)] = 0, - [SMALL_STATE(623)] = 129, - [SMALL_STATE(624)] = 258, - [SMALL_STATE(625)] = 387, - [SMALL_STATE(626)] = 516, - [SMALL_STATE(627)] = 645, - [SMALL_STATE(628)] = 774, - [SMALL_STATE(629)] = 903, - [SMALL_STATE(630)] = 1032, - [SMALL_STATE(631)] = 1161, - [SMALL_STATE(632)] = 1290, - [SMALL_STATE(633)] = 1419, - [SMALL_STATE(634)] = 1548, - [SMALL_STATE(635)] = 1677, - [SMALL_STATE(636)] = 1806, - [SMALL_STATE(637)] = 1935, - [SMALL_STATE(638)] = 2064, - [SMALL_STATE(639)] = 2193, - [SMALL_STATE(640)] = 2322, - [SMALL_STATE(641)] = 2451, - [SMALL_STATE(642)] = 2580, - [SMALL_STATE(643)] = 2709, - [SMALL_STATE(644)] = 2838, - [SMALL_STATE(645)] = 2967, - [SMALL_STATE(646)] = 3096, - [SMALL_STATE(647)] = 3225, - [SMALL_STATE(648)] = 3354, - [SMALL_STATE(649)] = 3483, - [SMALL_STATE(650)] = 3612, - [SMALL_STATE(651)] = 3741, - [SMALL_STATE(652)] = 3870, - [SMALL_STATE(653)] = 3999, - [SMALL_STATE(654)] = 4128, - [SMALL_STATE(655)] = 4257, - [SMALL_STATE(656)] = 4386, - [SMALL_STATE(657)] = 4515, - [SMALL_STATE(658)] = 4644, - [SMALL_STATE(659)] = 4773, - [SMALL_STATE(660)] = 4902, - [SMALL_STATE(661)] = 5031, - [SMALL_STATE(662)] = 5160, - [SMALL_STATE(663)] = 5289, - [SMALL_STATE(664)] = 5418, - [SMALL_STATE(665)] = 5547, - [SMALL_STATE(666)] = 5676, - [SMALL_STATE(667)] = 5805, - [SMALL_STATE(668)] = 5934, - [SMALL_STATE(669)] = 6063, - [SMALL_STATE(670)] = 6192, - [SMALL_STATE(671)] = 6321, - [SMALL_STATE(672)] = 6450, - [SMALL_STATE(673)] = 6579, - [SMALL_STATE(674)] = 6708, - [SMALL_STATE(675)] = 6837, - [SMALL_STATE(676)] = 6966, - [SMALL_STATE(677)] = 7095, - [SMALL_STATE(678)] = 7224, - [SMALL_STATE(679)] = 7353, - [SMALL_STATE(680)] = 7482, - [SMALL_STATE(681)] = 7611, - [SMALL_STATE(682)] = 7740, - [SMALL_STATE(683)] = 7869, - [SMALL_STATE(684)] = 7998, - [SMALL_STATE(685)] = 8127, - [SMALL_STATE(686)] = 8256, - [SMALL_STATE(687)] = 8385, - [SMALL_STATE(688)] = 8514, - [SMALL_STATE(689)] = 8643, - [SMALL_STATE(690)] = 8772, - [SMALL_STATE(691)] = 8901, - [SMALL_STATE(692)] = 9030, - [SMALL_STATE(693)] = 9159, - [SMALL_STATE(694)] = 9288, - [SMALL_STATE(695)] = 9419, - [SMALL_STATE(696)] = 9548, - [SMALL_STATE(697)] = 9677, - [SMALL_STATE(698)] = 9806, - [SMALL_STATE(699)] = 9935, - [SMALL_STATE(700)] = 10064, - [SMALL_STATE(701)] = 10193, - [SMALL_STATE(702)] = 10322, - [SMALL_STATE(703)] = 10451, - [SMALL_STATE(704)] = 10580, - [SMALL_STATE(705)] = 10709, - [SMALL_STATE(706)] = 10838, - [SMALL_STATE(707)] = 10967, - [SMALL_STATE(708)] = 11096, - [SMALL_STATE(709)] = 11225, - [SMALL_STATE(710)] = 11354, - [SMALL_STATE(711)] = 11483, - [SMALL_STATE(712)] = 11612, - [SMALL_STATE(713)] = 11741, - [SMALL_STATE(714)] = 11870, - [SMALL_STATE(715)] = 11941, - [SMALL_STATE(716)] = 12070, - [SMALL_STATE(717)] = 12199, - [SMALL_STATE(718)] = 12328, - [SMALL_STATE(719)] = 12457, - [SMALL_STATE(720)] = 12586, - [SMALL_STATE(721)] = 12715, - [SMALL_STATE(722)] = 12844, - [SMALL_STATE(723)] = 12973, - [SMALL_STATE(724)] = 13102, - [SMALL_STATE(725)] = 13231, - [SMALL_STATE(726)] = 13360, - [SMALL_STATE(727)] = 13489, - [SMALL_STATE(728)] = 13618, - [SMALL_STATE(729)] = 13747, - [SMALL_STATE(730)] = 13876, - [SMALL_STATE(731)] = 14005, - [SMALL_STATE(732)] = 14134, - [SMALL_STATE(733)] = 14200, - [SMALL_STATE(734)] = 14266, - [SMALL_STATE(735)] = 14332, - [SMALL_STATE(736)] = 14398, - [SMALL_STATE(737)] = 14460, - [SMALL_STATE(738)] = 14530, - [SMALL_STATE(739)] = 14597, - [SMALL_STATE(740)] = 14664, - [SMALL_STATE(741)] = 14728, - [SMALL_STATE(742)] = 14784, - [SMALL_STATE(743)] = 14840, - [SMALL_STATE(744)] = 14904, - [SMALL_STATE(745)] = 14960, - [SMALL_STATE(746)] = 15022, - [SMALL_STATE(747)] = 15078, - [SMALL_STATE(748)] = 15138, - [SMALL_STATE(749)] = 15198, - [SMALL_STATE(750)] = 15262, - [SMALL_STATE(751)] = 15318, - [SMALL_STATE(752)] = 15378, - [SMALL_STATE(753)] = 15442, - [SMALL_STATE(754)] = 15502, - [SMALL_STATE(755)] = 15559, - [SMALL_STATE(756)] = 15618, - [SMALL_STATE(757)] = 15673, - [SMALL_STATE(758)] = 15730, - [SMALL_STATE(759)] = 15787, - [SMALL_STATE(760)] = 15846, - [SMALL_STATE(761)] = 15905, - [SMALL_STATE(762)] = 15962, - [SMALL_STATE(763)] = 16016, - [SMALL_STATE(764)] = 16070, - [SMALL_STATE(765)] = 16124, - [SMALL_STATE(766)] = 16178, - [SMALL_STATE(767)] = 16232, - [SMALL_STATE(768)] = 16286, - [SMALL_STATE(769)] = 16340, - [SMALL_STATE(770)] = 16396, - [SMALL_STATE(771)] = 16450, - [SMALL_STATE(772)] = 16504, - [SMALL_STATE(773)] = 16558, - [SMALL_STATE(774)] = 16612, - [SMALL_STATE(775)] = 16666, - [SMALL_STATE(776)] = 16720, - [SMALL_STATE(777)] = 16774, - [SMALL_STATE(778)] = 16828, - [SMALL_STATE(779)] = 16882, - [SMALL_STATE(780)] = 16936, - [SMALL_STATE(781)] = 16990, - [SMALL_STATE(782)] = 17044, - [SMALL_STATE(783)] = 17098, - [SMALL_STATE(784)] = 17152, - [SMALL_STATE(785)] = 17206, - [SMALL_STATE(786)] = 17260, - [SMALL_STATE(787)] = 17314, - [SMALL_STATE(788)] = 17368, - [SMALL_STATE(789)] = 17422, - [SMALL_STATE(790)] = 17476, - [SMALL_STATE(791)] = 17530, - [SMALL_STATE(792)] = 17584, - [SMALL_STATE(793)] = 17638, - [SMALL_STATE(794)] = 17692, - [SMALL_STATE(795)] = 17746, - [SMALL_STATE(796)] = 17800, - [SMALL_STATE(797)] = 17854, - [SMALL_STATE(798)] = 17908, - [SMALL_STATE(799)] = 17962, - [SMALL_STATE(800)] = 18018, - [SMALL_STATE(801)] = 18072, - [SMALL_STATE(802)] = 18126, - [SMALL_STATE(803)] = 18180, - [SMALL_STATE(804)] = 18236, - [SMALL_STATE(805)] = 18290, - [SMALL_STATE(806)] = 18344, - [SMALL_STATE(807)] = 18398, - [SMALL_STATE(808)] = 18452, - [SMALL_STATE(809)] = 18506, - [SMALL_STATE(810)] = 18560, - [SMALL_STATE(811)] = 18614, - [SMALL_STATE(812)] = 18668, - [SMALL_STATE(813)] = 18722, - [SMALL_STATE(814)] = 18776, - [SMALL_STATE(815)] = 18830, - [SMALL_STATE(816)] = 18884, - [SMALL_STATE(817)] = 18938, - [SMALL_STATE(818)] = 18992, - [SMALL_STATE(819)] = 19046, - [SMALL_STATE(820)] = 19100, - [SMALL_STATE(821)] = 19154, - [SMALL_STATE(822)] = 19208, - [SMALL_STATE(823)] = 19262, - [SMALL_STATE(824)] = 19316, - [SMALL_STATE(825)] = 19372, - [SMALL_STATE(826)] = 19426, - [SMALL_STATE(827)] = 19480, - [SMALL_STATE(828)] = 19534, - [SMALL_STATE(829)] = 19588, - [SMALL_STATE(830)] = 19642, - [SMALL_STATE(831)] = 19696, - [SMALL_STATE(832)] = 19750, - [SMALL_STATE(833)] = 19804, - [SMALL_STATE(834)] = 19858, - [SMALL_STATE(835)] = 19912, - [SMALL_STATE(836)] = 19966, - [SMALL_STATE(837)] = 20020, - [SMALL_STATE(838)] = 20074, - [SMALL_STATE(839)] = 20128, - [SMALL_STATE(840)] = 20182, - [SMALL_STATE(841)] = 20236, - [SMALL_STATE(842)] = 20290, - [SMALL_STATE(843)] = 20344, - [SMALL_STATE(844)] = 20398, - [SMALL_STATE(845)] = 20452, - [SMALL_STATE(846)] = 20506, - [SMALL_STATE(847)] = 20560, - [SMALL_STATE(848)] = 20614, - [SMALL_STATE(849)] = 20668, - [SMALL_STATE(850)] = 20722, - [SMALL_STATE(851)] = 20776, - [SMALL_STATE(852)] = 20830, - [SMALL_STATE(853)] = 20884, - [SMALL_STATE(854)] = 20938, - [SMALL_STATE(855)] = 20992, - [SMALL_STATE(856)] = 21046, - [SMALL_STATE(857)] = 21100, - [SMALL_STATE(858)] = 21154, - [SMALL_STATE(859)] = 21208, - [SMALL_STATE(860)] = 21262, - [SMALL_STATE(861)] = 21316, - [SMALL_STATE(862)] = 21370, - [SMALL_STATE(863)] = 21424, - [SMALL_STATE(864)] = 21478, - [SMALL_STATE(865)] = 21532, - [SMALL_STATE(866)] = 21586, - [SMALL_STATE(867)] = 21640, - [SMALL_STATE(868)] = 21694, - [SMALL_STATE(869)] = 21748, - [SMALL_STATE(870)] = 21802, - [SMALL_STATE(871)] = 21856, - [SMALL_STATE(872)] = 21910, - [SMALL_STATE(873)] = 21964, - [SMALL_STATE(874)] = 22018, - [SMALL_STATE(875)] = 22072, - [SMALL_STATE(876)] = 22126, - [SMALL_STATE(877)] = 22180, - [SMALL_STATE(878)] = 22234, - [SMALL_STATE(879)] = 22288, - [SMALL_STATE(880)] = 22342, - [SMALL_STATE(881)] = 22396, - [SMALL_STATE(882)] = 22450, - [SMALL_STATE(883)] = 22504, - [SMALL_STATE(884)] = 22558, - [SMALL_STATE(885)] = 22612, - [SMALL_STATE(886)] = 22666, - [SMALL_STATE(887)] = 22720, - [SMALL_STATE(888)] = 22774, - [SMALL_STATE(889)] = 22828, - [SMALL_STATE(890)] = 22882, - [SMALL_STATE(891)] = 22936, - [SMALL_STATE(892)] = 22990, - [SMALL_STATE(893)] = 23046, - [SMALL_STATE(894)] = 23100, - [SMALL_STATE(895)] = 23154, - [SMALL_STATE(896)] = 23208, - [SMALL_STATE(897)] = 23262, - [SMALL_STATE(898)] = 23316, - [SMALL_STATE(899)] = 23370, - [SMALL_STATE(900)] = 23424, - [SMALL_STATE(901)] = 23478, - [SMALL_STATE(902)] = 23532, - [SMALL_STATE(903)] = 23586, - [SMALL_STATE(904)] = 23640, - [SMALL_STATE(905)] = 23694, - [SMALL_STATE(906)] = 23748, - [SMALL_STATE(907)] = 23804, - [SMALL_STATE(908)] = 23858, - [SMALL_STATE(909)] = 23912, - [SMALL_STATE(910)] = 23966, - [SMALL_STATE(911)] = 24020, - [SMALL_STATE(912)] = 24074, - [SMALL_STATE(913)] = 24128, - [SMALL_STATE(914)] = 24182, - [SMALL_STATE(915)] = 24236, - [SMALL_STATE(916)] = 24290, - [SMALL_STATE(917)] = 24344, - [SMALL_STATE(918)] = 24398, - [SMALL_STATE(919)] = 24452, - [SMALL_STATE(920)] = 24506, - [SMALL_STATE(921)] = 24560, - [SMALL_STATE(922)] = 24614, - [SMALL_STATE(923)] = 24668, - [SMALL_STATE(924)] = 24722, - [SMALL_STATE(925)] = 24776, - [SMALL_STATE(926)] = 24830, - [SMALL_STATE(927)] = 24884, - [SMALL_STATE(928)] = 24938, - [SMALL_STATE(929)] = 24992, - [SMALL_STATE(930)] = 25046, - [SMALL_STATE(931)] = 25100, - [SMALL_STATE(932)] = 25154, - [SMALL_STATE(933)] = 25208, - [SMALL_STATE(934)] = 25262, - [SMALL_STATE(935)] = 25316, - [SMALL_STATE(936)] = 25370, - [SMALL_STATE(937)] = 25424, - [SMALL_STATE(938)] = 25478, - [SMALL_STATE(939)] = 25532, - [SMALL_STATE(940)] = 25586, - [SMALL_STATE(941)] = 25640, - [SMALL_STATE(942)] = 25694, - [SMALL_STATE(943)] = 25748, - [SMALL_STATE(944)] = 25802, - [SMALL_STATE(945)] = 25856, - [SMALL_STATE(946)] = 25910, - [SMALL_STATE(947)] = 25964, - [SMALL_STATE(948)] = 26018, - [SMALL_STATE(949)] = 26072, - [SMALL_STATE(950)] = 26126, - [SMALL_STATE(951)] = 26180, - [SMALL_STATE(952)] = 26234, - [SMALL_STATE(953)] = 26288, - [SMALL_STATE(954)] = 26342, - [SMALL_STATE(955)] = 26396, - [SMALL_STATE(956)] = 26450, - [SMALL_STATE(957)] = 26504, - [SMALL_STATE(958)] = 26558, - [SMALL_STATE(959)] = 26612, - [SMALL_STATE(960)] = 26666, - [SMALL_STATE(961)] = 26720, - [SMALL_STATE(962)] = 26774, - [SMALL_STATE(963)] = 26828, - [SMALL_STATE(964)] = 26882, - [SMALL_STATE(965)] = 26936, - [SMALL_STATE(966)] = 26990, - [SMALL_STATE(967)] = 27044, - [SMALL_STATE(968)] = 27100, - [SMALL_STATE(969)] = 27154, - [SMALL_STATE(970)] = 27210, - [SMALL_STATE(971)] = 27264, - [SMALL_STATE(972)] = 27318, - [SMALL_STATE(973)] = 27372, - [SMALL_STATE(974)] = 27426, - [SMALL_STATE(975)] = 27480, - [SMALL_STATE(976)] = 27534, - [SMALL_STATE(977)] = 27588, - [SMALL_STATE(978)] = 27644, - [SMALL_STATE(979)] = 27698, - [SMALL_STATE(980)] = 27752, - [SMALL_STATE(981)] = 27808, - [SMALL_STATE(982)] = 27862, - [SMALL_STATE(983)] = 27920, - [SMALL_STATE(984)] = 27976, - [SMALL_STATE(985)] = 28030, - [SMALL_STATE(986)] = 28084, - [SMALL_STATE(987)] = 28140, - [SMALL_STATE(988)] = 28194, - [SMALL_STATE(989)] = 28248, - [SMALL_STATE(990)] = 28302, - [SMALL_STATE(991)] = 28356, - [SMALL_STATE(992)] = 28410, - [SMALL_STATE(993)] = 28464, - [SMALL_STATE(994)] = 28518, - [SMALL_STATE(995)] = 28572, - [SMALL_STATE(996)] = 28626, - [SMALL_STATE(997)] = 28680, - [SMALL_STATE(998)] = 28734, - [SMALL_STATE(999)] = 28788, - [SMALL_STATE(1000)] = 28842, - [SMALL_STATE(1001)] = 28896, - [SMALL_STATE(1002)] = 28954, - [SMALL_STATE(1003)] = 29008, - [SMALL_STATE(1004)] = 29062, - [SMALL_STATE(1005)] = 29116, - [SMALL_STATE(1006)] = 29170, - [SMALL_STATE(1007)] = 29226, - [SMALL_STATE(1008)] = 29280, - [SMALL_STATE(1009)] = 29334, - [SMALL_STATE(1010)] = 29388, - [SMALL_STATE(1011)] = 29444, - [SMALL_STATE(1012)] = 29498, - [SMALL_STATE(1013)] = 29552, - [SMALL_STATE(1014)] = 29606, - [SMALL_STATE(1015)] = 29660, - [SMALL_STATE(1016)] = 29714, - [SMALL_STATE(1017)] = 29768, - [SMALL_STATE(1018)] = 29822, - [SMALL_STATE(1019)] = 29878, - [SMALL_STATE(1020)] = 29934, - [SMALL_STATE(1021)] = 29987, - [SMALL_STATE(1022)] = 30040, - [SMALL_STATE(1023)] = 30093, - [SMALL_STATE(1024)] = 30146, - [SMALL_STATE(1025)] = 30201, - [SMALL_STATE(1026)] = 30254, - [SMALL_STATE(1027)] = 30339, - [SMALL_STATE(1028)] = 30416, - [SMALL_STATE(1029)] = 30469, - [SMALL_STATE(1030)] = 30522, - [SMALL_STATE(1031)] = 30613, - [SMALL_STATE(1032)] = 30666, - [SMALL_STATE(1033)] = 30751, - [SMALL_STATE(1034)] = 30804, - [SMALL_STATE(1035)] = 30857, - [SMALL_STATE(1036)] = 30922, - [SMALL_STATE(1037)] = 30989, - [SMALL_STATE(1038)] = 31042, - [SMALL_STATE(1039)] = 31095, - [SMALL_STATE(1040)] = 31148, - [SMALL_STATE(1041)] = 31201, - [SMALL_STATE(1042)] = 31254, - [SMALL_STATE(1043)] = 31307, - [SMALL_STATE(1044)] = 31360, - [SMALL_STATE(1045)] = 31413, - [SMALL_STATE(1046)] = 31466, - [SMALL_STATE(1047)] = 31519, - [SMALL_STATE(1048)] = 31572, - [SMALL_STATE(1049)] = 31625, - [SMALL_STATE(1050)] = 31678, - [SMALL_STATE(1051)] = 31731, - [SMALL_STATE(1052)] = 31784, - [SMALL_STATE(1053)] = 31837, - [SMALL_STATE(1054)] = 31890, - [SMALL_STATE(1055)] = 31943, - [SMALL_STATE(1056)] = 31996, - [SMALL_STATE(1057)] = 32051, - [SMALL_STATE(1058)] = 32104, - [SMALL_STATE(1059)] = 32157, - [SMALL_STATE(1060)] = 32210, - [SMALL_STATE(1061)] = 32263, - [SMALL_STATE(1062)] = 32352, - [SMALL_STATE(1063)] = 32437, - [SMALL_STATE(1064)] = 32490, - [SMALL_STATE(1065)] = 32543, - [SMALL_STATE(1066)] = 32624, - [SMALL_STATE(1067)] = 32677, - [SMALL_STATE(1068)] = 32730, - [SMALL_STATE(1069)] = 32813, - [SMALL_STATE(1070)] = 32866, - [SMALL_STATE(1071)] = 32919, - [SMALL_STATE(1072)] = 32972, - [SMALL_STATE(1073)] = 33025, - [SMALL_STATE(1074)] = 33078, - [SMALL_STATE(1075)] = 33131, - [SMALL_STATE(1076)] = 33190, - [SMALL_STATE(1077)] = 33245, - [SMALL_STATE(1078)] = 33298, - [SMALL_STATE(1079)] = 33373, - [SMALL_STATE(1080)] = 33430, - [SMALL_STATE(1081)] = 33483, - [SMALL_STATE(1082)] = 33536, - [SMALL_STATE(1083)] = 33609, - [SMALL_STATE(1084)] = 33674, - [SMALL_STATE(1085)] = 33743, - [SMALL_STATE(1086)] = 33796, - [SMALL_STATE(1087)] = 33849, - [SMALL_STATE(1088)] = 33902, - [SMALL_STATE(1089)] = 33955, - [SMALL_STATE(1090)] = 34040, - [SMALL_STATE(1091)] = 34093, - [SMALL_STATE(1092)] = 34146, - [SMALL_STATE(1093)] = 34199, - [SMALL_STATE(1094)] = 34252, - [SMALL_STATE(1095)] = 34305, - [SMALL_STATE(1096)] = 34358, - [SMALL_STATE(1097)] = 34411, - [SMALL_STATE(1098)] = 34500, - [SMALL_STATE(1099)] = 34553, - [SMALL_STATE(1100)] = 34606, - [SMALL_STATE(1101)] = 34659, - [SMALL_STATE(1102)] = 34712, - [SMALL_STATE(1103)] = 34765, - [SMALL_STATE(1104)] = 34818, - [SMALL_STATE(1105)] = 34871, - [SMALL_STATE(1106)] = 34924, - [SMALL_STATE(1107)] = 34977, - [SMALL_STATE(1108)] = 35062, - [SMALL_STATE(1109)] = 35115, - [SMALL_STATE(1110)] = 35168, - [SMALL_STATE(1111)] = 35221, - [SMALL_STATE(1112)] = 35274, - [SMALL_STATE(1113)] = 35327, - [SMALL_STATE(1114)] = 35380, - [SMALL_STATE(1115)] = 35433, - [SMALL_STATE(1116)] = 35486, - [SMALL_STATE(1117)] = 35539, - [SMALL_STATE(1118)] = 35592, - [SMALL_STATE(1119)] = 35683, - [SMALL_STATE(1120)] = 35736, - [SMALL_STATE(1121)] = 35801, - [SMALL_STATE(1122)] = 35854, - [SMALL_STATE(1123)] = 35907, - [SMALL_STATE(1124)] = 35978, - [SMALL_STATE(1125)] = 36031, - [SMALL_STATE(1126)] = 36084, - [SMALL_STATE(1127)] = 36137, - [SMALL_STATE(1128)] = 36222, - [SMALL_STATE(1129)] = 36275, - [SMALL_STATE(1130)] = 36328, - [SMALL_STATE(1131)] = 36381, - [SMALL_STATE(1132)] = 36434, - [SMALL_STATE(1133)] = 36489, - [SMALL_STATE(1134)] = 36542, - [SMALL_STATE(1135)] = 36595, - [SMALL_STATE(1136)] = 36660, - [SMALL_STATE(1137)] = 36713, - [SMALL_STATE(1138)] = 36766, - [SMALL_STATE(1139)] = 36819, - [SMALL_STATE(1140)] = 36872, - [SMALL_STATE(1141)] = 36925, - [SMALL_STATE(1142)] = 36978, - [SMALL_STATE(1143)] = 37030, - [SMALL_STATE(1144)] = 37090, - [SMALL_STATE(1145)] = 37142, - [SMALL_STATE(1146)] = 37193, - [SMALL_STATE(1147)] = 37280, - [SMALL_STATE(1148)] = 37367, - [SMALL_STATE(1149)] = 37446, - [SMALL_STATE(1150)] = 37541, - [SMALL_STATE(1151)] = 37598, - [SMALL_STATE(1152)] = 37649, - [SMALL_STATE(1153)] = 37734, - [SMALL_STATE(1154)] = 37821, - [SMALL_STATE(1155)] = 37916, - [SMALL_STATE(1156)] = 38003, - [SMALL_STATE(1157)] = 38088, - [SMALL_STATE(1158)] = 38164, - [SMALL_STATE(1159)] = 38240, - [SMALL_STATE(1160)] = 38332, - [SMALL_STATE(1161)] = 38424, - [SMALL_STATE(1162)] = 38480, - [SMALL_STATE(1163)] = 38534, - [SMALL_STATE(1164)] = 38610, - [SMALL_STATE(1165)] = 38686, - [SMALL_STATE(1166)] = 38773, - [SMALL_STATE(1167)] = 38862, - [SMALL_STATE(1168)] = 38951, - [SMALL_STATE(1169)] = 39040, - [SMALL_STATE(1170)] = 39129, - [SMALL_STATE(1171)] = 39218, - [SMALL_STATE(1172)] = 39307, - [SMALL_STATE(1173)] = 39356, - [SMALL_STATE(1174)] = 39445, - [SMALL_STATE(1175)] = 39534, - [SMALL_STATE(1176)] = 39583, - [SMALL_STATE(1177)] = 39672, - [SMALL_STATE(1178)] = 39759, - [SMALL_STATE(1179)] = 39848, - [SMALL_STATE(1180)] = 39937, - [SMALL_STATE(1181)] = 40026, - [SMALL_STATE(1182)] = 40115, - [SMALL_STATE(1183)] = 40202, - [SMALL_STATE(1184)] = 40289, - [SMALL_STATE(1185)] = 40378, - [SMALL_STATE(1186)] = 40467, - [SMALL_STATE(1187)] = 40516, - [SMALL_STATE(1188)] = 40603, - [SMALL_STATE(1189)] = 40692, - [SMALL_STATE(1190)] = 40781, - [SMALL_STATE(1191)] = 40868, - [SMALL_STATE(1192)] = 40957, - [SMALL_STATE(1193)] = 41046, - [SMALL_STATE(1194)] = 41135, - [SMALL_STATE(1195)] = 41188, - [SMALL_STATE(1196)] = 41275, - [SMALL_STATE(1197)] = 41362, - [SMALL_STATE(1198)] = 41411, - [SMALL_STATE(1199)] = 41464, - [SMALL_STATE(1200)] = 41553, - [SMALL_STATE(1201)] = 41642, - [SMALL_STATE(1202)] = 41731, - [SMALL_STATE(1203)] = 41820, - [SMALL_STATE(1204)] = 41871, - [SMALL_STATE(1205)] = 41960, - [SMALL_STATE(1206)] = 42049, - [SMALL_STATE(1207)] = 42138, - [SMALL_STATE(1208)] = 42225, - [SMALL_STATE(1209)] = 42274, - [SMALL_STATE(1210)] = 42323, - [SMALL_STATE(1211)] = 42412, - [SMALL_STATE(1212)] = 42461, - [SMALL_STATE(1213)] = 42550, - [SMALL_STATE(1214)] = 42639, - [SMALL_STATE(1215)] = 42728, - [SMALL_STATE(1216)] = 42817, - [SMALL_STATE(1217)] = 42906, - [SMALL_STATE(1218)] = 42995, - [SMALL_STATE(1219)] = 43068, - [SMALL_STATE(1220)] = 43157, - [SMALL_STATE(1221)] = 43246, - [SMALL_STATE(1222)] = 43335, - [SMALL_STATE(1223)] = 43424, - [SMALL_STATE(1224)] = 43513, - [SMALL_STATE(1225)] = 43602, - [SMALL_STATE(1226)] = 43651, - [SMALL_STATE(1227)] = 43740, - [SMALL_STATE(1228)] = 43791, - [SMALL_STATE(1229)] = 43880, - [SMALL_STATE(1230)] = 43969, - [SMALL_STATE(1231)] = 44058, - [SMALL_STATE(1232)] = 44147, - [SMALL_STATE(1233)] = 44196, - [SMALL_STATE(1234)] = 44283, - [SMALL_STATE(1235)] = 44345, - [SMALL_STATE(1236)] = 44411, - [SMALL_STATE(1237)] = 44497, - [SMALL_STATE(1238)] = 44583, - [SMALL_STATE(1239)] = 44661, - [SMALL_STATE(1240)] = 44747, - [SMALL_STATE(1241)] = 44833, - [SMALL_STATE(1242)] = 44893, - [SMALL_STATE(1243)] = 44979, - [SMALL_STATE(1244)] = 45065, - [SMALL_STATE(1245)] = 45151, - [SMALL_STATE(1246)] = 45237, - [SMALL_STATE(1247)] = 45323, - [SMALL_STATE(1248)] = 45373, - [SMALL_STATE(1249)] = 45459, - [SMALL_STATE(1250)] = 45545, - [SMALL_STATE(1251)] = 45631, - [SMALL_STATE(1252)] = 45711, - [SMALL_STATE(1253)] = 45797, - [SMALL_STATE(1254)] = 45877, - [SMALL_STATE(1255)] = 45927, - [SMALL_STATE(1256)] = 45987, - [SMALL_STATE(1257)] = 46037, - [SMALL_STATE(1258)] = 46097, - [SMALL_STATE(1259)] = 46177, - [SMALL_STATE(1260)] = 46263, - [SMALL_STATE(1261)] = 46335, - [SMALL_STATE(1262)] = 46421, - [SMALL_STATE(1263)] = 46507, - [SMALL_STATE(1264)] = 46593, - [SMALL_STATE(1265)] = 46673, - [SMALL_STATE(1266)] = 46759, - [SMALL_STATE(1267)] = 46835, - [SMALL_STATE(1268)] = 46913, - [SMALL_STATE(1269)] = 46999, - [SMALL_STATE(1270)] = 47085, - [SMALL_STATE(1271)] = 47155, - [SMALL_STATE(1272)] = 47241, - [SMALL_STATE(1273)] = 47321, - [SMALL_STATE(1274)] = 47375, - [SMALL_STATE(1275)] = 47435, - [SMALL_STATE(1276)] = 47513, - [SMALL_STATE(1277)] = 47599, - [SMALL_STATE(1278)] = 47667, - [SMALL_STATE(1279)] = 47753, - [SMALL_STATE(1280)] = 47817, - [SMALL_STATE(1281)] = 47903, - [SMALL_STATE(1282)] = 47989, - [SMALL_STATE(1283)] = 48075, - [SMALL_STATE(1284)] = 48161, - [SMALL_STATE(1285)] = 48211, - [SMALL_STATE(1286)] = 48297, - [SMALL_STATE(1287)] = 48383, - [SMALL_STATE(1288)] = 48469, - [SMALL_STATE(1289)] = 48549, - [SMALL_STATE(1290)] = 48635, - [SMALL_STATE(1291)] = 48721, - [SMALL_STATE(1292)] = 48807, - [SMALL_STATE(1293)] = 48878, - [SMALL_STATE(1294)] = 48946, - [SMALL_STATE(1295)] = 49014, - [SMALL_STATE(1296)] = 49079, - [SMALL_STATE(1297)] = 49144, - [SMALL_STATE(1298)] = 49209, - [SMALL_STATE(1299)] = 49274, - [SMALL_STATE(1300)] = 49339, - [SMALL_STATE(1301)] = 49379, - [SMALL_STATE(1302)] = 49419, - [SMALL_STATE(1303)] = 49459, - [SMALL_STATE(1304)] = 49514, - [SMALL_STATE(1305)] = 49569, - [SMALL_STATE(1306)] = 49624, - [SMALL_STATE(1307)] = 49679, - [SMALL_STATE(1308)] = 49734, - [SMALL_STATE(1309)] = 49789, - [SMALL_STATE(1310)] = 49844, - [SMALL_STATE(1311)] = 49896, - [SMALL_STATE(1312)] = 49948, - [SMALL_STATE(1313)] = 49978, - [SMALL_STATE(1314)] = 50008, - [SMALL_STATE(1315)] = 50050, - [SMALL_STATE(1316)] = 50090, - [SMALL_STATE(1317)] = 50119, - [SMALL_STATE(1318)] = 50156, - [SMALL_STATE(1319)] = 50185, - [SMALL_STATE(1320)] = 50214, - [SMALL_STATE(1321)] = 50243, - [SMALL_STATE(1322)] = 50272, - [SMALL_STATE(1323)] = 50301, - [SMALL_STATE(1324)] = 50330, - [SMALL_STATE(1325)] = 50359, - [SMALL_STATE(1326)] = 50396, - [SMALL_STATE(1327)] = 50428, - [SMALL_STATE(1328)] = 50482, - [SMALL_STATE(1329)] = 50514, - [SMALL_STATE(1330)] = 50568, - [SMALL_STATE(1331)] = 50600, - [SMALL_STATE(1332)] = 50623, - [SMALL_STATE(1333)] = 50648, - [SMALL_STATE(1334)] = 50672, - [SMALL_STATE(1335)] = 50696, - [SMALL_STATE(1336)] = 50720, - [SMALL_STATE(1337)] = 50750, - [SMALL_STATE(1338)] = 50774, - [SMALL_STATE(1339)] = 50796, - [SMALL_STATE(1340)] = 50820, - [SMALL_STATE(1341)] = 50864, - [SMALL_STATE(1342)] = 50888, - [SMALL_STATE(1343)] = 50910, - [SMALL_STATE(1344)] = 50934, - [SMALL_STATE(1345)] = 50958, - [SMALL_STATE(1346)] = 50980, - [SMALL_STATE(1347)] = 51002, - [SMALL_STATE(1348)] = 51026, - [SMALL_STATE(1349)] = 51050, - [SMALL_STATE(1350)] = 51094, - [SMALL_STATE(1351)] = 51140, - [SMALL_STATE(1352)] = 51163, - [SMALL_STATE(1353)] = 51188, - [SMALL_STATE(1354)] = 51211, - [SMALL_STATE(1355)] = 51236, - [SMALL_STATE(1356)] = 51257, - [SMALL_STATE(1357)] = 51280, - [SMALL_STATE(1358)] = 51303, - [SMALL_STATE(1359)] = 51328, - [SMALL_STATE(1360)] = 51355, - [SMALL_STATE(1361)] = 51380, - [SMALL_STATE(1362)] = 51401, - [SMALL_STATE(1363)] = 51422, - [SMALL_STATE(1364)] = 51445, - [SMALL_STATE(1365)] = 51468, - [SMALL_STATE(1366)] = 51491, - [SMALL_STATE(1367)] = 51514, - [SMALL_STATE(1368)] = 51539, - [SMALL_STATE(1369)] = 51560, - [SMALL_STATE(1370)] = 51585, - [SMALL_STATE(1371)] = 51606, - [SMALL_STATE(1372)] = 51651, - [SMALL_STATE(1373)] = 51671, - [SMALL_STATE(1374)] = 51691, - [SMALL_STATE(1375)] = 51711, - [SMALL_STATE(1376)] = 51731, - [SMALL_STATE(1377)] = 51751, - [SMALL_STATE(1378)] = 51771, - [SMALL_STATE(1379)] = 51791, - [SMALL_STATE(1380)] = 51811, - [SMALL_STATE(1381)] = 51831, - [SMALL_STATE(1382)] = 51851, - [SMALL_STATE(1383)] = 51871, - [SMALL_STATE(1384)] = 51895, - [SMALL_STATE(1385)] = 51915, - [SMALL_STATE(1386)] = 51935, - [SMALL_STATE(1387)] = 51955, - [SMALL_STATE(1388)] = 51975, - [SMALL_STATE(1389)] = 51995, - [SMALL_STATE(1390)] = 52015, - [SMALL_STATE(1391)] = 52035, - [SMALL_STATE(1392)] = 52055, - [SMALL_STATE(1393)] = 52075, - [SMALL_STATE(1394)] = 52095, - [SMALL_STATE(1395)] = 52115, - [SMALL_STATE(1396)] = 52135, - [SMALL_STATE(1397)] = 52157, - [SMALL_STATE(1398)] = 52177, - [SMALL_STATE(1399)] = 52199, - [SMALL_STATE(1400)] = 52219, - [SMALL_STATE(1401)] = 52239, - [SMALL_STATE(1402)] = 52261, - [SMALL_STATE(1403)] = 52281, - [SMALL_STATE(1404)] = 52304, - [SMALL_STATE(1405)] = 52327, - [SMALL_STATE(1406)] = 52350, - [SMALL_STATE(1407)] = 52373, - [SMALL_STATE(1408)] = 52394, - [SMALL_STATE(1409)] = 52415, - [SMALL_STATE(1410)] = 52440, - [SMALL_STATE(1411)] = 52465, - [SMALL_STATE(1412)] = 52490, - [SMALL_STATE(1413)] = 52515, - [SMALL_STATE(1414)] = 52538, - [SMALL_STATE(1415)] = 52563, - [SMALL_STATE(1416)] = 52588, - [SMALL_STATE(1417)] = 52613, - [SMALL_STATE(1418)] = 52634, - [SMALL_STATE(1419)] = 52657, - [SMALL_STATE(1420)] = 52680, - [SMALL_STATE(1421)] = 52703, - [SMALL_STATE(1422)] = 52738, - [SMALL_STATE(1423)] = 52761, - [SMALL_STATE(1424)] = 52784, - [SMALL_STATE(1425)] = 52807, - [SMALL_STATE(1426)] = 52830, - [SMALL_STATE(1427)] = 52855, - [SMALL_STATE(1428)] = 52875, - [SMALL_STATE(1429)] = 52895, - [SMALL_STATE(1430)] = 52921, - [SMALL_STATE(1431)] = 52953, - [SMALL_STATE(1432)] = 52985, - [SMALL_STATE(1433)] = 53005, - [SMALL_STATE(1434)] = 53025, - [SMALL_STATE(1435)] = 53057, - [SMALL_STATE(1436)] = 53081, - [SMALL_STATE(1437)] = 53113, - [SMALL_STATE(1438)] = 53133, - [SMALL_STATE(1439)] = 53165, - [SMALL_STATE(1440)] = 53197, - [SMALL_STATE(1441)] = 53221, - [SMALL_STATE(1442)] = 53241, - [SMALL_STATE(1443)] = 53273, - [SMALL_STATE(1444)] = 53297, - [SMALL_STATE(1445)] = 53329, - [SMALL_STATE(1446)] = 53349, - [SMALL_STATE(1447)] = 53369, - [SMALL_STATE(1448)] = 53389, - [SMALL_STATE(1449)] = 53409, - [SMALL_STATE(1450)] = 53429, - [SMALL_STATE(1451)] = 53453, - [SMALL_STATE(1452)] = 53473, - [SMALL_STATE(1453)] = 53493, - [SMALL_STATE(1454)] = 53513, - [SMALL_STATE(1455)] = 53533, - [SMALL_STATE(1456)] = 53553, - [SMALL_STATE(1457)] = 53573, - [SMALL_STATE(1458)] = 53593, - [SMALL_STATE(1459)] = 53613, - [SMALL_STATE(1460)] = 53633, - [SMALL_STATE(1461)] = 53653, - [SMALL_STATE(1462)] = 53673, - [SMALL_STATE(1463)] = 53693, - [SMALL_STATE(1464)] = 53719, - [SMALL_STATE(1465)] = 53739, - [SMALL_STATE(1466)] = 53759, - [SMALL_STATE(1467)] = 53779, - [SMALL_STATE(1468)] = 53799, - [SMALL_STATE(1469)] = 53819, - [SMALL_STATE(1470)] = 53839, - [SMALL_STATE(1471)] = 53859, - [SMALL_STATE(1472)] = 53879, - [SMALL_STATE(1473)] = 53912, - [SMALL_STATE(1474)] = 53943, - [SMALL_STATE(1475)] = 53966, - [SMALL_STATE(1476)] = 53999, - [SMALL_STATE(1477)] = 54024, - [SMALL_STATE(1478)] = 54053, - [SMALL_STATE(1479)] = 54076, - [SMALL_STATE(1480)] = 54099, - [SMALL_STATE(1481)] = 54124, - [SMALL_STATE(1482)] = 54149, - [SMALL_STATE(1483)] = 54176, - [SMALL_STATE(1484)] = 54209, - [SMALL_STATE(1485)] = 54242, - [SMALL_STATE(1486)] = 54272, - [SMALL_STATE(1487)] = 54298, - [SMALL_STATE(1488)] = 54320, - [SMALL_STATE(1489)] = 54350, - [SMALL_STATE(1490)] = 54382, - [SMALL_STATE(1491)] = 54412, - [SMALL_STATE(1492)] = 54434, - [SMALL_STATE(1493)] = 54464, - [SMALL_STATE(1494)] = 54486, - [SMALL_STATE(1495)] = 54516, - [SMALL_STATE(1496)] = 54546, - [SMALL_STATE(1497)] = 54578, - [SMALL_STATE(1498)] = 54608, - [SMALL_STATE(1499)] = 54634, - [SMALL_STATE(1500)] = 54664, - [SMALL_STATE(1501)] = 54686, - [SMALL_STATE(1502)] = 54712, - [SMALL_STATE(1503)] = 54738, - [SMALL_STATE(1504)] = 54770, - [SMALL_STATE(1505)] = 54802, - [SMALL_STATE(1506)] = 54832, - [SMALL_STATE(1507)] = 54858, - [SMALL_STATE(1508)] = 54884, - [SMALL_STATE(1509)] = 54914, - [SMALL_STATE(1510)] = 54944, - [SMALL_STATE(1511)] = 54974, - [SMALL_STATE(1512)] = 55004, - [SMALL_STATE(1513)] = 55030, - [SMALL_STATE(1514)] = 55060, - [SMALL_STATE(1515)] = 55086, - [SMALL_STATE(1516)] = 55116, - [SMALL_STATE(1517)] = 55142, - [SMALL_STATE(1518)] = 55168, - [SMALL_STATE(1519)] = 55198, - [SMALL_STATE(1520)] = 55224, - [SMALL_STATE(1521)] = 55254, - [SMALL_STATE(1522)] = 55284, - [SMALL_STATE(1523)] = 55314, - [SMALL_STATE(1524)] = 55336, - [SMALL_STATE(1525)] = 55366, - [SMALL_STATE(1526)] = 55388, - [SMALL_STATE(1527)] = 55418, - [SMALL_STATE(1528)] = 55437, - [SMALL_STATE(1529)] = 55466, - [SMALL_STATE(1530)] = 55485, - [SMALL_STATE(1531)] = 55508, - [SMALL_STATE(1532)] = 55531, - [SMALL_STATE(1533)] = 55550, - [SMALL_STATE(1534)] = 55577, - [SMALL_STATE(1535)] = 55600, - [SMALL_STATE(1536)] = 55627, - [SMALL_STATE(1537)] = 55646, - [SMALL_STATE(1538)] = 55665, - [SMALL_STATE(1539)] = 55684, - [SMALL_STATE(1540)] = 55707, - [SMALL_STATE(1541)] = 55734, - [SMALL_STATE(1542)] = 55753, - [SMALL_STATE(1543)] = 55782, - [SMALL_STATE(1544)] = 55809, - [SMALL_STATE(1545)] = 55836, - [SMALL_STATE(1546)] = 55855, - [SMALL_STATE(1547)] = 55880, - [SMALL_STATE(1548)] = 55907, - [SMALL_STATE(1549)] = 55936, - [SMALL_STATE(1550)] = 55955, - [SMALL_STATE(1551)] = 55982, - [SMALL_STATE(1552)] = 56009, - [SMALL_STATE(1553)] = 56028, - [SMALL_STATE(1554)] = 56051, - [SMALL_STATE(1555)] = 56072, - [SMALL_STATE(1556)] = 56099, - [SMALL_STATE(1557)] = 56126, - [SMALL_STATE(1558)] = 56153, - [SMALL_STATE(1559)] = 56182, - [SMALL_STATE(1560)] = 56201, - [SMALL_STATE(1561)] = 56230, - [SMALL_STATE(1562)] = 56257, - [SMALL_STATE(1563)] = 56272, - [SMALL_STATE(1564)] = 56293, - [SMALL_STATE(1565)] = 56322, - [SMALL_STATE(1566)] = 56349, - [SMALL_STATE(1567)] = 56376, - [SMALL_STATE(1568)] = 56403, - [SMALL_STATE(1569)] = 56417, - [SMALL_STATE(1570)] = 56439, - [SMALL_STATE(1571)] = 56453, - [SMALL_STATE(1572)] = 56479, - [SMALL_STATE(1573)] = 56505, - [SMALL_STATE(1574)] = 56531, - [SMALL_STATE(1575)] = 56555, - [SMALL_STATE(1576)] = 56581, - [SMALL_STATE(1577)] = 56607, - [SMALL_STATE(1578)] = 56633, - [SMALL_STATE(1579)] = 56657, - [SMALL_STATE(1580)] = 56673, - [SMALL_STATE(1581)] = 56689, - [SMALL_STATE(1582)] = 56705, - [SMALL_STATE(1583)] = 56727, - [SMALL_STATE(1584)] = 56743, - [SMALL_STATE(1585)] = 56769, - [SMALL_STATE(1586)] = 56785, - [SMALL_STATE(1587)] = 56807, - [SMALL_STATE(1588)] = 56829, - [SMALL_STATE(1589)] = 56855, - [SMALL_STATE(1590)] = 56881, - [SMALL_STATE(1591)] = 56897, - [SMALL_STATE(1592)] = 56913, - [SMALL_STATE(1593)] = 56927, - [SMALL_STATE(1594)] = 56941, - [SMALL_STATE(1595)] = 56955, - [SMALL_STATE(1596)] = 56977, - [SMALL_STATE(1597)] = 56991, - [SMALL_STATE(1598)] = 57017, - [SMALL_STATE(1599)] = 57031, - [SMALL_STATE(1600)] = 57057, - [SMALL_STATE(1601)] = 57081, - [SMALL_STATE(1602)] = 57105, - [SMALL_STATE(1603)] = 57121, - [SMALL_STATE(1604)] = 57147, - [SMALL_STATE(1605)] = 57173, - [SMALL_STATE(1606)] = 57197, - [SMALL_STATE(1607)] = 57223, - [SMALL_STATE(1608)] = 57249, - [SMALL_STATE(1609)] = 57275, - [SMALL_STATE(1610)] = 57297, - [SMALL_STATE(1611)] = 57323, - [SMALL_STATE(1612)] = 57349, - [SMALL_STATE(1613)] = 57375, - [SMALL_STATE(1614)] = 57401, - [SMALL_STATE(1615)] = 57424, - [SMALL_STATE(1616)] = 57447, - [SMALL_STATE(1617)] = 57464, - [SMALL_STATE(1618)] = 57481, - [SMALL_STATE(1619)] = 57504, - [SMALL_STATE(1620)] = 57521, - [SMALL_STATE(1621)] = 57538, - [SMALL_STATE(1622)] = 57561, - [SMALL_STATE(1623)] = 57584, - [SMALL_STATE(1624)] = 57607, - [SMALL_STATE(1625)] = 57624, - [SMALL_STATE(1626)] = 57643, - [SMALL_STATE(1627)] = 57660, - [SMALL_STATE(1628)] = 57683, - [SMALL_STATE(1629)] = 57706, - [SMALL_STATE(1630)] = 57729, - [SMALL_STATE(1631)] = 57752, - [SMALL_STATE(1632)] = 57767, - [SMALL_STATE(1633)] = 57790, - [SMALL_STATE(1634)] = 57807, - [SMALL_STATE(1635)] = 57826, - [SMALL_STATE(1636)] = 57849, - [SMALL_STATE(1637)] = 57872, - [SMALL_STATE(1638)] = 57895, - [SMALL_STATE(1639)] = 57916, - [SMALL_STATE(1640)] = 57939, - [SMALL_STATE(1641)] = 57962, - [SMALL_STATE(1642)] = 57985, - [SMALL_STATE(1643)] = 58008, - [SMALL_STATE(1644)] = 58031, - [SMALL_STATE(1645)] = 58054, - [SMALL_STATE(1646)] = 58071, - [SMALL_STATE(1647)] = 58094, - [SMALL_STATE(1648)] = 58117, - [SMALL_STATE(1649)] = 58140, - [SMALL_STATE(1650)] = 58157, - [SMALL_STATE(1651)] = 58176, - [SMALL_STATE(1652)] = 58199, - [SMALL_STATE(1653)] = 58222, - [SMALL_STATE(1654)] = 58239, - [SMALL_STATE(1655)] = 58256, - [SMALL_STATE(1656)] = 58279, - [SMALL_STATE(1657)] = 58296, - [SMALL_STATE(1658)] = 58319, - [SMALL_STATE(1659)] = 58342, - [SMALL_STATE(1660)] = 58365, - [SMALL_STATE(1661)] = 58388, - [SMALL_STATE(1662)] = 58411, - [SMALL_STATE(1663)] = 58434, - [SMALL_STATE(1664)] = 58457, - [SMALL_STATE(1665)] = 58474, - [SMALL_STATE(1666)] = 58497, - [SMALL_STATE(1667)] = 58520, - [SMALL_STATE(1668)] = 58535, - [SMALL_STATE(1669)] = 58556, - [SMALL_STATE(1670)] = 58579, - [SMALL_STATE(1671)] = 58602, - [SMALL_STATE(1672)] = 58625, - [SMALL_STATE(1673)] = 58648, - [SMALL_STATE(1674)] = 58671, - [SMALL_STATE(1675)] = 58694, - [SMALL_STATE(1676)] = 58717, - [SMALL_STATE(1677)] = 58740, - [SMALL_STATE(1678)] = 58763, - [SMALL_STATE(1679)] = 58786, - [SMALL_STATE(1680)] = 58809, - [SMALL_STATE(1681)] = 58832, - [SMALL_STATE(1682)] = 58855, - [SMALL_STATE(1683)] = 58878, - [SMALL_STATE(1684)] = 58901, - [SMALL_STATE(1685)] = 58924, - [SMALL_STATE(1686)] = 58947, - [SMALL_STATE(1687)] = 58970, - [SMALL_STATE(1688)] = 58993, - [SMALL_STATE(1689)] = 59016, - [SMALL_STATE(1690)] = 59033, - [SMALL_STATE(1691)] = 59056, - [SMALL_STATE(1692)] = 59079, - [SMALL_STATE(1693)] = 59102, - [SMALL_STATE(1694)] = 59125, - [SMALL_STATE(1695)] = 59148, - [SMALL_STATE(1696)] = 59171, - [SMALL_STATE(1697)] = 59194, - [SMALL_STATE(1698)] = 59217, - [SMALL_STATE(1699)] = 59240, - [SMALL_STATE(1700)] = 59257, - [SMALL_STATE(1701)] = 59280, - [SMALL_STATE(1702)] = 59303, - [SMALL_STATE(1703)] = 59326, - [SMALL_STATE(1704)] = 59349, - [SMALL_STATE(1705)] = 59372, - [SMALL_STATE(1706)] = 59395, - [SMALL_STATE(1707)] = 59411, - [SMALL_STATE(1708)] = 59427, - [SMALL_STATE(1709)] = 59439, - [SMALL_STATE(1710)] = 59457, - [SMALL_STATE(1711)] = 59469, - [SMALL_STATE(1712)] = 59487, - [SMALL_STATE(1713)] = 59505, - [SMALL_STATE(1714)] = 59521, - [SMALL_STATE(1715)] = 59541, - [SMALL_STATE(1716)] = 59557, - [SMALL_STATE(1717)] = 59573, - [SMALL_STATE(1718)] = 59589, - [SMALL_STATE(1719)] = 59605, - [SMALL_STATE(1720)] = 59621, - [SMALL_STATE(1721)] = 59633, - [SMALL_STATE(1722)] = 59653, - [SMALL_STATE(1723)] = 59665, - [SMALL_STATE(1724)] = 59677, - [SMALL_STATE(1725)] = 59689, - [SMALL_STATE(1726)] = 59701, - [SMALL_STATE(1727)] = 59713, - [SMALL_STATE(1728)] = 59731, - [SMALL_STATE(1729)] = 59751, - [SMALL_STATE(1730)] = 59769, - [SMALL_STATE(1731)] = 59781, - [SMALL_STATE(1732)] = 59793, - [SMALL_STATE(1733)] = 59805, - [SMALL_STATE(1734)] = 59817, - [SMALL_STATE(1735)] = 59835, - [SMALL_STATE(1736)] = 59851, - [SMALL_STATE(1737)] = 59871, - [SMALL_STATE(1738)] = 59887, - [SMALL_STATE(1739)] = 59901, - [SMALL_STATE(1740)] = 59921, - [SMALL_STATE(1741)] = 59937, - [SMALL_STATE(1742)] = 59955, - [SMALL_STATE(1743)] = 59971, - [SMALL_STATE(1744)] = 59983, - [SMALL_STATE(1745)] = 59995, - [SMALL_STATE(1746)] = 60007, - [SMALL_STATE(1747)] = 60021, - [SMALL_STATE(1748)] = 60033, - [SMALL_STATE(1749)] = 60045, - [SMALL_STATE(1750)] = 60057, - [SMALL_STATE(1751)] = 60073, - [SMALL_STATE(1752)] = 60085, - [SMALL_STATE(1753)] = 60105, - [SMALL_STATE(1754)] = 60123, - [SMALL_STATE(1755)] = 60135, - [SMALL_STATE(1756)] = 60147, - [SMALL_STATE(1757)] = 60164, - [SMALL_STATE(1758)] = 60181, - [SMALL_STATE(1759)] = 60198, - [SMALL_STATE(1760)] = 60215, - [SMALL_STATE(1761)] = 60230, - [SMALL_STATE(1762)] = 60245, - [SMALL_STATE(1763)] = 60262, - [SMALL_STATE(1764)] = 60279, - [SMALL_STATE(1765)] = 60292, - [SMALL_STATE(1766)] = 60305, - [SMALL_STATE(1767)] = 60322, - [SMALL_STATE(1768)] = 60339, - [SMALL_STATE(1769)] = 60354, - [SMALL_STATE(1770)] = 60371, - [SMALL_STATE(1771)] = 60388, - [SMALL_STATE(1772)] = 60405, - [SMALL_STATE(1773)] = 60420, - [SMALL_STATE(1774)] = 60437, - [SMALL_STATE(1775)] = 60452, - [SMALL_STATE(1776)] = 60469, - [SMALL_STATE(1777)] = 60486, - [SMALL_STATE(1778)] = 60503, - [SMALL_STATE(1779)] = 60520, - [SMALL_STATE(1780)] = 60537, - [SMALL_STATE(1781)] = 60554, - [SMALL_STATE(1782)] = 60571, - [SMALL_STATE(1783)] = 60586, - [SMALL_STATE(1784)] = 60603, - [SMALL_STATE(1785)] = 60620, - [SMALL_STATE(1786)] = 60635, - [SMALL_STATE(1787)] = 60652, - [SMALL_STATE(1788)] = 60669, - [SMALL_STATE(1789)] = 60686, - [SMALL_STATE(1790)] = 60703, - [SMALL_STATE(1791)] = 60718, - [SMALL_STATE(1792)] = 60735, - [SMALL_STATE(1793)] = 60752, - [SMALL_STATE(1794)] = 60769, - [SMALL_STATE(1795)] = 60786, - [SMALL_STATE(1796)] = 60801, - [SMALL_STATE(1797)] = 60814, - [SMALL_STATE(1798)] = 60829, - [SMALL_STATE(1799)] = 60846, - [SMALL_STATE(1800)] = 60859, - [SMALL_STATE(1801)] = 60876, - [SMALL_STATE(1802)] = 60893, - [SMALL_STATE(1803)] = 60910, - [SMALL_STATE(1804)] = 60927, - [SMALL_STATE(1805)] = 60944, - [SMALL_STATE(1806)] = 60961, - [SMALL_STATE(1807)] = 60978, - [SMALL_STATE(1808)] = 60993, - [SMALL_STATE(1809)] = 61010, - [SMALL_STATE(1810)] = 61025, - [SMALL_STATE(1811)] = 61042, - [SMALL_STATE(1812)] = 61055, - [SMALL_STATE(1813)] = 61070, - [SMALL_STATE(1814)] = 61085, - [SMALL_STATE(1815)] = 61100, - [SMALL_STATE(1816)] = 61117, - [SMALL_STATE(1817)] = 61134, - [SMALL_STATE(1818)] = 61151, - [SMALL_STATE(1819)] = 61168, - [SMALL_STATE(1820)] = 61185, - [SMALL_STATE(1821)] = 61202, - [SMALL_STATE(1822)] = 61219, - [SMALL_STATE(1823)] = 61236, - [SMALL_STATE(1824)] = 61251, - [SMALL_STATE(1825)] = 61266, - [SMALL_STATE(1826)] = 61283, - [SMALL_STATE(1827)] = 61300, - [SMALL_STATE(1828)] = 61315, - [SMALL_STATE(1829)] = 61332, - [SMALL_STATE(1830)] = 61349, - [SMALL_STATE(1831)] = 61366, - [SMALL_STATE(1832)] = 61379, - [SMALL_STATE(1833)] = 61396, - [SMALL_STATE(1834)] = 61413, - [SMALL_STATE(1835)] = 61426, - [SMALL_STATE(1836)] = 61443, - [SMALL_STATE(1837)] = 61456, - [SMALL_STATE(1838)] = 61473, - [SMALL_STATE(1839)] = 61488, - [SMALL_STATE(1840)] = 61505, - [SMALL_STATE(1841)] = 61520, - [SMALL_STATE(1842)] = 61535, - [SMALL_STATE(1843)] = 61550, - [SMALL_STATE(1844)] = 61565, - [SMALL_STATE(1845)] = 61582, - [SMALL_STATE(1846)] = 61599, - [SMALL_STATE(1847)] = 61616, - [SMALL_STATE(1848)] = 61631, - [SMALL_STATE(1849)] = 61648, - [SMALL_STATE(1850)] = 61665, - [SMALL_STATE(1851)] = 61682, - [SMALL_STATE(1852)] = 61699, - [SMALL_STATE(1853)] = 61714, - [SMALL_STATE(1854)] = 61729, - [SMALL_STATE(1855)] = 61746, - [SMALL_STATE(1856)] = 61759, - [SMALL_STATE(1857)] = 61772, - [SMALL_STATE(1858)] = 61784, - [SMALL_STATE(1859)] = 61798, - [SMALL_STATE(1860)] = 61812, - [SMALL_STATE(1861)] = 61824, - [SMALL_STATE(1862)] = 61838, - [SMALL_STATE(1863)] = 61852, - [SMALL_STATE(1864)] = 61866, - [SMALL_STATE(1865)] = 61880, - [SMALL_STATE(1866)] = 61894, - [SMALL_STATE(1867)] = 61908, - [SMALL_STATE(1868)] = 61918, - [SMALL_STATE(1869)] = 61928, - [SMALL_STATE(1870)] = 61942, - [SMALL_STATE(1871)] = 61956, - [SMALL_STATE(1872)] = 61970, - [SMALL_STATE(1873)] = 61980, - [SMALL_STATE(1874)] = 61994, - [SMALL_STATE(1875)] = 62008, - [SMALL_STATE(1876)] = 62018, - [SMALL_STATE(1877)] = 62030, - [SMALL_STATE(1878)] = 62042, - [SMALL_STATE(1879)] = 62056, - [SMALL_STATE(1880)] = 62070, - [SMALL_STATE(1881)] = 62084, - [SMALL_STATE(1882)] = 62098, - [SMALL_STATE(1883)] = 62112, - [SMALL_STATE(1884)] = 62126, - [SMALL_STATE(1885)] = 62136, - [SMALL_STATE(1886)] = 62150, - [SMALL_STATE(1887)] = 62162, - [SMALL_STATE(1888)] = 62172, - [SMALL_STATE(1889)] = 62186, - [SMALL_STATE(1890)] = 62200, - [SMALL_STATE(1891)] = 62214, - [SMALL_STATE(1892)] = 62228, - [SMALL_STATE(1893)] = 62242, - [SMALL_STATE(1894)] = 62254, - [SMALL_STATE(1895)] = 62268, - [SMALL_STATE(1896)] = 62282, - [SMALL_STATE(1897)] = 62296, - [SMALL_STATE(1898)] = 62306, - [SMALL_STATE(1899)] = 62320, - [SMALL_STATE(1900)] = 62332, - [SMALL_STATE(1901)] = 62346, - [SMALL_STATE(1902)] = 62360, - [SMALL_STATE(1903)] = 62372, - [SMALL_STATE(1904)] = 62386, - [SMALL_STATE(1905)] = 62400, - [SMALL_STATE(1906)] = 62410, - [SMALL_STATE(1907)] = 62424, - [SMALL_STATE(1908)] = 62438, - [SMALL_STATE(1909)] = 62450, - [SMALL_STATE(1910)] = 62462, - [SMALL_STATE(1911)] = 62476, - [SMALL_STATE(1912)] = 62488, - [SMALL_STATE(1913)] = 62502, - [SMALL_STATE(1914)] = 62514, - [SMALL_STATE(1915)] = 62526, - [SMALL_STATE(1916)] = 62540, - [SMALL_STATE(1917)] = 62554, - [SMALL_STATE(1918)] = 62568, - [SMALL_STATE(1919)] = 62582, - [SMALL_STATE(1920)] = 62596, - [SMALL_STATE(1921)] = 62610, - [SMALL_STATE(1922)] = 62622, - [SMALL_STATE(1923)] = 62636, - [SMALL_STATE(1924)] = 62648, - [SMALL_STATE(1925)] = 62662, - [SMALL_STATE(1926)] = 62676, - [SMALL_STATE(1927)] = 62690, - [SMALL_STATE(1928)] = 62702, - [SMALL_STATE(1929)] = 62716, - [SMALL_STATE(1930)] = 62730, - [SMALL_STATE(1931)] = 62742, - [SMALL_STATE(1932)] = 62756, - [SMALL_STATE(1933)] = 62768, - [SMALL_STATE(1934)] = 62782, - [SMALL_STATE(1935)] = 62796, - [SMALL_STATE(1936)] = 62810, - [SMALL_STATE(1937)] = 62824, - [SMALL_STATE(1938)] = 62836, - [SMALL_STATE(1939)] = 62850, - [SMALL_STATE(1940)] = 62864, - [SMALL_STATE(1941)] = 62878, - [SMALL_STATE(1942)] = 62892, - [SMALL_STATE(1943)] = 62904, - [SMALL_STATE(1944)] = 62916, - [SMALL_STATE(1945)] = 62930, - [SMALL_STATE(1946)] = 62942, - [SMALL_STATE(1947)] = 62956, - [SMALL_STATE(1948)] = 62968, - [SMALL_STATE(1949)] = 62982, - [SMALL_STATE(1950)] = 62996, - [SMALL_STATE(1951)] = 63010, - [SMALL_STATE(1952)] = 63024, - [SMALL_STATE(1953)] = 63038, - [SMALL_STATE(1954)] = 63052, - [SMALL_STATE(1955)] = 63064, - [SMALL_STATE(1956)] = 63078, - [SMALL_STATE(1957)] = 63092, - [SMALL_STATE(1958)] = 63106, - [SMALL_STATE(1959)] = 63120, - [SMALL_STATE(1960)] = 63134, - [SMALL_STATE(1961)] = 63148, - [SMALL_STATE(1962)] = 63162, - [SMALL_STATE(1963)] = 63174, - [SMALL_STATE(1964)] = 63188, - [SMALL_STATE(1965)] = 63202, - [SMALL_STATE(1966)] = 63216, - [SMALL_STATE(1967)] = 63230, - [SMALL_STATE(1968)] = 63244, - [SMALL_STATE(1969)] = 63254, - [SMALL_STATE(1970)] = 63268, - [SMALL_STATE(1971)] = 63278, - [SMALL_STATE(1972)] = 63292, - [SMALL_STATE(1973)] = 63306, - [SMALL_STATE(1974)] = 63320, - [SMALL_STATE(1975)] = 63334, - [SMALL_STATE(1976)] = 63348, - [SMALL_STATE(1977)] = 63362, - [SMALL_STATE(1978)] = 63376, - [SMALL_STATE(1979)] = 63390, - [SMALL_STATE(1980)] = 63404, - [SMALL_STATE(1981)] = 63418, - [SMALL_STATE(1982)] = 63432, - [SMALL_STATE(1983)] = 63446, - [SMALL_STATE(1984)] = 63460, - [SMALL_STATE(1985)] = 63474, - [SMALL_STATE(1986)] = 63488, - [SMALL_STATE(1987)] = 63502, - [SMALL_STATE(1988)] = 63512, - [SMALL_STATE(1989)] = 63526, - [SMALL_STATE(1990)] = 63540, - [SMALL_STATE(1991)] = 63550, - [SMALL_STATE(1992)] = 63564, - [SMALL_STATE(1993)] = 63578, - [SMALL_STATE(1994)] = 63592, - [SMALL_STATE(1995)] = 63604, - [SMALL_STATE(1996)] = 63618, - [SMALL_STATE(1997)] = 63632, - [SMALL_STATE(1998)] = 63646, - [SMALL_STATE(1999)] = 63660, - [SMALL_STATE(2000)] = 63674, - [SMALL_STATE(2001)] = 63688, - [SMALL_STATE(2002)] = 63702, - [SMALL_STATE(2003)] = 63716, - [SMALL_STATE(2004)] = 63730, - [SMALL_STATE(2005)] = 63744, - [SMALL_STATE(2006)] = 63756, - [SMALL_STATE(2007)] = 63770, - [SMALL_STATE(2008)] = 63782, - [SMALL_STATE(2009)] = 63794, - [SMALL_STATE(2010)] = 63808, - [SMALL_STATE(2011)] = 63822, - [SMALL_STATE(2012)] = 63836, - [SMALL_STATE(2013)] = 63850, - [SMALL_STATE(2014)] = 63864, - [SMALL_STATE(2015)] = 63876, - [SMALL_STATE(2016)] = 63888, - [SMALL_STATE(2017)] = 63902, - [SMALL_STATE(2018)] = 63916, - [SMALL_STATE(2019)] = 63930, - [SMALL_STATE(2020)] = 63944, - [SMALL_STATE(2021)] = 63958, - [SMALL_STATE(2022)] = 63972, - [SMALL_STATE(2023)] = 63986, - [SMALL_STATE(2024)] = 64000, - [SMALL_STATE(2025)] = 64014, - [SMALL_STATE(2026)] = 64026, - [SMALL_STATE(2027)] = 64040, - [SMALL_STATE(2028)] = 64050, - [SMALL_STATE(2029)] = 64062, - [SMALL_STATE(2030)] = 64076, - [SMALL_STATE(2031)] = 64090, - [SMALL_STATE(2032)] = 64104, - [SMALL_STATE(2033)] = 64118, - [SMALL_STATE(2034)] = 64132, - [SMALL_STATE(2035)] = 64146, - [SMALL_STATE(2036)] = 64158, - [SMALL_STATE(2037)] = 64172, - [SMALL_STATE(2038)] = 64186, - [SMALL_STATE(2039)] = 64200, - [SMALL_STATE(2040)] = 64214, - [SMALL_STATE(2041)] = 64228, - [SMALL_STATE(2042)] = 64242, - [SMALL_STATE(2043)] = 64256, - [SMALL_STATE(2044)] = 64270, - [SMALL_STATE(2045)] = 64284, - [SMALL_STATE(2046)] = 64298, - [SMALL_STATE(2047)] = 64312, - [SMALL_STATE(2048)] = 64326, - [SMALL_STATE(2049)] = 64340, - [SMALL_STATE(2050)] = 64354, - [SMALL_STATE(2051)] = 64364, - [SMALL_STATE(2052)] = 64378, - [SMALL_STATE(2053)] = 64392, - [SMALL_STATE(2054)] = 64406, - [SMALL_STATE(2055)] = 64420, - [SMALL_STATE(2056)] = 64434, - [SMALL_STATE(2057)] = 64448, - [SMALL_STATE(2058)] = 64460, - [SMALL_STATE(2059)] = 64474, - [SMALL_STATE(2060)] = 64488, - [SMALL_STATE(2061)] = 64502, - [SMALL_STATE(2062)] = 64516, - [SMALL_STATE(2063)] = 64530, - [SMALL_STATE(2064)] = 64544, - [SMALL_STATE(2065)] = 64558, - [SMALL_STATE(2066)] = 64572, - [SMALL_STATE(2067)] = 64586, - [SMALL_STATE(2068)] = 64600, - [SMALL_STATE(2069)] = 64614, - [SMALL_STATE(2070)] = 64628, - [SMALL_STATE(2071)] = 64642, - [SMALL_STATE(2072)] = 64656, - [SMALL_STATE(2073)] = 64670, - [SMALL_STATE(2074)] = 64684, - [SMALL_STATE(2075)] = 64698, - [SMALL_STATE(2076)] = 64712, - [SMALL_STATE(2077)] = 64726, - [SMALL_STATE(2078)] = 64738, - [SMALL_STATE(2079)] = 64752, - [SMALL_STATE(2080)] = 64766, - [SMALL_STATE(2081)] = 64780, - [SMALL_STATE(2082)] = 64794, - [SMALL_STATE(2083)] = 64804, - [SMALL_STATE(2084)] = 64818, - [SMALL_STATE(2085)] = 64832, - [SMALL_STATE(2086)] = 64846, - [SMALL_STATE(2087)] = 64860, - [SMALL_STATE(2088)] = 64874, - [SMALL_STATE(2089)] = 64888, - [SMALL_STATE(2090)] = 64902, - [SMALL_STATE(2091)] = 64912, - [SMALL_STATE(2092)] = 64926, - [SMALL_STATE(2093)] = 64940, - [SMALL_STATE(2094)] = 64950, - [SMALL_STATE(2095)] = 64960, - [SMALL_STATE(2096)] = 64974, - [SMALL_STATE(2097)] = 64988, - [SMALL_STATE(2098)] = 65002, - [SMALL_STATE(2099)] = 65012, - [SMALL_STATE(2100)] = 65022, - [SMALL_STATE(2101)] = 65032, - [SMALL_STATE(2102)] = 65046, - [SMALL_STATE(2103)] = 65060, - [SMALL_STATE(2104)] = 65070, - [SMALL_STATE(2105)] = 65084, - [SMALL_STATE(2106)] = 65098, - [SMALL_STATE(2107)] = 65112, - [SMALL_STATE(2108)] = 65122, - [SMALL_STATE(2109)] = 65136, - [SMALL_STATE(2110)] = 65146, - [SMALL_STATE(2111)] = 65160, - [SMALL_STATE(2112)] = 65170, - [SMALL_STATE(2113)] = 65180, - [SMALL_STATE(2114)] = 65190, - [SMALL_STATE(2115)] = 65204, - [SMALL_STATE(2116)] = 65218, - [SMALL_STATE(2117)] = 65228, - [SMALL_STATE(2118)] = 65242, - [SMALL_STATE(2119)] = 65252, - [SMALL_STATE(2120)] = 65266, - [SMALL_STATE(2121)] = 65276, - [SMALL_STATE(2122)] = 65290, - [SMALL_STATE(2123)] = 65301, - [SMALL_STATE(2124)] = 65312, - [SMALL_STATE(2125)] = 65323, - [SMALL_STATE(2126)] = 65332, - [SMALL_STATE(2127)] = 65343, - [SMALL_STATE(2128)] = 65354, - [SMALL_STATE(2129)] = 65365, - [SMALL_STATE(2130)] = 65376, - [SMALL_STATE(2131)] = 65387, - [SMALL_STATE(2132)] = 65398, - [SMALL_STATE(2133)] = 65409, - [SMALL_STATE(2134)] = 65420, - [SMALL_STATE(2135)] = 65431, - [SMALL_STATE(2136)] = 65442, - [SMALL_STATE(2137)] = 65453, - [SMALL_STATE(2138)] = 65464, - [SMALL_STATE(2139)] = 65475, - [SMALL_STATE(2140)] = 65486, - [SMALL_STATE(2141)] = 65497, - [SMALL_STATE(2142)] = 65508, - [SMALL_STATE(2143)] = 65519, - [SMALL_STATE(2144)] = 65530, - [SMALL_STATE(2145)] = 65541, - [SMALL_STATE(2146)] = 65552, - [SMALL_STATE(2147)] = 65563, - [SMALL_STATE(2148)] = 65574, - [SMALL_STATE(2149)] = 65585, - [SMALL_STATE(2150)] = 65596, - [SMALL_STATE(2151)] = 65607, - [SMALL_STATE(2152)] = 65618, - [SMALL_STATE(2153)] = 65629, - [SMALL_STATE(2154)] = 65640, - [SMALL_STATE(2155)] = 65649, - [SMALL_STATE(2156)] = 65660, - [SMALL_STATE(2157)] = 65671, - [SMALL_STATE(2158)] = 65682, - [SMALL_STATE(2159)] = 65693, - [SMALL_STATE(2160)] = 65704, - [SMALL_STATE(2161)] = 65713, - [SMALL_STATE(2162)] = 65724, - [SMALL_STATE(2163)] = 65735, - [SMALL_STATE(2164)] = 65746, - [SMALL_STATE(2165)] = 65755, - [SMALL_STATE(2166)] = 65766, - [SMALL_STATE(2167)] = 65777, - [SMALL_STATE(2168)] = 65788, - [SMALL_STATE(2169)] = 65799, - [SMALL_STATE(2170)] = 65810, - [SMALL_STATE(2171)] = 65821, - [SMALL_STATE(2172)] = 65832, - [SMALL_STATE(2173)] = 65843, - [SMALL_STATE(2174)] = 65854, - [SMALL_STATE(2175)] = 65865, - [SMALL_STATE(2176)] = 65876, - [SMALL_STATE(2177)] = 65887, - [SMALL_STATE(2178)] = 65898, - [SMALL_STATE(2179)] = 65907, - [SMALL_STATE(2180)] = 65916, - [SMALL_STATE(2181)] = 65927, - [SMALL_STATE(2182)] = 65938, - [SMALL_STATE(2183)] = 65949, - [SMALL_STATE(2184)] = 65960, - [SMALL_STATE(2185)] = 65969, - [SMALL_STATE(2186)] = 65980, - [SMALL_STATE(2187)] = 65991, - [SMALL_STATE(2188)] = 66002, - [SMALL_STATE(2189)] = 66013, - [SMALL_STATE(2190)] = 66024, - [SMALL_STATE(2191)] = 66035, - [SMALL_STATE(2192)] = 66044, - [SMALL_STATE(2193)] = 66055, - [SMALL_STATE(2194)] = 66066, - [SMALL_STATE(2195)] = 66077, - [SMALL_STATE(2196)] = 66088, - [SMALL_STATE(2197)] = 66099, - [SMALL_STATE(2198)] = 66110, - [SMALL_STATE(2199)] = 66121, - [SMALL_STATE(2200)] = 66132, - [SMALL_STATE(2201)] = 66143, - [SMALL_STATE(2202)] = 66154, - [SMALL_STATE(2203)] = 66165, - [SMALL_STATE(2204)] = 66176, - [SMALL_STATE(2205)] = 66187, - [SMALL_STATE(2206)] = 66198, - [SMALL_STATE(2207)] = 66209, - [SMALL_STATE(2208)] = 66220, - [SMALL_STATE(2209)] = 66231, - [SMALL_STATE(2210)] = 66242, - [SMALL_STATE(2211)] = 66253, - [SMALL_STATE(2212)] = 66264, - [SMALL_STATE(2213)] = 66275, - [SMALL_STATE(2214)] = 66286, - [SMALL_STATE(2215)] = 66295, - [SMALL_STATE(2216)] = 66306, - [SMALL_STATE(2217)] = 66317, - [SMALL_STATE(2218)] = 66328, - [SMALL_STATE(2219)] = 66339, - [SMALL_STATE(2220)] = 66350, - [SMALL_STATE(2221)] = 66361, - [SMALL_STATE(2222)] = 66372, - [SMALL_STATE(2223)] = 66383, - [SMALL_STATE(2224)] = 66392, - [SMALL_STATE(2225)] = 66403, - [SMALL_STATE(2226)] = 66414, - [SMALL_STATE(2227)] = 66425, - [SMALL_STATE(2228)] = 66436, - [SMALL_STATE(2229)] = 66447, - [SMALL_STATE(2230)] = 66458, - [SMALL_STATE(2231)] = 66469, - [SMALL_STATE(2232)] = 66480, - [SMALL_STATE(2233)] = 66491, - [SMALL_STATE(2234)] = 66502, - [SMALL_STATE(2235)] = 66513, - [SMALL_STATE(2236)] = 66524, - [SMALL_STATE(2237)] = 66535, - [SMALL_STATE(2238)] = 66544, - [SMALL_STATE(2239)] = 66555, - [SMALL_STATE(2240)] = 66566, - [SMALL_STATE(2241)] = 66577, - [SMALL_STATE(2242)] = 66588, - [SMALL_STATE(2243)] = 66599, - [SMALL_STATE(2244)] = 66610, - [SMALL_STATE(2245)] = 66621, - [SMALL_STATE(2246)] = 66632, - [SMALL_STATE(2247)] = 66643, - [SMALL_STATE(2248)] = 66654, - [SMALL_STATE(2249)] = 66665, - [SMALL_STATE(2250)] = 66676, - [SMALL_STATE(2251)] = 66687, - [SMALL_STATE(2252)] = 66698, - [SMALL_STATE(2253)] = 66709, - [SMALL_STATE(2254)] = 66718, - [SMALL_STATE(2255)] = 66729, - [SMALL_STATE(2256)] = 66738, - [SMALL_STATE(2257)] = 66749, - [SMALL_STATE(2258)] = 66760, - [SMALL_STATE(2259)] = 66771, - [SMALL_STATE(2260)] = 66780, - [SMALL_STATE(2261)] = 66789, - [SMALL_STATE(2262)] = 66798, - [SMALL_STATE(2263)] = 66809, - [SMALL_STATE(2264)] = 66820, - [SMALL_STATE(2265)] = 66831, - [SMALL_STATE(2266)] = 66840, - [SMALL_STATE(2267)] = 66851, - [SMALL_STATE(2268)] = 66862, - [SMALL_STATE(2269)] = 66873, - [SMALL_STATE(2270)] = 66882, - [SMALL_STATE(2271)] = 66891, - [SMALL_STATE(2272)] = 66900, - [SMALL_STATE(2273)] = 66909, - [SMALL_STATE(2274)] = 66920, - [SMALL_STATE(2275)] = 66931, - [SMALL_STATE(2276)] = 66942, - [SMALL_STATE(2277)] = 66953, - [SMALL_STATE(2278)] = 66964, - [SMALL_STATE(2279)] = 66975, - [SMALL_STATE(2280)] = 66984, - [SMALL_STATE(2281)] = 66995, - [SMALL_STATE(2282)] = 67006, - [SMALL_STATE(2283)] = 67015, - [SMALL_STATE(2284)] = 67026, - [SMALL_STATE(2285)] = 67037, - [SMALL_STATE(2286)] = 67048, - [SMALL_STATE(2287)] = 67057, - [SMALL_STATE(2288)] = 67066, - [SMALL_STATE(2289)] = 67077, - [SMALL_STATE(2290)] = 67088, - [SMALL_STATE(2291)] = 67099, - [SMALL_STATE(2292)] = 67110, - [SMALL_STATE(2293)] = 67121, - [SMALL_STATE(2294)] = 67132, - [SMALL_STATE(2295)] = 67141, - [SMALL_STATE(2296)] = 67152, - [SMALL_STATE(2297)] = 67163, - [SMALL_STATE(2298)] = 67174, - [SMALL_STATE(2299)] = 67185, - [SMALL_STATE(2300)] = 67194, - [SMALL_STATE(2301)] = 67205, - [SMALL_STATE(2302)] = 67216, - [SMALL_STATE(2303)] = 67227, - [SMALL_STATE(2304)] = 67238, - [SMALL_STATE(2305)] = 67249, - [SMALL_STATE(2306)] = 67258, - [SMALL_STATE(2307)] = 67269, - [SMALL_STATE(2308)] = 67280, - [SMALL_STATE(2309)] = 67288, - [SMALL_STATE(2310)] = 67296, - [SMALL_STATE(2311)] = 67304, - [SMALL_STATE(2312)] = 67312, - [SMALL_STATE(2313)] = 67320, - [SMALL_STATE(2314)] = 67328, - [SMALL_STATE(2315)] = 67336, - [SMALL_STATE(2316)] = 67344, - [SMALL_STATE(2317)] = 67352, - [SMALL_STATE(2318)] = 67360, - [SMALL_STATE(2319)] = 67368, - [SMALL_STATE(2320)] = 67376, - [SMALL_STATE(2321)] = 67384, - [SMALL_STATE(2322)] = 67392, - [SMALL_STATE(2323)] = 67400, - [SMALL_STATE(2324)] = 67408, - [SMALL_STATE(2325)] = 67416, - [SMALL_STATE(2326)] = 67424, - [SMALL_STATE(2327)] = 67432, - [SMALL_STATE(2328)] = 67440, - [SMALL_STATE(2329)] = 67448, - [SMALL_STATE(2330)] = 67456, - [SMALL_STATE(2331)] = 67464, - [SMALL_STATE(2332)] = 67472, - [SMALL_STATE(2333)] = 67480, - [SMALL_STATE(2334)] = 67488, - [SMALL_STATE(2335)] = 67496, - [SMALL_STATE(2336)] = 67504, - [SMALL_STATE(2337)] = 67512, - [SMALL_STATE(2338)] = 67520, - [SMALL_STATE(2339)] = 67528, - [SMALL_STATE(2340)] = 67536, - [SMALL_STATE(2341)] = 67544, - [SMALL_STATE(2342)] = 67552, - [SMALL_STATE(2343)] = 67560, - [SMALL_STATE(2344)] = 67568, - [SMALL_STATE(2345)] = 67576, - [SMALL_STATE(2346)] = 67584, - [SMALL_STATE(2347)] = 67592, - [SMALL_STATE(2348)] = 67600, - [SMALL_STATE(2349)] = 67608, - [SMALL_STATE(2350)] = 67616, - [SMALL_STATE(2351)] = 67624, - [SMALL_STATE(2352)] = 67632, - [SMALL_STATE(2353)] = 67640, - [SMALL_STATE(2354)] = 67648, - [SMALL_STATE(2355)] = 67656, - [SMALL_STATE(2356)] = 67664, - [SMALL_STATE(2357)] = 67672, - [SMALL_STATE(2358)] = 67680, - [SMALL_STATE(2359)] = 67688, - [SMALL_STATE(2360)] = 67696, - [SMALL_STATE(2361)] = 67704, - [SMALL_STATE(2362)] = 67712, - [SMALL_STATE(2363)] = 67720, - [SMALL_STATE(2364)] = 67728, - [SMALL_STATE(2365)] = 67736, - [SMALL_STATE(2366)] = 67744, - [SMALL_STATE(2367)] = 67752, - [SMALL_STATE(2368)] = 67760, - [SMALL_STATE(2369)] = 67768, - [SMALL_STATE(2370)] = 67776, - [SMALL_STATE(2371)] = 67784, - [SMALL_STATE(2372)] = 67792, - [SMALL_STATE(2373)] = 67800, - [SMALL_STATE(2374)] = 67808, - [SMALL_STATE(2375)] = 67816, - [SMALL_STATE(2376)] = 67824, - [SMALL_STATE(2377)] = 67832, - [SMALL_STATE(2378)] = 67840, - [SMALL_STATE(2379)] = 67848, - [SMALL_STATE(2380)] = 67856, - [SMALL_STATE(2381)] = 67864, - [SMALL_STATE(2382)] = 67872, - [SMALL_STATE(2383)] = 67880, - [SMALL_STATE(2384)] = 67888, - [SMALL_STATE(2385)] = 67896, - [SMALL_STATE(2386)] = 67904, - [SMALL_STATE(2387)] = 67912, - [SMALL_STATE(2388)] = 67920, - [SMALL_STATE(2389)] = 67928, - [SMALL_STATE(2390)] = 67936, - [SMALL_STATE(2391)] = 67944, - [SMALL_STATE(2392)] = 67952, - [SMALL_STATE(2393)] = 67960, - [SMALL_STATE(2394)] = 67968, - [SMALL_STATE(2395)] = 67976, - [SMALL_STATE(2396)] = 67984, - [SMALL_STATE(2397)] = 67992, - [SMALL_STATE(2398)] = 68000, - [SMALL_STATE(2399)] = 68008, - [SMALL_STATE(2400)] = 68016, - [SMALL_STATE(2401)] = 68024, - [SMALL_STATE(2402)] = 68032, - [SMALL_STATE(2403)] = 68040, - [SMALL_STATE(2404)] = 68048, - [SMALL_STATE(2405)] = 68056, - [SMALL_STATE(2406)] = 68064, - [SMALL_STATE(2407)] = 68072, - [SMALL_STATE(2408)] = 68080, - [SMALL_STATE(2409)] = 68088, - [SMALL_STATE(2410)] = 68096, - [SMALL_STATE(2411)] = 68104, - [SMALL_STATE(2412)] = 68112, - [SMALL_STATE(2413)] = 68120, - [SMALL_STATE(2414)] = 68128, - [SMALL_STATE(2415)] = 68136, - [SMALL_STATE(2416)] = 68144, - [SMALL_STATE(2417)] = 68152, - [SMALL_STATE(2418)] = 68160, - [SMALL_STATE(2419)] = 68168, - [SMALL_STATE(2420)] = 68176, - [SMALL_STATE(2421)] = 68184, - [SMALL_STATE(2422)] = 68192, - [SMALL_STATE(2423)] = 68200, - [SMALL_STATE(2424)] = 68208, - [SMALL_STATE(2425)] = 68216, - [SMALL_STATE(2426)] = 68224, - [SMALL_STATE(2427)] = 68232, - [SMALL_STATE(2428)] = 68240, - [SMALL_STATE(2429)] = 68248, - [SMALL_STATE(2430)] = 68256, - [SMALL_STATE(2431)] = 68264, - [SMALL_STATE(2432)] = 68272, - [SMALL_STATE(2433)] = 68280, - [SMALL_STATE(2434)] = 68288, - [SMALL_STATE(2435)] = 68296, - [SMALL_STATE(2436)] = 68304, - [SMALL_STATE(2437)] = 68312, - [SMALL_STATE(2438)] = 68320, - [SMALL_STATE(2439)] = 68328, - [SMALL_STATE(2440)] = 68336, - [SMALL_STATE(2441)] = 68344, - [SMALL_STATE(2442)] = 68352, - [SMALL_STATE(2443)] = 68360, - [SMALL_STATE(2444)] = 68368, - [SMALL_STATE(2445)] = 68376, - [SMALL_STATE(2446)] = 68384, - [SMALL_STATE(2447)] = 68392, - [SMALL_STATE(2448)] = 68400, - [SMALL_STATE(2449)] = 68408, - [SMALL_STATE(2450)] = 68416, - [SMALL_STATE(2451)] = 68424, - [SMALL_STATE(2452)] = 68432, - [SMALL_STATE(2453)] = 68440, - [SMALL_STATE(2454)] = 68448, - [SMALL_STATE(2455)] = 68456, - [SMALL_STATE(2456)] = 68464, - [SMALL_STATE(2457)] = 68472, - [SMALL_STATE(2458)] = 68480, - [SMALL_STATE(2459)] = 68488, - [SMALL_STATE(2460)] = 68496, - [SMALL_STATE(2461)] = 68504, - [SMALL_STATE(2462)] = 68512, - [SMALL_STATE(2463)] = 68520, - [SMALL_STATE(2464)] = 68528, - [SMALL_STATE(2465)] = 68536, - [SMALL_STATE(2466)] = 68544, - [SMALL_STATE(2467)] = 68552, - [SMALL_STATE(2468)] = 68560, - [SMALL_STATE(2469)] = 68568, - [SMALL_STATE(2470)] = 68576, - [SMALL_STATE(2471)] = 68584, - [SMALL_STATE(2472)] = 68592, - [SMALL_STATE(2473)] = 68600, - [SMALL_STATE(2474)] = 68608, - [SMALL_STATE(2475)] = 68616, - [SMALL_STATE(2476)] = 68624, - [SMALL_STATE(2477)] = 68632, - [SMALL_STATE(2478)] = 68640, - [SMALL_STATE(2479)] = 68648, - [SMALL_STATE(2480)] = 68656, - [SMALL_STATE(2481)] = 68664, - [SMALL_STATE(2482)] = 68672, - [SMALL_STATE(2483)] = 68680, - [SMALL_STATE(2484)] = 68688, - [SMALL_STATE(2485)] = 68696, - [SMALL_STATE(2486)] = 68704, - [SMALL_STATE(2487)] = 68712, - [SMALL_STATE(2488)] = 68720, - [SMALL_STATE(2489)] = 68728, - [SMALL_STATE(2490)] = 68736, - [SMALL_STATE(2491)] = 68744, - [SMALL_STATE(2492)] = 68752, - [SMALL_STATE(2493)] = 68760, - [SMALL_STATE(2494)] = 68768, - [SMALL_STATE(2495)] = 68776, - [SMALL_STATE(2496)] = 68784, - [SMALL_STATE(2497)] = 68792, - [SMALL_STATE(2498)] = 68800, - [SMALL_STATE(2499)] = 68808, - [SMALL_STATE(2500)] = 68816, - [SMALL_STATE(2501)] = 68824, - [SMALL_STATE(2502)] = 68832, - [SMALL_STATE(2503)] = 68840, - [SMALL_STATE(2504)] = 68848, - [SMALL_STATE(2505)] = 68856, - [SMALL_STATE(2506)] = 68864, - [SMALL_STATE(2507)] = 68872, - [SMALL_STATE(2508)] = 68880, - [SMALL_STATE(2509)] = 68888, - [SMALL_STATE(2510)] = 68896, - [SMALL_STATE(2511)] = 68904, - [SMALL_STATE(2512)] = 68912, - [SMALL_STATE(2513)] = 68920, - [SMALL_STATE(2514)] = 68928, - [SMALL_STATE(2515)] = 68936, - [SMALL_STATE(2516)] = 68944, - [SMALL_STATE(2517)] = 68952, - [SMALL_STATE(2518)] = 68960, - [SMALL_STATE(2519)] = 68968, - [SMALL_STATE(2520)] = 68976, - [SMALL_STATE(2521)] = 68984, - [SMALL_STATE(2522)] = 68992, - [SMALL_STATE(2523)] = 69000, - [SMALL_STATE(2524)] = 69008, - [SMALL_STATE(2525)] = 69016, - [SMALL_STATE(2526)] = 69024, - [SMALL_STATE(2527)] = 69032, - [SMALL_STATE(2528)] = 69040, - [SMALL_STATE(2529)] = 69048, - [SMALL_STATE(2530)] = 69056, - [SMALL_STATE(2531)] = 69064, - [SMALL_STATE(2532)] = 69072, - [SMALL_STATE(2533)] = 69080, - [SMALL_STATE(2534)] = 69088, - [SMALL_STATE(2535)] = 69096, - [SMALL_STATE(2536)] = 69104, - [SMALL_STATE(2537)] = 69112, - [SMALL_STATE(2538)] = 69120, - [SMALL_STATE(2539)] = 69128, - [SMALL_STATE(2540)] = 69136, + [SMALL_STATE(628)] = 0, + [SMALL_STATE(629)] = 129, + [SMALL_STATE(630)] = 258, + [SMALL_STATE(631)] = 387, + [SMALL_STATE(632)] = 516, + [SMALL_STATE(633)] = 645, + [SMALL_STATE(634)] = 776, + [SMALL_STATE(635)] = 905, + [SMALL_STATE(636)] = 1034, + [SMALL_STATE(637)] = 1163, + [SMALL_STATE(638)] = 1292, + [SMALL_STATE(639)] = 1421, + [SMALL_STATE(640)] = 1550, + [SMALL_STATE(641)] = 1679, + [SMALL_STATE(642)] = 1808, + [SMALL_STATE(643)] = 1937, + [SMALL_STATE(644)] = 2066, + [SMALL_STATE(645)] = 2195, + [SMALL_STATE(646)] = 2324, + [SMALL_STATE(647)] = 2453, + [SMALL_STATE(648)] = 2582, + [SMALL_STATE(649)] = 2711, + [SMALL_STATE(650)] = 2840, + [SMALL_STATE(651)] = 2969, + [SMALL_STATE(652)] = 3098, + [SMALL_STATE(653)] = 3227, + [SMALL_STATE(654)] = 3356, + [SMALL_STATE(655)] = 3485, + [SMALL_STATE(656)] = 3614, + [SMALL_STATE(657)] = 3743, + [SMALL_STATE(658)] = 3872, + [SMALL_STATE(659)] = 4001, + [SMALL_STATE(660)] = 4130, + [SMALL_STATE(661)] = 4259, + [SMALL_STATE(662)] = 4388, + [SMALL_STATE(663)] = 4517, + [SMALL_STATE(664)] = 4646, + [SMALL_STATE(665)] = 4717, + [SMALL_STATE(666)] = 4846, + [SMALL_STATE(667)] = 4975, + [SMALL_STATE(668)] = 5104, + [SMALL_STATE(669)] = 5233, + [SMALL_STATE(670)] = 5362, + [SMALL_STATE(671)] = 5491, + [SMALL_STATE(672)] = 5620, + [SMALL_STATE(673)] = 5749, + [SMALL_STATE(674)] = 5878, + [SMALL_STATE(675)] = 6007, + [SMALL_STATE(676)] = 6136, + [SMALL_STATE(677)] = 6265, + [SMALL_STATE(678)] = 6394, + [SMALL_STATE(679)] = 6523, + [SMALL_STATE(680)] = 6652, + [SMALL_STATE(681)] = 6781, + [SMALL_STATE(682)] = 6910, + [SMALL_STATE(683)] = 7039, + [SMALL_STATE(684)] = 7168, + [SMALL_STATE(685)] = 7297, + [SMALL_STATE(686)] = 7426, + [SMALL_STATE(687)] = 7555, + [SMALL_STATE(688)] = 7684, + [SMALL_STATE(689)] = 7813, + [SMALL_STATE(690)] = 7942, + [SMALL_STATE(691)] = 8071, + [SMALL_STATE(692)] = 8200, + [SMALL_STATE(693)] = 8329, + [SMALL_STATE(694)] = 8458, + [SMALL_STATE(695)] = 8587, + [SMALL_STATE(696)] = 8716, + [SMALL_STATE(697)] = 8845, + [SMALL_STATE(698)] = 8974, + [SMALL_STATE(699)] = 9103, + [SMALL_STATE(700)] = 9232, + [SMALL_STATE(701)] = 9361, + [SMALL_STATE(702)] = 9490, + [SMALL_STATE(703)] = 9619, + [SMALL_STATE(704)] = 9748, + [SMALL_STATE(705)] = 9877, + [SMALL_STATE(706)] = 10006, + [SMALL_STATE(707)] = 10135, + [SMALL_STATE(708)] = 10264, + [SMALL_STATE(709)] = 10393, + [SMALL_STATE(710)] = 10522, + [SMALL_STATE(711)] = 10651, + [SMALL_STATE(712)] = 10780, + [SMALL_STATE(713)] = 10909, + [SMALL_STATE(714)] = 11038, + [SMALL_STATE(715)] = 11167, + [SMALL_STATE(716)] = 11296, + [SMALL_STATE(717)] = 11425, + [SMALL_STATE(718)] = 11554, + [SMALL_STATE(719)] = 11683, + [SMALL_STATE(720)] = 11812, + [SMALL_STATE(721)] = 11941, + [SMALL_STATE(722)] = 12070, + [SMALL_STATE(723)] = 12199, + [SMALL_STATE(724)] = 12328, + [SMALL_STATE(725)] = 12457, + [SMALL_STATE(726)] = 12586, + [SMALL_STATE(727)] = 12715, + [SMALL_STATE(728)] = 12844, + [SMALL_STATE(729)] = 12973, + [SMALL_STATE(730)] = 13102, + [SMALL_STATE(731)] = 13231, + [SMALL_STATE(732)] = 13360, + [SMALL_STATE(733)] = 13489, + [SMALL_STATE(734)] = 13618, + [SMALL_STATE(735)] = 13747, + [SMALL_STATE(736)] = 13876, + [SMALL_STATE(737)] = 14005, + [SMALL_STATE(738)] = 14134, + [SMALL_STATE(739)] = 14200, + [SMALL_STATE(740)] = 14266, + [SMALL_STATE(741)] = 14332, + [SMALL_STATE(742)] = 14398, + [SMALL_STATE(743)] = 14460, + [SMALL_STATE(744)] = 14530, + [SMALL_STATE(745)] = 14597, + [SMALL_STATE(746)] = 14664, + [SMALL_STATE(747)] = 14720, + [SMALL_STATE(748)] = 14784, + [SMALL_STATE(749)] = 14848, + [SMALL_STATE(750)] = 14908, + [SMALL_STATE(751)] = 14968, + [SMALL_STATE(752)] = 15028, + [SMALL_STATE(753)] = 15090, + [SMALL_STATE(754)] = 15154, + [SMALL_STATE(755)] = 15210, + [SMALL_STATE(756)] = 15266, + [SMALL_STATE(757)] = 15330, + [SMALL_STATE(758)] = 15390, + [SMALL_STATE(759)] = 15446, + [SMALL_STATE(760)] = 15502, + [SMALL_STATE(761)] = 15561, + [SMALL_STATE(762)] = 15618, + [SMALL_STATE(763)] = 15675, + [SMALL_STATE(764)] = 15734, + [SMALL_STATE(765)] = 15791, + [SMALL_STATE(766)] = 15850, + [SMALL_STATE(767)] = 15905, + [SMALL_STATE(768)] = 15962, + [SMALL_STATE(769)] = 16016, + [SMALL_STATE(770)] = 16070, + [SMALL_STATE(771)] = 16124, + [SMALL_STATE(772)] = 16178, + [SMALL_STATE(773)] = 16236, + [SMALL_STATE(774)] = 16292, + [SMALL_STATE(775)] = 16346, + [SMALL_STATE(776)] = 16400, + [SMALL_STATE(777)] = 16454, + [SMALL_STATE(778)] = 16508, + [SMALL_STATE(779)] = 16562, + [SMALL_STATE(780)] = 16616, + [SMALL_STATE(781)] = 16670, + [SMALL_STATE(782)] = 16724, + [SMALL_STATE(783)] = 16778, + [SMALL_STATE(784)] = 16832, + [SMALL_STATE(785)] = 16886, + [SMALL_STATE(786)] = 16940, + [SMALL_STATE(787)] = 16994, + [SMALL_STATE(788)] = 17048, + [SMALL_STATE(789)] = 17102, + [SMALL_STATE(790)] = 17156, + [SMALL_STATE(791)] = 17214, + [SMALL_STATE(792)] = 17268, + [SMALL_STATE(793)] = 17322, + [SMALL_STATE(794)] = 17376, + [SMALL_STATE(795)] = 17430, + [SMALL_STATE(796)] = 17484, + [SMALL_STATE(797)] = 17538, + [SMALL_STATE(798)] = 17592, + [SMALL_STATE(799)] = 17646, + [SMALL_STATE(800)] = 17704, + [SMALL_STATE(801)] = 17758, + [SMALL_STATE(802)] = 17812, + [SMALL_STATE(803)] = 17866, + [SMALL_STATE(804)] = 17920, + [SMALL_STATE(805)] = 17976, + [SMALL_STATE(806)] = 18030, + [SMALL_STATE(807)] = 18086, + [SMALL_STATE(808)] = 18140, + [SMALL_STATE(809)] = 18196, + [SMALL_STATE(810)] = 18250, + [SMALL_STATE(811)] = 18304, + [SMALL_STATE(812)] = 18358, + [SMALL_STATE(813)] = 18412, + [SMALL_STATE(814)] = 18466, + [SMALL_STATE(815)] = 18520, + [SMALL_STATE(816)] = 18574, + [SMALL_STATE(817)] = 18628, + [SMALL_STATE(818)] = 18682, + [SMALL_STATE(819)] = 18736, + [SMALL_STATE(820)] = 18790, + [SMALL_STATE(821)] = 18844, + [SMALL_STATE(822)] = 18898, + [SMALL_STATE(823)] = 18952, + [SMALL_STATE(824)] = 19006, + [SMALL_STATE(825)] = 19060, + [SMALL_STATE(826)] = 19114, + [SMALL_STATE(827)] = 19168, + [SMALL_STATE(828)] = 19222, + [SMALL_STATE(829)] = 19276, + [SMALL_STATE(830)] = 19330, + [SMALL_STATE(831)] = 19384, + [SMALL_STATE(832)] = 19440, + [SMALL_STATE(833)] = 19494, + [SMALL_STATE(834)] = 19548, + [SMALL_STATE(835)] = 19602, + [SMALL_STATE(836)] = 19656, + [SMALL_STATE(837)] = 19710, + [SMALL_STATE(838)] = 19764, + [SMALL_STATE(839)] = 19818, + [SMALL_STATE(840)] = 19872, + [SMALL_STATE(841)] = 19926, + [SMALL_STATE(842)] = 19980, + [SMALL_STATE(843)] = 20034, + [SMALL_STATE(844)] = 20088, + [SMALL_STATE(845)] = 20142, + [SMALL_STATE(846)] = 20196, + [SMALL_STATE(847)] = 20250, + [SMALL_STATE(848)] = 20304, + [SMALL_STATE(849)] = 20358, + [SMALL_STATE(850)] = 20412, + [SMALL_STATE(851)] = 20466, + [SMALL_STATE(852)] = 20520, + [SMALL_STATE(853)] = 20574, + [SMALL_STATE(854)] = 20628, + [SMALL_STATE(855)] = 20682, + [SMALL_STATE(856)] = 20736, + [SMALL_STATE(857)] = 20790, + [SMALL_STATE(858)] = 20846, + [SMALL_STATE(859)] = 20900, + [SMALL_STATE(860)] = 20954, + [SMALL_STATE(861)] = 21008, + [SMALL_STATE(862)] = 21062, + [SMALL_STATE(863)] = 21116, + [SMALL_STATE(864)] = 21170, + [SMALL_STATE(865)] = 21224, + [SMALL_STATE(866)] = 21280, + [SMALL_STATE(867)] = 21336, + [SMALL_STATE(868)] = 21390, + [SMALL_STATE(869)] = 21444, + [SMALL_STATE(870)] = 21498, + [SMALL_STATE(871)] = 21552, + [SMALL_STATE(872)] = 21606, + [SMALL_STATE(873)] = 21662, + [SMALL_STATE(874)] = 21716, + [SMALL_STATE(875)] = 21770, + [SMALL_STATE(876)] = 21824, + [SMALL_STATE(877)] = 21878, + [SMALL_STATE(878)] = 21932, + [SMALL_STATE(879)] = 21986, + [SMALL_STATE(880)] = 22040, + [SMALL_STATE(881)] = 22096, + [SMALL_STATE(882)] = 22150, + [SMALL_STATE(883)] = 22204, + [SMALL_STATE(884)] = 22258, + [SMALL_STATE(885)] = 22314, + [SMALL_STATE(886)] = 22368, + [SMALL_STATE(887)] = 22422, + [SMALL_STATE(888)] = 22476, + [SMALL_STATE(889)] = 22530, + [SMALL_STATE(890)] = 22584, + [SMALL_STATE(891)] = 22638, + [SMALL_STATE(892)] = 22692, + [SMALL_STATE(893)] = 22746, + [SMALL_STATE(894)] = 22800, + [SMALL_STATE(895)] = 22854, + [SMALL_STATE(896)] = 22908, + [SMALL_STATE(897)] = 22962, + [SMALL_STATE(898)] = 23016, + [SMALL_STATE(899)] = 23070, + [SMALL_STATE(900)] = 23124, + [SMALL_STATE(901)] = 23178, + [SMALL_STATE(902)] = 23232, + [SMALL_STATE(903)] = 23286, + [SMALL_STATE(904)] = 23340, + [SMALL_STATE(905)] = 23394, + [SMALL_STATE(906)] = 23448, + [SMALL_STATE(907)] = 23502, + [SMALL_STATE(908)] = 23558, + [SMALL_STATE(909)] = 23612, + [SMALL_STATE(910)] = 23666, + [SMALL_STATE(911)] = 23720, + [SMALL_STATE(912)] = 23774, + [SMALL_STATE(913)] = 23828, + [SMALL_STATE(914)] = 23882, + [SMALL_STATE(915)] = 23936, + [SMALL_STATE(916)] = 23990, + [SMALL_STATE(917)] = 24044, + [SMALL_STATE(918)] = 24098, + [SMALL_STATE(919)] = 24152, + [SMALL_STATE(920)] = 24206, + [SMALL_STATE(921)] = 24260, + [SMALL_STATE(922)] = 24314, + [SMALL_STATE(923)] = 24368, + [SMALL_STATE(924)] = 24422, + [SMALL_STATE(925)] = 24476, + [SMALL_STATE(926)] = 24530, + [SMALL_STATE(927)] = 24584, + [SMALL_STATE(928)] = 24638, + [SMALL_STATE(929)] = 24692, + [SMALL_STATE(930)] = 24746, + [SMALL_STATE(931)] = 24800, + [SMALL_STATE(932)] = 24854, + [SMALL_STATE(933)] = 24908, + [SMALL_STATE(934)] = 24962, + [SMALL_STATE(935)] = 25016, + [SMALL_STATE(936)] = 25070, + [SMALL_STATE(937)] = 25124, + [SMALL_STATE(938)] = 25178, + [SMALL_STATE(939)] = 25232, + [SMALL_STATE(940)] = 25286, + [SMALL_STATE(941)] = 25340, + [SMALL_STATE(942)] = 25394, + [SMALL_STATE(943)] = 25448, + [SMALL_STATE(944)] = 25502, + [SMALL_STATE(945)] = 25556, + [SMALL_STATE(946)] = 25610, + [SMALL_STATE(947)] = 25664, + [SMALL_STATE(948)] = 25718, + [SMALL_STATE(949)] = 25772, + [SMALL_STATE(950)] = 25826, + [SMALL_STATE(951)] = 25880, + [SMALL_STATE(952)] = 25934, + [SMALL_STATE(953)] = 25988, + [SMALL_STATE(954)] = 26042, + [SMALL_STATE(955)] = 26096, + [SMALL_STATE(956)] = 26150, + [SMALL_STATE(957)] = 26204, + [SMALL_STATE(958)] = 26258, + [SMALL_STATE(959)] = 26312, + [SMALL_STATE(960)] = 26366, + [SMALL_STATE(961)] = 26420, + [SMALL_STATE(962)] = 26474, + [SMALL_STATE(963)] = 26528, + [SMALL_STATE(964)] = 26582, + [SMALL_STATE(965)] = 26636, + [SMALL_STATE(966)] = 26690, + [SMALL_STATE(967)] = 26744, + [SMALL_STATE(968)] = 26798, + [SMALL_STATE(969)] = 26852, + [SMALL_STATE(970)] = 26906, + [SMALL_STATE(971)] = 26960, + [SMALL_STATE(972)] = 27014, + [SMALL_STATE(973)] = 27068, + [SMALL_STATE(974)] = 27122, + [SMALL_STATE(975)] = 27176, + [SMALL_STATE(976)] = 27230, + [SMALL_STATE(977)] = 27284, + [SMALL_STATE(978)] = 27338, + [SMALL_STATE(979)] = 27392, + [SMALL_STATE(980)] = 27446, + [SMALL_STATE(981)] = 27500, + [SMALL_STATE(982)] = 27554, + [SMALL_STATE(983)] = 27608, + [SMALL_STATE(984)] = 27662, + [SMALL_STATE(985)] = 27716, + [SMALL_STATE(986)] = 27770, + [SMALL_STATE(987)] = 27824, + [SMALL_STATE(988)] = 27880, + [SMALL_STATE(989)] = 27934, + [SMALL_STATE(990)] = 27988, + [SMALL_STATE(991)] = 28044, + [SMALL_STATE(992)] = 28098, + [SMALL_STATE(993)] = 28152, + [SMALL_STATE(994)] = 28206, + [SMALL_STATE(995)] = 28260, + [SMALL_STATE(996)] = 28314, + [SMALL_STATE(997)] = 28368, + [SMALL_STATE(998)] = 28422, + [SMALL_STATE(999)] = 28476, + [SMALL_STATE(1000)] = 28530, + [SMALL_STATE(1001)] = 28584, + [SMALL_STATE(1002)] = 28638, + [SMALL_STATE(1003)] = 28692, + [SMALL_STATE(1004)] = 28746, + [SMALL_STATE(1005)] = 28800, + [SMALL_STATE(1006)] = 28854, + [SMALL_STATE(1007)] = 28910, + [SMALL_STATE(1008)] = 28964, + [SMALL_STATE(1009)] = 29018, + [SMALL_STATE(1010)] = 29072, + [SMALL_STATE(1011)] = 29126, + [SMALL_STATE(1012)] = 29180, + [SMALL_STATE(1013)] = 29234, + [SMALL_STATE(1014)] = 29288, + [SMALL_STATE(1015)] = 29342, + [SMALL_STATE(1016)] = 29396, + [SMALL_STATE(1017)] = 29450, + [SMALL_STATE(1018)] = 29504, + [SMALL_STATE(1019)] = 29558, + [SMALL_STATE(1020)] = 29612, + [SMALL_STATE(1021)] = 29666, + [SMALL_STATE(1022)] = 29720, + [SMALL_STATE(1023)] = 29774, + [SMALL_STATE(1024)] = 29828, + [SMALL_STATE(1025)] = 29882, + [SMALL_STATE(1026)] = 29936, + [SMALL_STATE(1027)] = 29989, + [SMALL_STATE(1028)] = 30042, + [SMALL_STATE(1029)] = 30097, + [SMALL_STATE(1030)] = 30150, + [SMALL_STATE(1031)] = 30205, + [SMALL_STATE(1032)] = 30258, + [SMALL_STATE(1033)] = 30311, + [SMALL_STATE(1034)] = 30364, + [SMALL_STATE(1035)] = 30417, + [SMALL_STATE(1036)] = 30470, + [SMALL_STATE(1037)] = 30523, + [SMALL_STATE(1038)] = 30576, + [SMALL_STATE(1039)] = 30629, + [SMALL_STATE(1040)] = 30682, + [SMALL_STATE(1041)] = 30735, + [SMALL_STATE(1042)] = 30788, + [SMALL_STATE(1043)] = 30843, + [SMALL_STATE(1044)] = 30896, + [SMALL_STATE(1045)] = 30949, + [SMALL_STATE(1046)] = 31002, + [SMALL_STATE(1047)] = 31055, + [SMALL_STATE(1048)] = 31108, + [SMALL_STATE(1049)] = 31161, + [SMALL_STATE(1050)] = 31214, + [SMALL_STATE(1051)] = 31267, + [SMALL_STATE(1052)] = 31320, + [SMALL_STATE(1053)] = 31373, + [SMALL_STATE(1054)] = 31426, + [SMALL_STATE(1055)] = 31479, + [SMALL_STATE(1056)] = 31532, + [SMALL_STATE(1057)] = 31585, + [SMALL_STATE(1058)] = 31638, + [SMALL_STATE(1059)] = 31695, + [SMALL_STATE(1060)] = 31748, + [SMALL_STATE(1061)] = 31801, + [SMALL_STATE(1062)] = 31854, + [SMALL_STATE(1063)] = 31907, + [SMALL_STATE(1064)] = 31960, + [SMALL_STATE(1065)] = 32013, + [SMALL_STATE(1066)] = 32066, + [SMALL_STATE(1067)] = 32119, + [SMALL_STATE(1068)] = 32172, + [SMALL_STATE(1069)] = 32225, + [SMALL_STATE(1070)] = 32278, + [SMALL_STATE(1071)] = 32331, + [SMALL_STATE(1072)] = 32384, + [SMALL_STATE(1073)] = 32437, + [SMALL_STATE(1074)] = 32490, + [SMALL_STATE(1075)] = 32543, + [SMALL_STATE(1076)] = 32596, + [SMALL_STATE(1077)] = 32649, + [SMALL_STATE(1078)] = 32738, + [SMALL_STATE(1079)] = 32791, + [SMALL_STATE(1080)] = 32844, + [SMALL_STATE(1081)] = 32897, + [SMALL_STATE(1082)] = 32950, + [SMALL_STATE(1083)] = 33003, + [SMALL_STATE(1084)] = 33056, + [SMALL_STATE(1085)] = 33109, + [SMALL_STATE(1086)] = 33162, + [SMALL_STATE(1087)] = 33215, + [SMALL_STATE(1088)] = 33268, + [SMALL_STATE(1089)] = 33321, + [SMALL_STATE(1090)] = 33374, + [SMALL_STATE(1091)] = 33429, + [SMALL_STATE(1092)] = 33482, + [SMALL_STATE(1093)] = 33535, + [SMALL_STATE(1094)] = 33588, + [SMALL_STATE(1095)] = 33641, + [SMALL_STATE(1096)] = 33730, + [SMALL_STATE(1097)] = 33783, + [SMALL_STATE(1098)] = 33836, + [SMALL_STATE(1099)] = 33889, + [SMALL_STATE(1100)] = 33942, + [SMALL_STATE(1101)] = 33995, + [SMALL_STATE(1102)] = 34048, + [SMALL_STATE(1103)] = 34101, + [SMALL_STATE(1104)] = 34154, + [SMALL_STATE(1105)] = 34207, + [SMALL_STATE(1106)] = 34260, + [SMALL_STATE(1107)] = 34313, + [SMALL_STATE(1108)] = 34366, + [SMALL_STATE(1109)] = 34419, + [SMALL_STATE(1110)] = 34472, + [SMALL_STATE(1111)] = 34525, + [SMALL_STATE(1112)] = 34578, + [SMALL_STATE(1113)] = 34631, + [SMALL_STATE(1114)] = 34684, + [SMALL_STATE(1115)] = 34737, + [SMALL_STATE(1116)] = 34790, + [SMALL_STATE(1117)] = 34843, + [SMALL_STATE(1118)] = 34896, + [SMALL_STATE(1119)] = 34949, + [SMALL_STATE(1120)] = 35002, + [SMALL_STATE(1121)] = 35055, + [SMALL_STATE(1122)] = 35108, + [SMALL_STATE(1123)] = 35161, + [SMALL_STATE(1124)] = 35214, + [SMALL_STATE(1125)] = 35267, + [SMALL_STATE(1126)] = 35320, + [SMALL_STATE(1127)] = 35400, + [SMALL_STATE(1128)] = 35460, + [SMALL_STATE(1129)] = 35512, + [SMALL_STATE(1130)] = 35598, + [SMALL_STATE(1131)] = 35658, + [SMALL_STATE(1132)] = 35718, + [SMALL_STATE(1133)] = 35798, + [SMALL_STATE(1134)] = 35860, + [SMALL_STATE(1135)] = 35940, + [SMALL_STATE(1136)] = 36000, + [SMALL_STATE(1137)] = 36080, + [SMALL_STATE(1138)] = 36160, + [SMALL_STATE(1139)] = 36232, + [SMALL_STATE(1140)] = 36318, + [SMALL_STATE(1141)] = 36370, + [SMALL_STATE(1142)] = 36436, + [SMALL_STATE(1143)] = 36512, + [SMALL_STATE(1144)] = 36590, + [SMALL_STATE(1145)] = 36660, + [SMALL_STATE(1146)] = 36720, + [SMALL_STATE(1147)] = 36788, + [SMALL_STATE(1148)] = 36852, + [SMALL_STATE(1149)] = 36932, + [SMALL_STATE(1150)] = 37017, + [SMALL_STATE(1151)] = 37104, + [SMALL_STATE(1152)] = 37191, + [SMALL_STATE(1153)] = 37270, + [SMALL_STATE(1154)] = 37321, + [SMALL_STATE(1155)] = 37378, + [SMALL_STATE(1156)] = 37465, + [SMALL_STATE(1157)] = 37550, + [SMALL_STATE(1158)] = 37637, + [SMALL_STATE(1159)] = 37688, + [SMALL_STATE(1160)] = 37744, + [SMALL_STATE(1161)] = 37820, + [SMALL_STATE(1162)] = 37896, + [SMALL_STATE(1163)] = 37972, + [SMALL_STATE(1164)] = 38026, + [SMALL_STATE(1165)] = 38102, + [SMALL_STATE(1166)] = 38151, + [SMALL_STATE(1167)] = 38240, + [SMALL_STATE(1168)] = 38289, + [SMALL_STATE(1169)] = 38338, + [SMALL_STATE(1170)] = 38387, + [SMALL_STATE(1171)] = 38476, + [SMALL_STATE(1172)] = 38525, + [SMALL_STATE(1173)] = 38576, + [SMALL_STATE(1174)] = 38627, + [SMALL_STATE(1175)] = 38676, + [SMALL_STATE(1176)] = 38725, + [SMALL_STATE(1177)] = 38778, + [SMALL_STATE(1178)] = 38827, + [SMALL_STATE(1179)] = 38880, + [SMALL_STATE(1180)] = 38953, + [SMALL_STATE(1181)] = 39002, + [SMALL_STATE(1182)] = 39052, + [SMALL_STATE(1183)] = 39130, + [SMALL_STATE(1184)] = 39180, + [SMALL_STATE(1185)] = 39230, + [SMALL_STATE(1186)] = 39316, + [SMALL_STATE(1187)] = 39402, + [SMALL_STATE(1188)] = 39452, + [SMALL_STATE(1189)] = 39530, + [SMALL_STATE(1190)] = 39605, + [SMALL_STATE(1191)] = 39688, + [SMALL_STATE(1192)] = 39771, + [SMALL_STATE(1193)] = 39852, + [SMALL_STATE(1194)] = 39935, + [SMALL_STATE(1195)] = 40018, + [SMALL_STATE(1196)] = 40093, + [SMALL_STATE(1197)] = 40176, + [SMALL_STATE(1198)] = 40259, + [SMALL_STATE(1199)] = 40342, + [SMALL_STATE(1200)] = 40425, + [SMALL_STATE(1201)] = 40508, + [SMALL_STATE(1202)] = 40591, + [SMALL_STATE(1203)] = 40674, + [SMALL_STATE(1204)] = 40757, + [SMALL_STATE(1205)] = 40840, + [SMALL_STATE(1206)] = 40923, + [SMALL_STATE(1207)] = 41006, + [SMALL_STATE(1208)] = 41061, + [SMALL_STATE(1209)] = 41142, + [SMALL_STATE(1210)] = 41223, + [SMALL_STATE(1211)] = 41298, + [SMALL_STATE(1212)] = 41381, + [SMALL_STATE(1213)] = 41464, + [SMALL_STATE(1214)] = 41547, + [SMALL_STATE(1215)] = 41630, + [SMALL_STATE(1216)] = 41713, + [SMALL_STATE(1217)] = 41796, + [SMALL_STATE(1218)] = 41879, + [SMALL_STATE(1219)] = 41934, + [SMALL_STATE(1220)] = 42017, + [SMALL_STATE(1221)] = 42092, + [SMALL_STATE(1222)] = 42175, + [SMALL_STATE(1223)] = 42258, + [SMALL_STATE(1224)] = 42313, + [SMALL_STATE(1225)] = 42368, + [SMALL_STATE(1226)] = 42451, + [SMALL_STATE(1227)] = 42534, + [SMALL_STATE(1228)] = 42615, + [SMALL_STATE(1229)] = 42690, + [SMALL_STATE(1230)] = 42749, + [SMALL_STATE(1231)] = 42832, + [SMALL_STATE(1232)] = 42895, + [SMALL_STATE(1233)] = 42978, + [SMALL_STATE(1234)] = 43061, + [SMALL_STATE(1235)] = 43142, + [SMALL_STATE(1236)] = 43223, + [SMALL_STATE(1237)] = 43306, + [SMALL_STATE(1238)] = 43389, + [SMALL_STATE(1239)] = 43472, + [SMALL_STATE(1240)] = 43537, + [SMALL_STATE(1241)] = 43610, + [SMALL_STATE(1242)] = 43681, + [SMALL_STATE(1243)] = 43762, + [SMALL_STATE(1244)] = 43823, + [SMALL_STATE(1245)] = 43906, + [SMALL_STATE(1246)] = 43989, + [SMALL_STATE(1247)] = 44070, + [SMALL_STATE(1248)] = 44137, + [SMALL_STATE(1249)] = 44220, + [SMALL_STATE(1250)] = 44295, + [SMALL_STATE(1251)] = 44378, + [SMALL_STATE(1252)] = 44435, + [SMALL_STATE(1253)] = 44518, + [SMALL_STATE(1254)] = 44599, + [SMALL_STATE(1255)] = 44682, + [SMALL_STATE(1256)] = 44765, + [SMALL_STATE(1257)] = 44848, + [SMALL_STATE(1258)] = 44931, + [SMALL_STATE(1259)] = 45014, + [SMALL_STATE(1260)] = 45097, + [SMALL_STATE(1261)] = 45178, + [SMALL_STATE(1262)] = 45261, + [SMALL_STATE(1263)] = 45342, + [SMALL_STATE(1264)] = 45423, + [SMALL_STATE(1265)] = 45494, + [SMALL_STATE(1266)] = 45574, + [SMALL_STATE(1267)] = 45654, + [SMALL_STATE(1268)] = 45734, + [SMALL_STATE(1269)] = 45814, + [SMALL_STATE(1270)] = 45894, + [SMALL_STATE(1271)] = 45974, + [SMALL_STATE(1272)] = 46054, + [SMALL_STATE(1273)] = 46134, + [SMALL_STATE(1274)] = 46214, + [SMALL_STATE(1275)] = 46282, + [SMALL_STATE(1276)] = 46362, + [SMALL_STATE(1277)] = 46442, + [SMALL_STATE(1278)] = 46522, + [SMALL_STATE(1279)] = 46602, + [SMALL_STATE(1280)] = 46682, + [SMALL_STATE(1281)] = 46762, + [SMALL_STATE(1282)] = 46842, + [SMALL_STATE(1283)] = 46922, + [SMALL_STATE(1284)] = 47002, + [SMALL_STATE(1285)] = 47082, + [SMALL_STATE(1286)] = 47162, + [SMALL_STATE(1287)] = 47242, + [SMALL_STATE(1288)] = 47322, + [SMALL_STATE(1289)] = 47402, + [SMALL_STATE(1290)] = 47482, + [SMALL_STATE(1291)] = 47562, + [SMALL_STATE(1292)] = 47642, + [SMALL_STATE(1293)] = 47722, + [SMALL_STATE(1294)] = 47802, + [SMALL_STATE(1295)] = 47882, + [SMALL_STATE(1296)] = 47962, + [SMALL_STATE(1297)] = 48030, + [SMALL_STATE(1298)] = 48110, + [SMALL_STATE(1299)] = 48175, + [SMALL_STATE(1300)] = 48240, + [SMALL_STATE(1301)] = 48305, + [SMALL_STATE(1302)] = 48370, + [SMALL_STATE(1303)] = 48435, + [SMALL_STATE(1304)] = 48475, + [SMALL_STATE(1305)] = 48515, + [SMALL_STATE(1306)] = 48555, + [SMALL_STATE(1307)] = 48610, + [SMALL_STATE(1308)] = 48665, + [SMALL_STATE(1309)] = 48720, + [SMALL_STATE(1310)] = 48775, + [SMALL_STATE(1311)] = 48830, + [SMALL_STATE(1312)] = 48885, + [SMALL_STATE(1313)] = 48940, + [SMALL_STATE(1314)] = 48992, + [SMALL_STATE(1315)] = 49044, + [SMALL_STATE(1316)] = 49074, + [SMALL_STATE(1317)] = 49104, + [SMALL_STATE(1318)] = 49146, + [SMALL_STATE(1319)] = 49186, + [SMALL_STATE(1320)] = 49215, + [SMALL_STATE(1321)] = 49244, + [SMALL_STATE(1322)] = 49281, + [SMALL_STATE(1323)] = 49318, + [SMALL_STATE(1324)] = 49347, + [SMALL_STATE(1325)] = 49376, + [SMALL_STATE(1326)] = 49405, + [SMALL_STATE(1327)] = 49434, + [SMALL_STATE(1328)] = 49463, + [SMALL_STATE(1329)] = 49492, + [SMALL_STATE(1330)] = 49546, + [SMALL_STATE(1331)] = 49578, + [SMALL_STATE(1332)] = 49632, + [SMALL_STATE(1333)] = 49664, + [SMALL_STATE(1334)] = 49696, + [SMALL_STATE(1335)] = 49721, + [SMALL_STATE(1336)] = 49744, + [SMALL_STATE(1337)] = 49768, + [SMALL_STATE(1338)] = 49792, + [SMALL_STATE(1339)] = 49816, + [SMALL_STATE(1340)] = 49840, + [SMALL_STATE(1341)] = 49864, + [SMALL_STATE(1342)] = 49910, + [SMALL_STATE(1343)] = 49932, + [SMALL_STATE(1344)] = 49956, + [SMALL_STATE(1345)] = 50000, + [SMALL_STATE(1346)] = 50044, + [SMALL_STATE(1347)] = 50068, + [SMALL_STATE(1348)] = 50092, + [SMALL_STATE(1349)] = 50122, + [SMALL_STATE(1350)] = 50144, + [SMALL_STATE(1351)] = 50168, + [SMALL_STATE(1352)] = 50190, + [SMALL_STATE(1353)] = 50214, + [SMALL_STATE(1354)] = 50236, + [SMALL_STATE(1355)] = 50261, + [SMALL_STATE(1356)] = 50282, + [SMALL_STATE(1357)] = 50305, + [SMALL_STATE(1358)] = 50330, + [SMALL_STATE(1359)] = 50351, + [SMALL_STATE(1360)] = 50376, + [SMALL_STATE(1361)] = 50399, + [SMALL_STATE(1362)] = 50444, + [SMALL_STATE(1363)] = 50465, + [SMALL_STATE(1364)] = 50486, + [SMALL_STATE(1365)] = 50509, + [SMALL_STATE(1366)] = 50532, + [SMALL_STATE(1367)] = 50559, + [SMALL_STATE(1368)] = 50582, + [SMALL_STATE(1369)] = 50603, + [SMALL_STATE(1370)] = 50628, + [SMALL_STATE(1371)] = 50653, + [SMALL_STATE(1372)] = 50676, + [SMALL_STATE(1373)] = 50699, + [SMALL_STATE(1374)] = 50724, + [SMALL_STATE(1375)] = 50747, + [SMALL_STATE(1376)] = 50769, + [SMALL_STATE(1377)] = 50789, + [SMALL_STATE(1378)] = 50809, + [SMALL_STATE(1379)] = 50829, + [SMALL_STATE(1380)] = 50849, + [SMALL_STATE(1381)] = 50869, + [SMALL_STATE(1382)] = 50889, + [SMALL_STATE(1383)] = 50909, + [SMALL_STATE(1384)] = 50929, + [SMALL_STATE(1385)] = 50951, + [SMALL_STATE(1386)] = 50971, + [SMALL_STATE(1387)] = 50991, + [SMALL_STATE(1388)] = 51011, + [SMALL_STATE(1389)] = 51031, + [SMALL_STATE(1390)] = 51051, + [SMALL_STATE(1391)] = 51071, + [SMALL_STATE(1392)] = 51091, + [SMALL_STATE(1393)] = 51111, + [SMALL_STATE(1394)] = 51131, + [SMALL_STATE(1395)] = 51151, + [SMALL_STATE(1396)] = 51175, + [SMALL_STATE(1397)] = 51195, + [SMALL_STATE(1398)] = 51215, + [SMALL_STATE(1399)] = 51235, + [SMALL_STATE(1400)] = 51255, + [SMALL_STATE(1401)] = 51275, + [SMALL_STATE(1402)] = 51295, + [SMALL_STATE(1403)] = 51315, + [SMALL_STATE(1404)] = 51335, + [SMALL_STATE(1405)] = 51355, + [SMALL_STATE(1406)] = 51377, + [SMALL_STATE(1407)] = 51402, + [SMALL_STATE(1408)] = 51425, + [SMALL_STATE(1409)] = 51460, + [SMALL_STATE(1410)] = 51483, + [SMALL_STATE(1411)] = 51504, + [SMALL_STATE(1412)] = 51527, + [SMALL_STATE(1413)] = 51550, + [SMALL_STATE(1414)] = 51573, + [SMALL_STATE(1415)] = 51596, + [SMALL_STATE(1416)] = 51619, + [SMALL_STATE(1417)] = 51642, + [SMALL_STATE(1418)] = 51667, + [SMALL_STATE(1419)] = 51690, + [SMALL_STATE(1420)] = 51713, + [SMALL_STATE(1421)] = 51736, + [SMALL_STATE(1422)] = 51761, + [SMALL_STATE(1423)] = 51784, + [SMALL_STATE(1424)] = 51809, + [SMALL_STATE(1425)] = 51830, + [SMALL_STATE(1426)] = 51851, + [SMALL_STATE(1427)] = 51876, + [SMALL_STATE(1428)] = 51901, + [SMALL_STATE(1429)] = 51926, + [SMALL_STATE(1430)] = 51951, + [SMALL_STATE(1431)] = 51971, + [SMALL_STATE(1432)] = 52003, + [SMALL_STATE(1433)] = 52023, + [SMALL_STATE(1434)] = 52047, + [SMALL_STATE(1435)] = 52071, + [SMALL_STATE(1436)] = 52091, + [SMALL_STATE(1437)] = 52111, + [SMALL_STATE(1438)] = 52131, + [SMALL_STATE(1439)] = 52151, + [SMALL_STATE(1440)] = 52175, + [SMALL_STATE(1441)] = 52195, + [SMALL_STATE(1442)] = 52215, + [SMALL_STATE(1443)] = 52247, + [SMALL_STATE(1444)] = 52279, + [SMALL_STATE(1445)] = 52299, + [SMALL_STATE(1446)] = 52325, + [SMALL_STATE(1447)] = 52345, + [SMALL_STATE(1448)] = 52365, + [SMALL_STATE(1449)] = 52397, + [SMALL_STATE(1450)] = 52417, + [SMALL_STATE(1451)] = 52437, + [SMALL_STATE(1452)] = 52457, + [SMALL_STATE(1453)] = 52477, + [SMALL_STATE(1454)] = 52509, + [SMALL_STATE(1455)] = 52529, + [SMALL_STATE(1456)] = 52549, + [SMALL_STATE(1457)] = 52569, + [SMALL_STATE(1458)] = 52589, + [SMALL_STATE(1459)] = 52609, + [SMALL_STATE(1460)] = 52641, + [SMALL_STATE(1461)] = 52673, + [SMALL_STATE(1462)] = 52705, + [SMALL_STATE(1463)] = 52725, + [SMALL_STATE(1464)] = 52745, + [SMALL_STATE(1465)] = 52765, + [SMALL_STATE(1466)] = 52785, + [SMALL_STATE(1467)] = 52805, + [SMALL_STATE(1468)] = 52825, + [SMALL_STATE(1469)] = 52851, + [SMALL_STATE(1470)] = 52871, + [SMALL_STATE(1471)] = 52891, + [SMALL_STATE(1472)] = 52911, + [SMALL_STATE(1473)] = 52931, + [SMALL_STATE(1474)] = 52955, + [SMALL_STATE(1475)] = 52975, + [SMALL_STATE(1476)] = 52998, + [SMALL_STATE(1477)] = 53021, + [SMALL_STATE(1478)] = 53054, + [SMALL_STATE(1479)] = 53079, + [SMALL_STATE(1480)] = 53112, + [SMALL_STATE(1481)] = 53137, + [SMALL_STATE(1482)] = 53166, + [SMALL_STATE(1483)] = 53191, + [SMALL_STATE(1484)] = 53222, + [SMALL_STATE(1485)] = 53245, + [SMALL_STATE(1486)] = 53272, + [SMALL_STATE(1487)] = 53305, + [SMALL_STATE(1488)] = 53338, + [SMALL_STATE(1489)] = 53368, + [SMALL_STATE(1490)] = 53398, + [SMALL_STATE(1491)] = 53424, + [SMALL_STATE(1492)] = 53446, + [SMALL_STATE(1493)] = 53472, + [SMALL_STATE(1494)] = 53504, + [SMALL_STATE(1495)] = 53534, + [SMALL_STATE(1496)] = 53564, + [SMALL_STATE(1497)] = 53594, + [SMALL_STATE(1498)] = 53624, + [SMALL_STATE(1499)] = 53650, + [SMALL_STATE(1500)] = 53672, + [SMALL_STATE(1501)] = 53698, + [SMALL_STATE(1502)] = 53730, + [SMALL_STATE(1503)] = 53760, + [SMALL_STATE(1504)] = 53782, + [SMALL_STATE(1505)] = 53804, + [SMALL_STATE(1506)] = 53834, + [SMALL_STATE(1507)] = 53864, + [SMALL_STATE(1508)] = 53894, + [SMALL_STATE(1509)] = 53924, + [SMALL_STATE(1510)] = 53954, + [SMALL_STATE(1511)] = 53984, + [SMALL_STATE(1512)] = 54014, + [SMALL_STATE(1513)] = 54044, + [SMALL_STATE(1514)] = 54076, + [SMALL_STATE(1515)] = 54098, + [SMALL_STATE(1516)] = 54124, + [SMALL_STATE(1517)] = 54150, + [SMALL_STATE(1518)] = 54180, + [SMALL_STATE(1519)] = 54206, + [SMALL_STATE(1520)] = 54232, + [SMALL_STATE(1521)] = 54262, + [SMALL_STATE(1522)] = 54292, + [SMALL_STATE(1523)] = 54318, + [SMALL_STATE(1524)] = 54344, + [SMALL_STATE(1525)] = 54374, + [SMALL_STATE(1526)] = 54400, + [SMALL_STATE(1527)] = 54422, + [SMALL_STATE(1528)] = 54452, + [SMALL_STATE(1529)] = 54482, + [SMALL_STATE(1530)] = 54514, + [SMALL_STATE(1531)] = 54533, + [SMALL_STATE(1532)] = 54560, + [SMALL_STATE(1533)] = 54579, + [SMALL_STATE(1534)] = 54608, + [SMALL_STATE(1535)] = 54631, + [SMALL_STATE(1536)] = 54658, + [SMALL_STATE(1537)] = 54677, + [SMALL_STATE(1538)] = 54696, + [SMALL_STATE(1539)] = 54723, + [SMALL_STATE(1540)] = 54746, + [SMALL_STATE(1541)] = 54773, + [SMALL_STATE(1542)] = 54800, + [SMALL_STATE(1543)] = 54829, + [SMALL_STATE(1544)] = 54858, + [SMALL_STATE(1545)] = 54885, + [SMALL_STATE(1546)] = 54904, + [SMALL_STATE(1547)] = 54931, + [SMALL_STATE(1548)] = 54958, + [SMALL_STATE(1549)] = 54985, + [SMALL_STATE(1550)] = 55006, + [SMALL_STATE(1551)] = 55025, + [SMALL_STATE(1552)] = 55052, + [SMALL_STATE(1553)] = 55073, + [SMALL_STATE(1554)] = 55100, + [SMALL_STATE(1555)] = 55119, + [SMALL_STATE(1556)] = 55138, + [SMALL_STATE(1557)] = 55167, + [SMALL_STATE(1558)] = 55190, + [SMALL_STATE(1559)] = 55217, + [SMALL_STATE(1560)] = 55244, + [SMALL_STATE(1561)] = 55267, + [SMALL_STATE(1562)] = 55282, + [SMALL_STATE(1563)] = 55311, + [SMALL_STATE(1564)] = 55338, + [SMALL_STATE(1565)] = 55361, + [SMALL_STATE(1566)] = 55380, + [SMALL_STATE(1567)] = 55399, + [SMALL_STATE(1568)] = 55426, + [SMALL_STATE(1569)] = 55455, + [SMALL_STATE(1570)] = 55474, + [SMALL_STATE(1571)] = 55499, + [SMALL_STATE(1572)] = 55513, + [SMALL_STATE(1573)] = 55527, + [SMALL_STATE(1574)] = 55541, + [SMALL_STATE(1575)] = 55567, + [SMALL_STATE(1576)] = 55581, + [SMALL_STATE(1577)] = 55595, + [SMALL_STATE(1578)] = 55617, + [SMALL_STATE(1579)] = 55643, + [SMALL_STATE(1580)] = 55667, + [SMALL_STATE(1581)] = 55693, + [SMALL_STATE(1582)] = 55715, + [SMALL_STATE(1583)] = 55729, + [SMALL_STATE(1584)] = 55751, + [SMALL_STATE(1585)] = 55773, + [SMALL_STATE(1586)] = 55795, + [SMALL_STATE(1587)] = 55811, + [SMALL_STATE(1588)] = 55827, + [SMALL_STATE(1589)] = 55853, + [SMALL_STATE(1590)] = 55879, + [SMALL_STATE(1591)] = 55903, + [SMALL_STATE(1592)] = 55927, + [SMALL_STATE(1593)] = 55943, + [SMALL_STATE(1594)] = 55959, + [SMALL_STATE(1595)] = 55985, + [SMALL_STATE(1596)] = 56001, + [SMALL_STATE(1597)] = 56025, + [SMALL_STATE(1598)] = 56049, + [SMALL_STATE(1599)] = 56075, + [SMALL_STATE(1600)] = 56101, + [SMALL_STATE(1601)] = 56127, + [SMALL_STATE(1602)] = 56149, + [SMALL_STATE(1603)] = 56175, + [SMALL_STATE(1604)] = 56189, + [SMALL_STATE(1605)] = 56215, + [SMALL_STATE(1606)] = 56241, + [SMALL_STATE(1607)] = 56257, + [SMALL_STATE(1608)] = 56283, + [SMALL_STATE(1609)] = 56309, + [SMALL_STATE(1610)] = 56335, + [SMALL_STATE(1611)] = 56361, + [SMALL_STATE(1612)] = 56377, + [SMALL_STATE(1613)] = 56403, + [SMALL_STATE(1614)] = 56429, + [SMALL_STATE(1615)] = 56455, + [SMALL_STATE(1616)] = 56471, + [SMALL_STATE(1617)] = 56497, + [SMALL_STATE(1618)] = 56520, + [SMALL_STATE(1619)] = 56543, + [SMALL_STATE(1620)] = 56566, + [SMALL_STATE(1621)] = 56583, + [SMALL_STATE(1622)] = 56606, + [SMALL_STATE(1623)] = 56629, + [SMALL_STATE(1624)] = 56646, + [SMALL_STATE(1625)] = 56669, + [SMALL_STATE(1626)] = 56692, + [SMALL_STATE(1627)] = 56715, + [SMALL_STATE(1628)] = 56738, + [SMALL_STATE(1629)] = 56755, + [SMALL_STATE(1630)] = 56778, + [SMALL_STATE(1631)] = 56795, + [SMALL_STATE(1632)] = 56818, + [SMALL_STATE(1633)] = 56841, + [SMALL_STATE(1634)] = 56864, + [SMALL_STATE(1635)] = 56887, + [SMALL_STATE(1636)] = 56904, + [SMALL_STATE(1637)] = 56927, + [SMALL_STATE(1638)] = 56950, + [SMALL_STATE(1639)] = 56973, + [SMALL_STATE(1640)] = 56996, + [SMALL_STATE(1641)] = 57019, + [SMALL_STATE(1642)] = 57042, + [SMALL_STATE(1643)] = 57059, + [SMALL_STATE(1644)] = 57082, + [SMALL_STATE(1645)] = 57105, + [SMALL_STATE(1646)] = 57128, + [SMALL_STATE(1647)] = 57151, + [SMALL_STATE(1648)] = 57168, + [SMALL_STATE(1649)] = 57191, + [SMALL_STATE(1650)] = 57214, + [SMALL_STATE(1651)] = 57237, + [SMALL_STATE(1652)] = 57254, + [SMALL_STATE(1653)] = 57277, + [SMALL_STATE(1654)] = 57298, + [SMALL_STATE(1655)] = 57321, + [SMALL_STATE(1656)] = 57344, + [SMALL_STATE(1657)] = 57367, + [SMALL_STATE(1658)] = 57390, + [SMALL_STATE(1659)] = 57413, + [SMALL_STATE(1660)] = 57436, + [SMALL_STATE(1661)] = 57451, + [SMALL_STATE(1662)] = 57474, + [SMALL_STATE(1663)] = 57497, + [SMALL_STATE(1664)] = 57516, + [SMALL_STATE(1665)] = 57539, + [SMALL_STATE(1666)] = 57556, + [SMALL_STATE(1667)] = 57579, + [SMALL_STATE(1668)] = 57596, + [SMALL_STATE(1669)] = 57615, + [SMALL_STATE(1670)] = 57638, + [SMALL_STATE(1671)] = 57661, + [SMALL_STATE(1672)] = 57684, + [SMALL_STATE(1673)] = 57707, + [SMALL_STATE(1674)] = 57730, + [SMALL_STATE(1675)] = 57753, + [SMALL_STATE(1676)] = 57774, + [SMALL_STATE(1677)] = 57797, + [SMALL_STATE(1678)] = 57820, + [SMALL_STATE(1679)] = 57843, + [SMALL_STATE(1680)] = 57866, + [SMALL_STATE(1681)] = 57889, + [SMALL_STATE(1682)] = 57912, + [SMALL_STATE(1683)] = 57935, + [SMALL_STATE(1684)] = 57958, + [SMALL_STATE(1685)] = 57975, + [SMALL_STATE(1686)] = 57998, + [SMALL_STATE(1687)] = 58021, + [SMALL_STATE(1688)] = 58038, + [SMALL_STATE(1689)] = 58055, + [SMALL_STATE(1690)] = 58078, + [SMALL_STATE(1691)] = 58101, + [SMALL_STATE(1692)] = 58124, + [SMALL_STATE(1693)] = 58147, + [SMALL_STATE(1694)] = 58170, + [SMALL_STATE(1695)] = 58193, + [SMALL_STATE(1696)] = 58216, + [SMALL_STATE(1697)] = 58239, + [SMALL_STATE(1698)] = 58254, + [SMALL_STATE(1699)] = 58277, + [SMALL_STATE(1700)] = 58300, + [SMALL_STATE(1701)] = 58323, + [SMALL_STATE(1702)] = 58346, + [SMALL_STATE(1703)] = 58369, + [SMALL_STATE(1704)] = 58392, + [SMALL_STATE(1705)] = 58415, + [SMALL_STATE(1706)] = 58432, + [SMALL_STATE(1707)] = 58455, + [SMALL_STATE(1708)] = 58474, + [SMALL_STATE(1709)] = 58491, + [SMALL_STATE(1710)] = 58503, + [SMALL_STATE(1711)] = 58523, + [SMALL_STATE(1712)] = 58539, + [SMALL_STATE(1713)] = 58555, + [SMALL_STATE(1714)] = 58573, + [SMALL_STATE(1715)] = 58591, + [SMALL_STATE(1716)] = 58607, + [SMALL_STATE(1717)] = 58619, + [SMALL_STATE(1718)] = 58635, + [SMALL_STATE(1719)] = 58647, + [SMALL_STATE(1720)] = 58659, + [SMALL_STATE(1721)] = 58671, + [SMALL_STATE(1722)] = 58687, + [SMALL_STATE(1723)] = 58707, + [SMALL_STATE(1724)] = 58719, + [SMALL_STATE(1725)] = 58739, + [SMALL_STATE(1726)] = 58751, + [SMALL_STATE(1727)] = 58767, + [SMALL_STATE(1728)] = 58779, + [SMALL_STATE(1729)] = 58797, + [SMALL_STATE(1730)] = 58815, + [SMALL_STATE(1731)] = 58833, + [SMALL_STATE(1732)] = 58847, + [SMALL_STATE(1733)] = 58863, + [SMALL_STATE(1734)] = 58879, + [SMALL_STATE(1735)] = 58897, + [SMALL_STATE(1736)] = 58917, + [SMALL_STATE(1737)] = 58929, + [SMALL_STATE(1738)] = 58941, + [SMALL_STATE(1739)] = 58957, + [SMALL_STATE(1740)] = 58969, + [SMALL_STATE(1741)] = 58981, + [SMALL_STATE(1742)] = 58993, + [SMALL_STATE(1743)] = 59005, + [SMALL_STATE(1744)] = 59017, + [SMALL_STATE(1745)] = 59029, + [SMALL_STATE(1746)] = 59041, + [SMALL_STATE(1747)] = 59057, + [SMALL_STATE(1748)] = 59075, + [SMALL_STATE(1749)] = 59095, + [SMALL_STATE(1750)] = 59109, + [SMALL_STATE(1751)] = 59125, + [SMALL_STATE(1752)] = 59137, + [SMALL_STATE(1753)] = 59149, + [SMALL_STATE(1754)] = 59167, + [SMALL_STATE(1755)] = 59183, + [SMALL_STATE(1756)] = 59203, + [SMALL_STATE(1757)] = 59215, + [SMALL_STATE(1758)] = 59227, + [SMALL_STATE(1759)] = 59243, + [SMALL_STATE(1760)] = 59260, + [SMALL_STATE(1761)] = 59277, + [SMALL_STATE(1762)] = 59292, + [SMALL_STATE(1763)] = 59307, + [SMALL_STATE(1764)] = 59322, + [SMALL_STATE(1765)] = 59337, + [SMALL_STATE(1766)] = 59352, + [SMALL_STATE(1767)] = 59369, + [SMALL_STATE(1768)] = 59386, + [SMALL_STATE(1769)] = 59403, + [SMALL_STATE(1770)] = 59420, + [SMALL_STATE(1771)] = 59433, + [SMALL_STATE(1772)] = 59448, + [SMALL_STATE(1773)] = 59463, + [SMALL_STATE(1774)] = 59480, + [SMALL_STATE(1775)] = 59497, + [SMALL_STATE(1776)] = 59514, + [SMALL_STATE(1777)] = 59527, + [SMALL_STATE(1778)] = 59540, + [SMALL_STATE(1779)] = 59557, + [SMALL_STATE(1780)] = 59574, + [SMALL_STATE(1781)] = 59589, + [SMALL_STATE(1782)] = 59604, + [SMALL_STATE(1783)] = 59619, + [SMALL_STATE(1784)] = 59636, + [SMALL_STATE(1785)] = 59651, + [SMALL_STATE(1786)] = 59668, + [SMALL_STATE(1787)] = 59685, + [SMALL_STATE(1788)] = 59702, + [SMALL_STATE(1789)] = 59719, + [SMALL_STATE(1790)] = 59736, + [SMALL_STATE(1791)] = 59753, + [SMALL_STATE(1792)] = 59768, + [SMALL_STATE(1793)] = 59785, + [SMALL_STATE(1794)] = 59802, + [SMALL_STATE(1795)] = 59817, + [SMALL_STATE(1796)] = 59830, + [SMALL_STATE(1797)] = 59845, + [SMALL_STATE(1798)] = 59862, + [SMALL_STATE(1799)] = 59879, + [SMALL_STATE(1800)] = 59896, + [SMALL_STATE(1801)] = 59913, + [SMALL_STATE(1802)] = 59928, + [SMALL_STATE(1803)] = 59945, + [SMALL_STATE(1804)] = 59962, + [SMALL_STATE(1805)] = 59979, + [SMALL_STATE(1806)] = 59996, + [SMALL_STATE(1807)] = 60013, + [SMALL_STATE(1808)] = 60030, + [SMALL_STATE(1809)] = 60047, + [SMALL_STATE(1810)] = 60060, + [SMALL_STATE(1811)] = 60077, + [SMALL_STATE(1812)] = 60090, + [SMALL_STATE(1813)] = 60107, + [SMALL_STATE(1814)] = 60124, + [SMALL_STATE(1815)] = 60141, + [SMALL_STATE(1816)] = 60158, + [SMALL_STATE(1817)] = 60175, + [SMALL_STATE(1818)] = 60190, + [SMALL_STATE(1819)] = 60207, + [SMALL_STATE(1820)] = 60224, + [SMALL_STATE(1821)] = 60241, + [SMALL_STATE(1822)] = 60258, + [SMALL_STATE(1823)] = 60275, + [SMALL_STATE(1824)] = 60292, + [SMALL_STATE(1825)] = 60309, + [SMALL_STATE(1826)] = 60326, + [SMALL_STATE(1827)] = 60343, + [SMALL_STATE(1828)] = 60360, + [SMALL_STATE(1829)] = 60377, + [SMALL_STATE(1830)] = 60394, + [SMALL_STATE(1831)] = 60411, + [SMALL_STATE(1832)] = 60428, + [SMALL_STATE(1833)] = 60445, + [SMALL_STATE(1834)] = 60460, + [SMALL_STATE(1835)] = 60477, + [SMALL_STATE(1836)] = 60494, + [SMALL_STATE(1837)] = 60509, + [SMALL_STATE(1838)] = 60526, + [SMALL_STATE(1839)] = 60543, + [SMALL_STATE(1840)] = 60558, + [SMALL_STATE(1841)] = 60571, + [SMALL_STATE(1842)] = 60584, + [SMALL_STATE(1843)] = 60597, + [SMALL_STATE(1844)] = 60614, + [SMALL_STATE(1845)] = 60631, + [SMALL_STATE(1846)] = 60646, + [SMALL_STATE(1847)] = 60661, + [SMALL_STATE(1848)] = 60678, + [SMALL_STATE(1849)] = 60695, + [SMALL_STATE(1850)] = 60710, + [SMALL_STATE(1851)] = 60725, + [SMALL_STATE(1852)] = 60738, + [SMALL_STATE(1853)] = 60753, + [SMALL_STATE(1854)] = 60768, + [SMALL_STATE(1855)] = 60783, + [SMALL_STATE(1856)] = 60800, + [SMALL_STATE(1857)] = 60817, + [SMALL_STATE(1858)] = 60834, + [SMALL_STATE(1859)] = 60851, + [SMALL_STATE(1860)] = 60868, + [SMALL_STATE(1861)] = 60882, + [SMALL_STATE(1862)] = 60896, + [SMALL_STATE(1863)] = 60906, + [SMALL_STATE(1864)] = 60920, + [SMALL_STATE(1865)] = 60934, + [SMALL_STATE(1866)] = 60946, + [SMALL_STATE(1867)] = 60960, + [SMALL_STATE(1868)] = 60974, + [SMALL_STATE(1869)] = 60988, + [SMALL_STATE(1870)] = 61002, + [SMALL_STATE(1871)] = 61016, + [SMALL_STATE(1872)] = 61026, + [SMALL_STATE(1873)] = 61040, + [SMALL_STATE(1874)] = 61054, + [SMALL_STATE(1875)] = 61064, + [SMALL_STATE(1876)] = 61078, + [SMALL_STATE(1877)] = 61092, + [SMALL_STATE(1878)] = 61106, + [SMALL_STATE(1879)] = 61120, + [SMALL_STATE(1880)] = 61134, + [SMALL_STATE(1881)] = 61144, + [SMALL_STATE(1882)] = 61158, + [SMALL_STATE(1883)] = 61172, + [SMALL_STATE(1884)] = 61186, + [SMALL_STATE(1885)] = 61198, + [SMALL_STATE(1886)] = 61210, + [SMALL_STATE(1887)] = 61222, + [SMALL_STATE(1888)] = 61232, + [SMALL_STATE(1889)] = 61246, + [SMALL_STATE(1890)] = 61260, + [SMALL_STATE(1891)] = 61272, + [SMALL_STATE(1892)] = 61286, + [SMALL_STATE(1893)] = 61300, + [SMALL_STATE(1894)] = 61312, + [SMALL_STATE(1895)] = 61326, + [SMALL_STATE(1896)] = 61340, + [SMALL_STATE(1897)] = 61354, + [SMALL_STATE(1898)] = 61368, + [SMALL_STATE(1899)] = 61382, + [SMALL_STATE(1900)] = 61396, + [SMALL_STATE(1901)] = 61408, + [SMALL_STATE(1902)] = 61420, + [SMALL_STATE(1903)] = 61432, + [SMALL_STATE(1904)] = 61446, + [SMALL_STATE(1905)] = 61460, + [SMALL_STATE(1906)] = 61474, + [SMALL_STATE(1907)] = 61488, + [SMALL_STATE(1908)] = 61500, + [SMALL_STATE(1909)] = 61512, + [SMALL_STATE(1910)] = 61524, + [SMALL_STATE(1911)] = 61536, + [SMALL_STATE(1912)] = 61548, + [SMALL_STATE(1913)] = 61562, + [SMALL_STATE(1914)] = 61576, + [SMALL_STATE(1915)] = 61590, + [SMALL_STATE(1916)] = 61604, + [SMALL_STATE(1917)] = 61616, + [SMALL_STATE(1918)] = 61628, + [SMALL_STATE(1919)] = 61642, + [SMALL_STATE(1920)] = 61656, + [SMALL_STATE(1921)] = 61670, + [SMALL_STATE(1922)] = 61682, + [SMALL_STATE(1923)] = 61696, + [SMALL_STATE(1924)] = 61706, + [SMALL_STATE(1925)] = 61716, + [SMALL_STATE(1926)] = 61730, + [SMALL_STATE(1927)] = 61740, + [SMALL_STATE(1928)] = 61754, + [SMALL_STATE(1929)] = 61768, + [SMALL_STATE(1930)] = 61782, + [SMALL_STATE(1931)] = 61796, + [SMALL_STATE(1932)] = 61810, + [SMALL_STATE(1933)] = 61824, + [SMALL_STATE(1934)] = 61838, + [SMALL_STATE(1935)] = 61848, + [SMALL_STATE(1936)] = 61858, + [SMALL_STATE(1937)] = 61872, + [SMALL_STATE(1938)] = 61886, + [SMALL_STATE(1939)] = 61900, + [SMALL_STATE(1940)] = 61914, + [SMALL_STATE(1941)] = 61928, + [SMALL_STATE(1942)] = 61942, + [SMALL_STATE(1943)] = 61956, + [SMALL_STATE(1944)] = 61970, + [SMALL_STATE(1945)] = 61980, + [SMALL_STATE(1946)] = 61992, + [SMALL_STATE(1947)] = 62004, + [SMALL_STATE(1948)] = 62018, + [SMALL_STATE(1949)] = 62032, + [SMALL_STATE(1950)] = 62046, + [SMALL_STATE(1951)] = 62058, + [SMALL_STATE(1952)] = 62070, + [SMALL_STATE(1953)] = 62084, + [SMALL_STATE(1954)] = 62098, + [SMALL_STATE(1955)] = 62112, + [SMALL_STATE(1956)] = 62126, + [SMALL_STATE(1957)] = 62140, + [SMALL_STATE(1958)] = 62154, + [SMALL_STATE(1959)] = 62168, + [SMALL_STATE(1960)] = 62182, + [SMALL_STATE(1961)] = 62196, + [SMALL_STATE(1962)] = 62210, + [SMALL_STATE(1963)] = 62224, + [SMALL_STATE(1964)] = 62234, + [SMALL_STATE(1965)] = 62246, + [SMALL_STATE(1966)] = 62260, + [SMALL_STATE(1967)] = 62274, + [SMALL_STATE(1968)] = 62288, + [SMALL_STATE(1969)] = 62302, + [SMALL_STATE(1970)] = 62316, + [SMALL_STATE(1971)] = 62326, + [SMALL_STATE(1972)] = 62338, + [SMALL_STATE(1973)] = 62352, + [SMALL_STATE(1974)] = 62366, + [SMALL_STATE(1975)] = 62380, + [SMALL_STATE(1976)] = 62394, + [SMALL_STATE(1977)] = 62408, + [SMALL_STATE(1978)] = 62422, + [SMALL_STATE(1979)] = 62436, + [SMALL_STATE(1980)] = 62450, + [SMALL_STATE(1981)] = 62464, + [SMALL_STATE(1982)] = 62478, + [SMALL_STATE(1983)] = 62492, + [SMALL_STATE(1984)] = 62506, + [SMALL_STATE(1985)] = 62520, + [SMALL_STATE(1986)] = 62530, + [SMALL_STATE(1987)] = 62542, + [SMALL_STATE(1988)] = 62556, + [SMALL_STATE(1989)] = 62570, + [SMALL_STATE(1990)] = 62584, + [SMALL_STATE(1991)] = 62596, + [SMALL_STATE(1992)] = 62610, + [SMALL_STATE(1993)] = 62624, + [SMALL_STATE(1994)] = 62638, + [SMALL_STATE(1995)] = 62648, + [SMALL_STATE(1996)] = 62662, + [SMALL_STATE(1997)] = 62676, + [SMALL_STATE(1998)] = 62690, + [SMALL_STATE(1999)] = 62704, + [SMALL_STATE(2000)] = 62718, + [SMALL_STATE(2001)] = 62732, + [SMALL_STATE(2002)] = 62746, + [SMALL_STATE(2003)] = 62760, + [SMALL_STATE(2004)] = 62772, + [SMALL_STATE(2005)] = 62786, + [SMALL_STATE(2006)] = 62798, + [SMALL_STATE(2007)] = 62812, + [SMALL_STATE(2008)] = 62826, + [SMALL_STATE(2009)] = 62840, + [SMALL_STATE(2010)] = 62850, + [SMALL_STATE(2011)] = 62864, + [SMALL_STATE(2012)] = 62876, + [SMALL_STATE(2013)] = 62888, + [SMALL_STATE(2014)] = 62902, + [SMALL_STATE(2015)] = 62916, + [SMALL_STATE(2016)] = 62930, + [SMALL_STATE(2017)] = 62944, + [SMALL_STATE(2018)] = 62958, + [SMALL_STATE(2019)] = 62970, + [SMALL_STATE(2020)] = 62982, + [SMALL_STATE(2021)] = 62996, + [SMALL_STATE(2022)] = 63006, + [SMALL_STATE(2023)] = 63020, + [SMALL_STATE(2024)] = 63034, + [SMALL_STATE(2025)] = 63048, + [SMALL_STATE(2026)] = 63062, + [SMALL_STATE(2027)] = 63076, + [SMALL_STATE(2028)] = 63090, + [SMALL_STATE(2029)] = 63104, + [SMALL_STATE(2030)] = 63116, + [SMALL_STATE(2031)] = 63130, + [SMALL_STATE(2032)] = 63144, + [SMALL_STATE(2033)] = 63158, + [SMALL_STATE(2034)] = 63172, + [SMALL_STATE(2035)] = 63186, + [SMALL_STATE(2036)] = 63200, + [SMALL_STATE(2037)] = 63214, + [SMALL_STATE(2038)] = 63226, + [SMALL_STATE(2039)] = 63240, + [SMALL_STATE(2040)] = 63254, + [SMALL_STATE(2041)] = 63268, + [SMALL_STATE(2042)] = 63282, + [SMALL_STATE(2043)] = 63296, + [SMALL_STATE(2044)] = 63310, + [SMALL_STATE(2045)] = 63324, + [SMALL_STATE(2046)] = 63338, + [SMALL_STATE(2047)] = 63352, + [SMALL_STATE(2048)] = 63366, + [SMALL_STATE(2049)] = 63380, + [SMALL_STATE(2050)] = 63394, + [SMALL_STATE(2051)] = 63408, + [SMALL_STATE(2052)] = 63422, + [SMALL_STATE(2053)] = 63432, + [SMALL_STATE(2054)] = 63446, + [SMALL_STATE(2055)] = 63460, + [SMALL_STATE(2056)] = 63474, + [SMALL_STATE(2057)] = 63486, + [SMALL_STATE(2058)] = 63500, + [SMALL_STATE(2059)] = 63514, + [SMALL_STATE(2060)] = 63524, + [SMALL_STATE(2061)] = 63538, + [SMALL_STATE(2062)] = 63548, + [SMALL_STATE(2063)] = 63562, + [SMALL_STATE(2064)] = 63572, + [SMALL_STATE(2065)] = 63582, + [SMALL_STATE(2066)] = 63596, + [SMALL_STATE(2067)] = 63610, + [SMALL_STATE(2068)] = 63624, + [SMALL_STATE(2069)] = 63638, + [SMALL_STATE(2070)] = 63652, + [SMALL_STATE(2071)] = 63666, + [SMALL_STATE(2072)] = 63680, + [SMALL_STATE(2073)] = 63690, + [SMALL_STATE(2074)] = 63704, + [SMALL_STATE(2075)] = 63718, + [SMALL_STATE(2076)] = 63732, + [SMALL_STATE(2077)] = 63746, + [SMALL_STATE(2078)] = 63760, + [SMALL_STATE(2079)] = 63774, + [SMALL_STATE(2080)] = 63788, + [SMALL_STATE(2081)] = 63798, + [SMALL_STATE(2082)] = 63808, + [SMALL_STATE(2083)] = 63822, + [SMALL_STATE(2084)] = 63836, + [SMALL_STATE(2085)] = 63850, + [SMALL_STATE(2086)] = 63864, + [SMALL_STATE(2087)] = 63874, + [SMALL_STATE(2088)] = 63888, + [SMALL_STATE(2089)] = 63902, + [SMALL_STATE(2090)] = 63916, + [SMALL_STATE(2091)] = 63930, + [SMALL_STATE(2092)] = 63944, + [SMALL_STATE(2093)] = 63958, + [SMALL_STATE(2094)] = 63972, + [SMALL_STATE(2095)] = 63986, + [SMALL_STATE(2096)] = 63996, + [SMALL_STATE(2097)] = 64010, + [SMALL_STATE(2098)] = 64024, + [SMALL_STATE(2099)] = 64038, + [SMALL_STATE(2100)] = 64048, + [SMALL_STATE(2101)] = 64062, + [SMALL_STATE(2102)] = 64076, + [SMALL_STATE(2103)] = 64090, + [SMALL_STATE(2104)] = 64100, + [SMALL_STATE(2105)] = 64114, + [SMALL_STATE(2106)] = 64128, + [SMALL_STATE(2107)] = 64142, + [SMALL_STATE(2108)] = 64152, + [SMALL_STATE(2109)] = 64166, + [SMALL_STATE(2110)] = 64180, + [SMALL_STATE(2111)] = 64194, + [SMALL_STATE(2112)] = 64208, + [SMALL_STATE(2113)] = 64222, + [SMALL_STATE(2114)] = 64236, + [SMALL_STATE(2115)] = 64250, + [SMALL_STATE(2116)] = 64264, + [SMALL_STATE(2117)] = 64276, + [SMALL_STATE(2118)] = 64290, + [SMALL_STATE(2119)] = 64304, + [SMALL_STATE(2120)] = 64318, + [SMALL_STATE(2121)] = 64332, + [SMALL_STATE(2122)] = 64344, + [SMALL_STATE(2123)] = 64358, + [SMALL_STATE(2124)] = 64372, + [SMALL_STATE(2125)] = 64386, + [SMALL_STATE(2126)] = 64397, + [SMALL_STATE(2127)] = 64408, + [SMALL_STATE(2128)] = 64419, + [SMALL_STATE(2129)] = 64430, + [SMALL_STATE(2130)] = 64441, + [SMALL_STATE(2131)] = 64450, + [SMALL_STATE(2132)] = 64461, + [SMALL_STATE(2133)] = 64470, + [SMALL_STATE(2134)] = 64481, + [SMALL_STATE(2135)] = 64492, + [SMALL_STATE(2136)] = 64503, + [SMALL_STATE(2137)] = 64514, + [SMALL_STATE(2138)] = 64525, + [SMALL_STATE(2139)] = 64536, + [SMALL_STATE(2140)] = 64547, + [SMALL_STATE(2141)] = 64558, + [SMALL_STATE(2142)] = 64569, + [SMALL_STATE(2143)] = 64580, + [SMALL_STATE(2144)] = 64591, + [SMALL_STATE(2145)] = 64602, + [SMALL_STATE(2146)] = 64613, + [SMALL_STATE(2147)] = 64624, + [SMALL_STATE(2148)] = 64635, + [SMALL_STATE(2149)] = 64646, + [SMALL_STATE(2150)] = 64657, + [SMALL_STATE(2151)] = 64668, + [SMALL_STATE(2152)] = 64679, + [SMALL_STATE(2153)] = 64690, + [SMALL_STATE(2154)] = 64701, + [SMALL_STATE(2155)] = 64712, + [SMALL_STATE(2156)] = 64723, + [SMALL_STATE(2157)] = 64734, + [SMALL_STATE(2158)] = 64745, + [SMALL_STATE(2159)] = 64756, + [SMALL_STATE(2160)] = 64765, + [SMALL_STATE(2161)] = 64776, + [SMALL_STATE(2162)] = 64787, + [SMALL_STATE(2163)] = 64798, + [SMALL_STATE(2164)] = 64809, + [SMALL_STATE(2165)] = 64820, + [SMALL_STATE(2166)] = 64831, + [SMALL_STATE(2167)] = 64842, + [SMALL_STATE(2168)] = 64853, + [SMALL_STATE(2169)] = 64864, + [SMALL_STATE(2170)] = 64873, + [SMALL_STATE(2171)] = 64884, + [SMALL_STATE(2172)] = 64895, + [SMALL_STATE(2173)] = 64906, + [SMALL_STATE(2174)] = 64917, + [SMALL_STATE(2175)] = 64928, + [SMALL_STATE(2176)] = 64939, + [SMALL_STATE(2177)] = 64950, + [SMALL_STATE(2178)] = 64961, + [SMALL_STATE(2179)] = 64972, + [SMALL_STATE(2180)] = 64983, + [SMALL_STATE(2181)] = 64994, + [SMALL_STATE(2182)] = 65005, + [SMALL_STATE(2183)] = 65016, + [SMALL_STATE(2184)] = 65027, + [SMALL_STATE(2185)] = 65036, + [SMALL_STATE(2186)] = 65045, + [SMALL_STATE(2187)] = 65056, + [SMALL_STATE(2188)] = 65067, + [SMALL_STATE(2189)] = 65078, + [SMALL_STATE(2190)] = 65089, + [SMALL_STATE(2191)] = 65100, + [SMALL_STATE(2192)] = 65111, + [SMALL_STATE(2193)] = 65122, + [SMALL_STATE(2194)] = 65133, + [SMALL_STATE(2195)] = 65144, + [SMALL_STATE(2196)] = 65155, + [SMALL_STATE(2197)] = 65164, + [SMALL_STATE(2198)] = 65173, + [SMALL_STATE(2199)] = 65182, + [SMALL_STATE(2200)] = 65193, + [SMALL_STATE(2201)] = 65204, + [SMALL_STATE(2202)] = 65215, + [SMALL_STATE(2203)] = 65226, + [SMALL_STATE(2204)] = 65237, + [SMALL_STATE(2205)] = 65248, + [SMALL_STATE(2206)] = 65259, + [SMALL_STATE(2207)] = 65270, + [SMALL_STATE(2208)] = 65281, + [SMALL_STATE(2209)] = 65292, + [SMALL_STATE(2210)] = 65303, + [SMALL_STATE(2211)] = 65314, + [SMALL_STATE(2212)] = 65325, + [SMALL_STATE(2213)] = 65336, + [SMALL_STATE(2214)] = 65347, + [SMALL_STATE(2215)] = 65358, + [SMALL_STATE(2216)] = 65367, + [SMALL_STATE(2217)] = 65378, + [SMALL_STATE(2218)] = 65389, + [SMALL_STATE(2219)] = 65400, + [SMALL_STATE(2220)] = 65409, + [SMALL_STATE(2221)] = 65420, + [SMALL_STATE(2222)] = 65431, + [SMALL_STATE(2223)] = 65442, + [SMALL_STATE(2224)] = 65453, + [SMALL_STATE(2225)] = 65464, + [SMALL_STATE(2226)] = 65475, + [SMALL_STATE(2227)] = 65486, + [SMALL_STATE(2228)] = 65495, + [SMALL_STATE(2229)] = 65506, + [SMALL_STATE(2230)] = 65517, + [SMALL_STATE(2231)] = 65528, + [SMALL_STATE(2232)] = 65539, + [SMALL_STATE(2233)] = 65550, + [SMALL_STATE(2234)] = 65559, + [SMALL_STATE(2235)] = 65570, + [SMALL_STATE(2236)] = 65581, + [SMALL_STATE(2237)] = 65592, + [SMALL_STATE(2238)] = 65603, + [SMALL_STATE(2239)] = 65614, + [SMALL_STATE(2240)] = 65625, + [SMALL_STATE(2241)] = 65636, + [SMALL_STATE(2242)] = 65647, + [SMALL_STATE(2243)] = 65658, + [SMALL_STATE(2244)] = 65669, + [SMALL_STATE(2245)] = 65680, + [SMALL_STATE(2246)] = 65691, + [SMALL_STATE(2247)] = 65700, + [SMALL_STATE(2248)] = 65711, + [SMALL_STATE(2249)] = 65722, + [SMALL_STATE(2250)] = 65733, + [SMALL_STATE(2251)] = 65742, + [SMALL_STATE(2252)] = 65753, + [SMALL_STATE(2253)] = 65764, + [SMALL_STATE(2254)] = 65775, + [SMALL_STATE(2255)] = 65786, + [SMALL_STATE(2256)] = 65797, + [SMALL_STATE(2257)] = 65808, + [SMALL_STATE(2258)] = 65819, + [SMALL_STATE(2259)] = 65828, + [SMALL_STATE(2260)] = 65839, + [SMALL_STATE(2261)] = 65850, + [SMALL_STATE(2262)] = 65861, + [SMALL_STATE(2263)] = 65872, + [SMALL_STATE(2264)] = 65883, + [SMALL_STATE(2265)] = 65894, + [SMALL_STATE(2266)] = 65905, + [SMALL_STATE(2267)] = 65914, + [SMALL_STATE(2268)] = 65925, + [SMALL_STATE(2269)] = 65936, + [SMALL_STATE(2270)] = 65947, + [SMALL_STATE(2271)] = 65958, + [SMALL_STATE(2272)] = 65969, + [SMALL_STATE(2273)] = 65980, + [SMALL_STATE(2274)] = 65991, + [SMALL_STATE(2275)] = 66002, + [SMALL_STATE(2276)] = 66013, + [SMALL_STATE(2277)] = 66022, + [SMALL_STATE(2278)] = 66033, + [SMALL_STATE(2279)] = 66044, + [SMALL_STATE(2280)] = 66055, + [SMALL_STATE(2281)] = 66066, + [SMALL_STATE(2282)] = 66077, + [SMALL_STATE(2283)] = 66088, + [SMALL_STATE(2284)] = 66099, + [SMALL_STATE(2285)] = 66110, + [SMALL_STATE(2286)] = 66121, + [SMALL_STATE(2287)] = 66130, + [SMALL_STATE(2288)] = 66141, + [SMALL_STATE(2289)] = 66152, + [SMALL_STATE(2290)] = 66163, + [SMALL_STATE(2291)] = 66174, + [SMALL_STATE(2292)] = 66185, + [SMALL_STATE(2293)] = 66194, + [SMALL_STATE(2294)] = 66203, + [SMALL_STATE(2295)] = 66214, + [SMALL_STATE(2296)] = 66225, + [SMALL_STATE(2297)] = 66234, + [SMALL_STATE(2298)] = 66245, + [SMALL_STATE(2299)] = 66254, + [SMALL_STATE(2300)] = 66263, + [SMALL_STATE(2301)] = 66274, + [SMALL_STATE(2302)] = 66285, + [SMALL_STATE(2303)] = 66296, + [SMALL_STATE(2304)] = 66305, + [SMALL_STATE(2305)] = 66316, + [SMALL_STATE(2306)] = 66327, + [SMALL_STATE(2307)] = 66338, + [SMALL_STATE(2308)] = 66347, + [SMALL_STATE(2309)] = 66356, + [SMALL_STATE(2310)] = 66367, + [SMALL_STATE(2311)] = 66376, + [SMALL_STATE(2312)] = 66384, + [SMALL_STATE(2313)] = 66392, + [SMALL_STATE(2314)] = 66400, + [SMALL_STATE(2315)] = 66408, + [SMALL_STATE(2316)] = 66416, + [SMALL_STATE(2317)] = 66424, + [SMALL_STATE(2318)] = 66432, + [SMALL_STATE(2319)] = 66440, + [SMALL_STATE(2320)] = 66448, + [SMALL_STATE(2321)] = 66456, + [SMALL_STATE(2322)] = 66464, + [SMALL_STATE(2323)] = 66472, + [SMALL_STATE(2324)] = 66480, + [SMALL_STATE(2325)] = 66488, + [SMALL_STATE(2326)] = 66496, + [SMALL_STATE(2327)] = 66504, + [SMALL_STATE(2328)] = 66512, + [SMALL_STATE(2329)] = 66520, + [SMALL_STATE(2330)] = 66528, + [SMALL_STATE(2331)] = 66536, + [SMALL_STATE(2332)] = 66544, + [SMALL_STATE(2333)] = 66552, + [SMALL_STATE(2334)] = 66560, + [SMALL_STATE(2335)] = 66568, + [SMALL_STATE(2336)] = 66576, + [SMALL_STATE(2337)] = 66584, + [SMALL_STATE(2338)] = 66592, + [SMALL_STATE(2339)] = 66600, + [SMALL_STATE(2340)] = 66608, + [SMALL_STATE(2341)] = 66616, + [SMALL_STATE(2342)] = 66624, + [SMALL_STATE(2343)] = 66632, + [SMALL_STATE(2344)] = 66640, + [SMALL_STATE(2345)] = 66648, + [SMALL_STATE(2346)] = 66656, + [SMALL_STATE(2347)] = 66664, + [SMALL_STATE(2348)] = 66672, + [SMALL_STATE(2349)] = 66680, + [SMALL_STATE(2350)] = 66688, + [SMALL_STATE(2351)] = 66696, + [SMALL_STATE(2352)] = 66704, + [SMALL_STATE(2353)] = 66712, + [SMALL_STATE(2354)] = 66720, + [SMALL_STATE(2355)] = 66728, + [SMALL_STATE(2356)] = 66736, + [SMALL_STATE(2357)] = 66744, + [SMALL_STATE(2358)] = 66752, + [SMALL_STATE(2359)] = 66760, + [SMALL_STATE(2360)] = 66768, + [SMALL_STATE(2361)] = 66776, + [SMALL_STATE(2362)] = 66784, + [SMALL_STATE(2363)] = 66792, + [SMALL_STATE(2364)] = 66800, + [SMALL_STATE(2365)] = 66808, + [SMALL_STATE(2366)] = 66816, + [SMALL_STATE(2367)] = 66824, + [SMALL_STATE(2368)] = 66832, + [SMALL_STATE(2369)] = 66840, + [SMALL_STATE(2370)] = 66848, + [SMALL_STATE(2371)] = 66856, + [SMALL_STATE(2372)] = 66864, + [SMALL_STATE(2373)] = 66872, + [SMALL_STATE(2374)] = 66880, + [SMALL_STATE(2375)] = 66888, + [SMALL_STATE(2376)] = 66896, + [SMALL_STATE(2377)] = 66904, + [SMALL_STATE(2378)] = 66912, + [SMALL_STATE(2379)] = 66920, + [SMALL_STATE(2380)] = 66928, + [SMALL_STATE(2381)] = 66936, + [SMALL_STATE(2382)] = 66944, + [SMALL_STATE(2383)] = 66952, + [SMALL_STATE(2384)] = 66960, + [SMALL_STATE(2385)] = 66968, + [SMALL_STATE(2386)] = 66976, + [SMALL_STATE(2387)] = 66984, + [SMALL_STATE(2388)] = 66992, + [SMALL_STATE(2389)] = 67000, + [SMALL_STATE(2390)] = 67008, + [SMALL_STATE(2391)] = 67016, + [SMALL_STATE(2392)] = 67024, + [SMALL_STATE(2393)] = 67032, + [SMALL_STATE(2394)] = 67040, + [SMALL_STATE(2395)] = 67048, + [SMALL_STATE(2396)] = 67056, + [SMALL_STATE(2397)] = 67064, + [SMALL_STATE(2398)] = 67072, + [SMALL_STATE(2399)] = 67080, + [SMALL_STATE(2400)] = 67088, + [SMALL_STATE(2401)] = 67096, + [SMALL_STATE(2402)] = 67104, + [SMALL_STATE(2403)] = 67112, + [SMALL_STATE(2404)] = 67120, + [SMALL_STATE(2405)] = 67128, + [SMALL_STATE(2406)] = 67136, + [SMALL_STATE(2407)] = 67144, + [SMALL_STATE(2408)] = 67152, + [SMALL_STATE(2409)] = 67160, + [SMALL_STATE(2410)] = 67168, + [SMALL_STATE(2411)] = 67176, + [SMALL_STATE(2412)] = 67184, + [SMALL_STATE(2413)] = 67192, + [SMALL_STATE(2414)] = 67200, + [SMALL_STATE(2415)] = 67208, + [SMALL_STATE(2416)] = 67216, + [SMALL_STATE(2417)] = 67224, + [SMALL_STATE(2418)] = 67232, + [SMALL_STATE(2419)] = 67240, + [SMALL_STATE(2420)] = 67248, + [SMALL_STATE(2421)] = 67256, + [SMALL_STATE(2422)] = 67264, + [SMALL_STATE(2423)] = 67272, + [SMALL_STATE(2424)] = 67280, + [SMALL_STATE(2425)] = 67288, + [SMALL_STATE(2426)] = 67296, + [SMALL_STATE(2427)] = 67304, + [SMALL_STATE(2428)] = 67312, + [SMALL_STATE(2429)] = 67320, + [SMALL_STATE(2430)] = 67328, + [SMALL_STATE(2431)] = 67336, + [SMALL_STATE(2432)] = 67344, + [SMALL_STATE(2433)] = 67352, + [SMALL_STATE(2434)] = 67360, + [SMALL_STATE(2435)] = 67368, + [SMALL_STATE(2436)] = 67376, + [SMALL_STATE(2437)] = 67384, + [SMALL_STATE(2438)] = 67392, + [SMALL_STATE(2439)] = 67400, + [SMALL_STATE(2440)] = 67408, + [SMALL_STATE(2441)] = 67416, + [SMALL_STATE(2442)] = 67424, + [SMALL_STATE(2443)] = 67432, + [SMALL_STATE(2444)] = 67440, + [SMALL_STATE(2445)] = 67448, + [SMALL_STATE(2446)] = 67456, + [SMALL_STATE(2447)] = 67464, + [SMALL_STATE(2448)] = 67472, + [SMALL_STATE(2449)] = 67480, + [SMALL_STATE(2450)] = 67488, + [SMALL_STATE(2451)] = 67496, + [SMALL_STATE(2452)] = 67504, + [SMALL_STATE(2453)] = 67512, + [SMALL_STATE(2454)] = 67520, + [SMALL_STATE(2455)] = 67528, + [SMALL_STATE(2456)] = 67536, + [SMALL_STATE(2457)] = 67544, + [SMALL_STATE(2458)] = 67552, + [SMALL_STATE(2459)] = 67560, + [SMALL_STATE(2460)] = 67568, + [SMALL_STATE(2461)] = 67576, + [SMALL_STATE(2462)] = 67584, + [SMALL_STATE(2463)] = 67592, + [SMALL_STATE(2464)] = 67600, + [SMALL_STATE(2465)] = 67608, + [SMALL_STATE(2466)] = 67616, + [SMALL_STATE(2467)] = 67624, + [SMALL_STATE(2468)] = 67632, + [SMALL_STATE(2469)] = 67640, + [SMALL_STATE(2470)] = 67648, + [SMALL_STATE(2471)] = 67656, + [SMALL_STATE(2472)] = 67664, + [SMALL_STATE(2473)] = 67672, + [SMALL_STATE(2474)] = 67680, + [SMALL_STATE(2475)] = 67688, + [SMALL_STATE(2476)] = 67696, + [SMALL_STATE(2477)] = 67704, + [SMALL_STATE(2478)] = 67712, + [SMALL_STATE(2479)] = 67720, + [SMALL_STATE(2480)] = 67728, + [SMALL_STATE(2481)] = 67736, + [SMALL_STATE(2482)] = 67744, + [SMALL_STATE(2483)] = 67752, + [SMALL_STATE(2484)] = 67760, + [SMALL_STATE(2485)] = 67768, + [SMALL_STATE(2486)] = 67776, + [SMALL_STATE(2487)] = 67784, + [SMALL_STATE(2488)] = 67792, + [SMALL_STATE(2489)] = 67800, + [SMALL_STATE(2490)] = 67808, + [SMALL_STATE(2491)] = 67816, + [SMALL_STATE(2492)] = 67824, + [SMALL_STATE(2493)] = 67832, + [SMALL_STATE(2494)] = 67840, + [SMALL_STATE(2495)] = 67848, + [SMALL_STATE(2496)] = 67856, + [SMALL_STATE(2497)] = 67864, + [SMALL_STATE(2498)] = 67872, + [SMALL_STATE(2499)] = 67880, + [SMALL_STATE(2500)] = 67888, + [SMALL_STATE(2501)] = 67896, + [SMALL_STATE(2502)] = 67904, + [SMALL_STATE(2503)] = 67912, + [SMALL_STATE(2504)] = 67920, + [SMALL_STATE(2505)] = 67928, + [SMALL_STATE(2506)] = 67936, + [SMALL_STATE(2507)] = 67944, + [SMALL_STATE(2508)] = 67952, + [SMALL_STATE(2509)] = 67960, + [SMALL_STATE(2510)] = 67968, + [SMALL_STATE(2511)] = 67976, + [SMALL_STATE(2512)] = 67984, + [SMALL_STATE(2513)] = 67992, + [SMALL_STATE(2514)] = 68000, + [SMALL_STATE(2515)] = 68008, + [SMALL_STATE(2516)] = 68016, + [SMALL_STATE(2517)] = 68024, + [SMALL_STATE(2518)] = 68032, + [SMALL_STATE(2519)] = 68040, + [SMALL_STATE(2520)] = 68048, + [SMALL_STATE(2521)] = 68056, + [SMALL_STATE(2522)] = 68064, + [SMALL_STATE(2523)] = 68072, + [SMALL_STATE(2524)] = 68080, + [SMALL_STATE(2525)] = 68088, + [SMALL_STATE(2526)] = 68096, + [SMALL_STATE(2527)] = 68104, + [SMALL_STATE(2528)] = 68112, + [SMALL_STATE(2529)] = 68120, + [SMALL_STATE(2530)] = 68128, + [SMALL_STATE(2531)] = 68136, + [SMALL_STATE(2532)] = 68144, + [SMALL_STATE(2533)] = 68152, + [SMALL_STATE(2534)] = 68160, + [SMALL_STATE(2535)] = 68168, + [SMALL_STATE(2536)] = 68176, + [SMALL_STATE(2537)] = 68184, + [SMALL_STATE(2538)] = 68192, + [SMALL_STATE(2539)] = 68200, + [SMALL_STATE(2540)] = 68208, + [SMALL_STATE(2541)] = 68216, + [SMALL_STATE(2542)] = 68224, + [SMALL_STATE(2543)] = 68232, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -126826,2666 +127113,2674 @@ 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(1143), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1143), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(254), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1860), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(34), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(30), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(105), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1024), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2538), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1491), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1500), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(745), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2535), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2125), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(579), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(82), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(618), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(600), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2134), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(128), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2523), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1332), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1878), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2465), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2463), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2462), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1150), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1476), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1295), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(52), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2213), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1450), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(609), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2448), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(78), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(556), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2221), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1106), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1841), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1073), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1076), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2441), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1339), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1076), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1130), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(258), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1911), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(38), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), + [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1028), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2543), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1491), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1526), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(752), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2540), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2130), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(584), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(623), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2131), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(129), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2536), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1334), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1866), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2526), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2523), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2477), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1154), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1480), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1298), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2204), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1434), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(614), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2466), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(53), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(551), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2217), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1764), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1039), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1042), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2461), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1338), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1042), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(740), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(34), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(7), - [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(30), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(105), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1024), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2538), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1901), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2298), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(760), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1001), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(594), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(87), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2303), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(118), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2254), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(85), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(609), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2448), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(78), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(556), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2221), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1106), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1841), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1073), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1076), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2441), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1076), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [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_break_expression, 1), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(756), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(38), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(4), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(84), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1028), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2543), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1898), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2235), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(763), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(790), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(602), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(54), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2282), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(180), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2237), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(57), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(614), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2466), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(53), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(551), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2217), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1070), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1764), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1039), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1042), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2461), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1042), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(244), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(491), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(490), - [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(489), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2435), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(548), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1807), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(549), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(539), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2288), - [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(966), - [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1876), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2379), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1563), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1585), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1529), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2344), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2184), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(616), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(589), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2346), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1332), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1865), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2347), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2348), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2349), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1925), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1527), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1296), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2183), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1443), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(609), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2399), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1334), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(251), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(482), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(492), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(493), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2439), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1794), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(554), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(542), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2164), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(802), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1884), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2416), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1549), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1592), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1555), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2324), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2196), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(621), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(595), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2329), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1334), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1867), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2330), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2331), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2332), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1906), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1550), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1302), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2195), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1473), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(614), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2349), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2339), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1339), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2339), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(509), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(515), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(516), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2330), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(548), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1807), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(549), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1421), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(553), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(551), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1359), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2280), - [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1768), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2411), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(572), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(609), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2374), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1467), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(604), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(603), - [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1427), - [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2287), - [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1398), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1782), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1353), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1943), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1943), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [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_function_signature_item, 7, .production_id = 215), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [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 = false}}, SHIFT(1408), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [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_trait_item, 5, .production_id = 121), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [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_impl_item, 5, .production_id = 106), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [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_associated_type, 5, .production_id = 117), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(527), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(525), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(524), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2524), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(556), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1794), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(554), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1408), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(549), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(548), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1366), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2289), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1781), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2442), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(586), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(614), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2430), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1451), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(592), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(588), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1441), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2246), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1375), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1845), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1367), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1910), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1910), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2411), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2442), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2482), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [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(704), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2485), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(569), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1554), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1552), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(488), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(478), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(477), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1552), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1554), + [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(495), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(575), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), - [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1362), - [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(183), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(576), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1358), + [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(191), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1809), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1156), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [4409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1553), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1299), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(40), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1556), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(189), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1668), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(241), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2230), - [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1555), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), - [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(536), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1550), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(709), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(153), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), - [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1218), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(566), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5355] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1149), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(593), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1852), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1179), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(570), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1538), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(544), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(91), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(680), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2228), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(245), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1558), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1653), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1531), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1300), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [5026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1560), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5401] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), }; #ifdef __cplusplus